DevKX commited on
Commit
194e491
·
verified ·
1 Parent(s): b40cd8c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -40,7 +40,7 @@ def main():
40
 
41
  # 1. Fetch data (Fetch 60 days to allow for the 26-day MACD EMA dropping NaNs)
42
  market_df = fetcher.fetch_market_data(days=60)
43
- news_df = fetcher.fetch_market_news(days=45)
44
 
45
  st.warning(f"Earliest news fetched: {news_df['Date'].min()} | Total Headlines: {len(news_df)}")
46
 
 
40
 
41
  # 1. Fetch data (Fetch 60 days to allow for the 26-day MACD EMA dropping NaNs)
42
  market_df = fetcher.fetch_market_data(days=60)
43
+ news_df = fetcher.fetch_market_news(days=7)
44
 
45
  st.warning(f"Earliest news fetched: {news_df['Date'].min()} | Total Headlines: {len(news_df)}")
46