-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.py
More file actions
51 lines (45 loc) · 2.21 KB
/
Copy pathconfig.example.py
File metadata and controls
51 lines (45 loc) · 2.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
"""
POLYINTEL Configuration
========================
Copy this file to config.py and fill in your values.
"""
# ─── Telegram ────────────────────────────────────────────────────────────
TELEGRAM_BOT_TOKEN = "YOUR_BOT_TOKEN"
TELEGRAM_CHAT_ID = "YOUR_CHAT_ID"
# ─── Alert Settings ──────────────────────────────────────────────────────
POLYMARKET_PRICE_CHANGE_ALERT = 5.0
OPTIONS_PCR_HIGH_ALERT = 1.5
OPTIONS_PCR_LOW_ALERT = 0.5
OPTIONS_UNUSUAL_VOLUME_MULTIPLIER = 3.0
NEWS_ALERT_KEYWORDS = [
"hormuz", "strait", "iran", "nuclear", "oil embargo",
"opec emergency", "strategic reserve", "force majeure",
"rate cut", "rate hike", "emergency meeting", "fed",
"recession", "default", "bank failure", "crash",
"ceasefire", "peace deal", "escalation", "invasion"
]
# ─── Scan Intervals (Sekunden) ──────────────────────────────────────────
POLYMARKET_SCAN_INTERVAL = 120
OPTIONS_SCAN_INTERVAL = 300
NEWS_SCAN_INTERVAL = 180
# ─── Data Sources ────────────────────────────────────────────────────────
TRACKED_TICKERS = {
"USO": "US Oil Fund (WTI Proxy)",
"XLE": "Energy Select Sector",
"OIH": "Oil Services",
"SPY": "S&P 500",
"QQQ": "Nasdaq 100",
"IWM": "Russell 2000",
"VIX": "CBOE Volatility Index",
"TLT": "20+ Year Treasury",
"GLD": "Gold",
"EWJ": "Japan (Energie-Import)",
"EWG": "Germany (Energie-Import)",
"INDA": "India (Energie-Import)",
}
NEWS_FEEDS = {
"Reuters Energy": "https://news.google.com/rss/search?q=oil+energy+crude&hl=en",
"Reuters Geopolitik": "https://news.google.com/rss/search?q=iran+hormuz+middle+east+war&hl=en",
"Bloomberg Markets": "https://news.google.com/rss/search?q=federal+reserve+inflation+recession&hl=en",
"Commodities": "https://news.google.com/rss/search?q=commodities+gold+oil+opec&hl=en",
}