@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
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)