Open virajkadam opened 8 months ago
import pandas as pd from datetime import date, timedelta from jugaad_data.nse import stock_df
ticker_symbol = "RELIANCE" end_date = date.today() start_date = end_date - timedelta(days=1)
df = stock_df(symbol=ticker_symbol, from_date=start_date, to_date=end_date, series="EQ") print(df.head())
How do we get 1min or 15min or 30min or more detailed historical stock equity data? like yfinance .
https://github.com/ranaroussi/yfinance?tab=readme-ov-file#the-ticker-module
No response
+1
Describe the required feature
import pandas as pd from datetime import date, timedelta from jugaad_data.nse import stock_df
ticker_symbol = "RELIANCE" end_date = date.today() start_date = end_date - timedelta(days=1)
df = stock_df(symbol=ticker_symbol, from_date=start_date, to_date=end_date, series="EQ") print(df.head())
How do we get 1min or 15min or 30min or more detailed historical stock equity data? like yfinance .
URL where you observed this data
https://github.com/ranaroussi/yfinance?tab=readme-ov-file#the-ticker-module
API endpoint involved
No response