jugaad-py / jugaad-data

Download live and historical data for Indian stock market
https://marketsetup.in/documentation/jugaad-data/
373 stars 150 forks source link

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

Open virajkadam opened 8 months ago

virajkadam commented 8 months ago

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

divyankm commented 4 months ago

+1

BlackXero commented 3 months ago

+1