@MNAGESH thanks for your response but I do not have enough knowledge to write my own Candle code. Can you help me here if possible. Thanks
S
sahil313
@sahil313
0
Reputation
2
Posts
1
Profile views
0
Followers
0
Following
Best posts made by sahil313
This user hasn't posted anything yet.
Latest posts made by sahil313
-
RE: Historical APIs not working now
-
RE: Historical APIs not working now
@admin I am running the below code to get the historical data for the currency exchange but it is not returning any data.
import http.client
conn = http.client.HTTPSConnection("apiconnect.angelbroking.com")
historicParam={
"exchange": "CDS",
"symboltoken": "3481",
"interval": "ONE_DAY",
"fromdate": '2021-11-01 09:00',
"todate": '2021-12-31 17:00'
}
df = obj.getCandleData(historicParam)
print (df)