Uanble to fetch Eq ONE_DAY Candle Data
-
obj.getCandleData( {"exchange": "NSE", "token": "2885", "interval": "ONE_DAY", "fromdate": '2021-09-03 09:00', "todate": '2021-09-22 00:00'} )
Its response is success but with no data
Response:
{"exchange": "NSE", "token": "2885", "interval": "ONE_DAY", "fromdate": '2021-09-03 09:00', "todate": '2021-09-22 00:00'}So what am i missing?
-
HI @ZoroX Change the exchange to "NSE".
-
@admin Can you give an example for cash market. Thanks
I want to get the data for reliance in cash market -
Hi @ZoroX Try below piece of code:
historicParam={
"exchange": "NFO",
"symboltoken": "48740",
"interval": "ONE_DAY",
"fromdate": '2021-09-13 09:41',
"todate": '2021-08- 10:21'
}
df = obj.getCandleData(historicParam)
print (df)
1 out of 4