@admin I am also facing same issue randomly. It was working until yesterday
nitish.bane
@nitish.bane
Best posts made by nitish.bane
-
RE: Historic API not working
-
Invalid user id or password
Hi Team,
When trying to login I am getting error Invalid user id or password error code: AB1007. Please help it used to work earlier. My client id is N195928.
Latest posts made by nitish.bane
-
RE: Max Days in historical data
@Moderator_3 Please find the curl below
curl --location 'https://apiconnect.angelone.in/rest/secure/angelbroking/historical/v1/getCandleData'
--header 'X-ClientLocalIP: 192.168.200.129'
--header 'X-ClientPublicIP;'
--header 'X-MACAddress;'
--header 'Content-Type: application/json'
--header 'Authorization: Bearer Token'
--header 'X-PrivateKey: 3J9h3Ukp'
--header 'X-SourceID: WEB'
--header 'X-UserType: USER'
--header 'Cookie: TS0179ac75=0167ca9f9b63a06781743099d6697bce61dc9aa8211897f10c1005ebdd27b3c45b539edb25cc338e3493a9a7f806186d58b17e335d'
--data '{
"exchange": "NSE",
"symboltoken": "99926000",
"interval": "FIVE_MINUTE",
"fromdate": "2024-07-29 09:15",
"todate": "2024-09-20 15:30"
}
'
I am querying from 29 july 2024 to 20 sept 2024 for 5 min interval data. But I am getting response date starting from 14th Aug. Please find the snap below
-
Max Days in historical data
Hi Smart Api Team,
Are there any changes introduced in the max days that can be queried with Historical api?
I am not able to fetch 100 days data for 5 Min interval and 30 Days data for 1 Min interval. It used to work earlier. Can you please check.Thanks.
-
RE: Create basket order
@Moderator_1 How would margin calculation/requirement work in that case?
Does it takes into account of the live orders? -
Create basket order
Hi @Moderator_1 @Moderator_2
How to create basket orders with smart api? -
RE: Issue with tick data when large number of tokens are subscribed
@Moderator_1 @Moderator_2 @admin123 Any update on the issue? I am not able to launch my strategy because of this
-
RE: Option Greeks
@Mnagesh Do you know how can we calculate option greeks at our side? I need to for past expiry for back testing purpose
-
RE: Announcing Option Greeks API for SmartAPI Users
@Moderator_1 @Moderator_2 Can you share the logic or code you are using to calculate the option greek. I need options greeks for past expiries but it is not provided by api.
-
RE: Issue with tick data when large number of tokens are subscribed
@DevPatel You need to use historical data or use getCandleData method from sdk.
getCandleData({
"exchange": exchange,
"symboltoken": symboltoken,
"interval": interval,
"fromdate": fromdate,
"todate": todate
}) -
RE: Issue with tick data when large number of tokens are subscribed
@Moderator_2 I am just using the tick data to create candles. It is working fine for index tokens i.e for Nifty and Bank Nifty candles are matching with angel candles. However when I subscribe to large number of tokens there is delay observed in getting the ticks. I am getting one tick as part of one websocket response. I think websocket should contain data as an array of tokens subscribed.