Update app.py
Browse files
app.py
CHANGED
@@ -78,6 +78,7 @@ st.sidebar.subheader("Select Timeframe:")
|
|
78 |
timeframes = ['1d', '5d', '1mo', '3mo', '6mo', '1y', '2y', '5y', '10y', 'ytd', 'max']
|
79 |
selected_timeframe = st.sidebar.selectbox('Timeframe', timeframes)
|
80 |
|
|
|
81 |
# Step 4: Fetch Data and Calculate Indicators
|
82 |
try:
|
83 |
nifty_data = fetch_data(ticker_symbol, selected_timeframe)
|
|
|
78 |
timeframes = ['1d', '5d', '1mo', '3mo', '6mo', '1y', '2y', '5y', '10y', 'ytd', 'max']
|
79 |
selected_timeframe = st.sidebar.selectbox('Timeframe', timeframes)
|
80 |
|
81 |
+
|
82 |
# Step 4: Fetch Data and Calculate Indicators
|
83 |
try:
|
84 |
nifty_data = fetch_data(ticker_symbol, selected_timeframe)
|