We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
The text was updated successfully, but these errors were encountered:
+1
Sorry, something went wrong.
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: