Hello,
Historical data for any instrument can't be fetched for the duration of 2, 3 or 4 hours. But these options are available for UI.
It would be great if you can allow users to fetch the data for 2,3 or 4 hours of duration.
Thanks!
Hello,
Historical data for any instrument can't be fetched for the duration of 2, 3 or 4 hours. But these options are available for UI.
It would be great if you can allow users to fetch the data for 2,3 or 4 hours of duration.
Thanks!
@softice Agreed. I am doing the same thing right now.
@aakashsri013 Could you please post the final resulting JSON that is being sent to post the order?
@Moderator_1 said in Changes in API Rate Limit:
500
Thanks for clarifying the rate limit!
But how the rate limits per second and per minute are related to each other?
For example:
Rate limit for - /rest/secure/angelbroking/historical/v1/getCandleData
So if we consider per second limit rate as a primary rate limit, then max rate limit per minute is 180 per minute.
Hence how to use the rate limit per minute?
Any use case as an example will be useful.
Hey @hardip, getOptionGreeks() function is not defined. You will need to add this function yourself.
For those who need this function to get Option Greeks.
def getOptionGreeks(self, name, expirydate):
optiongreeks = self._postRequest("api.market.optiongreeks", {"name": name,"expirydate": expirydate})
return optiongreeks
"api.allholding": "/rest/secure/angelbroking/portfolio/v1/getAllHolding",
"api.market.optiongreeks": "/rest/secure/angelbroking/marketData/v1/optionGreek",
"api.individual.order.details": "/rest/secure/angelbroking/order/v1/details/",
optionGreeks = smartApi.getOptionGreeks('TCS', '29FEB2024')
print(optionGreeks)
You will get the required response.
Hi,
Thanks for providing the feature of option greeks!
But do you have any dedicated function in python to retrieve these option greeks values?
E.g. any dedicated function like - individual_order_details(self, qParam) will be helpful.
If you already dedicated python function, please let us know.
Thanks!
@softice Agreed. I am doing the same thing right now.
Hello,
Historical data for any instrument can't be fetched for the duration of 2, 3 or 4 hours. But these options are available for UI.
It would be great if you can allow users to fetch the data for 2,3 or 4 hours of duration.
Thanks!
Thanks for the response! I figured out that symboltoken which I was passing on was wrong. And due to which no data was returned.
But as problem was overlooked, it took a lot of time to determine whether the problem was at my end or technical glitch at your end.
Probable modifications which I can think of:
Clarity in the responses will save a lot of time for end users.
api.candle.data call is failing with no data returned. Could you please investigate?