You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
699 B
Python
19 lines
699 B
Python
"""
|
|
Overlay configuration — Yahoo RSS feed URLs and seed watchlist.
|
|
"""
|
|
|
|
YAHOO_RSS_FEEDS = [
|
|
# Per-symbol feeds resolve to feeds.finance.yahoo.com after redirect.
|
|
# The general /rss/headline endpoint redirects to a Yahoo-side broken URL,
|
|
# so it is intentionally omitted here.
|
|
]
|
|
|
|
TOP_50_SYMBOLS = [
|
|
"AAPL", "MSFT", "NVDA", "AMZN", "GOOGL", "META", "TSLA", "BRK.B",
|
|
"JPM", "JNJ", "V", "UNH", "XOM", "PG", "MA", "HD", "CVX", "LLY",
|
|
"ABBV", "BAC", "KO", "PEP", "AVGO", "COST", "WMT", "MRK", "TMO",
|
|
"DIS", "ACN", "ABT", "VZ", "ADBE", "CRM", "NFLX", "CMCSA", "TXN",
|
|
"CSCO", "NKE", "NEE", "AMD", "DHR", "BMY", "QCOM", "T", "LOW",
|
|
"PM", "HON", "ORCL", "RTX", "UPS",
|
|
]
|