jugaad-data icon indicating copy to clipboard operation
jugaad-data copied to clipboard

Get 1min, 15min, 30min or more stock equity data.

Open virajkadam opened this issue 3 months ago • 0 comments

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

virajkadam avatar Mar 23 '24 17:03 virajkadam