@admin Any update on this
mvinayakam
@mvinayakam
Best posts made by mvinayakam
Latest posts made by mvinayakam
-
RE: 429 - Too Many requests
@admin Yes. I have an explicit wait for 1 second if the number of requests exceed 10.
-
RE: 429 - Too Many requests
@admin Thanks for the quick turnaround.
Here is the response
{ status: 429, message: 'Too Many Requests' }
The client id would be R238504 and R550480.
-
429 - Too Many requests
Hello
I have logic in my code to ensure that not more than 10 orders are placed per second. The code waits for a second before executing the next one.
However I am still facing a "429 - Too many requests" error message.
What could be the issue? -
Rate Limit for Multiple Client Login
Hello
We have different accounts with Angel.
My workflow:
-
Read input file . Each line could be for a different account
-
generate Session for account
-
Place order
-
Repeat
I am facing an issue here that in case of two simultaneous orders for the same account , I breach the rate limit for login.
Are there any pointers to handle this scenario.
I am using the Nodejs SDK. But it could be applicable generally.
-
-
Get list of valid tradingsymbols and symboltokens for Nifty Options and Equities
Hello
Can someone point me where I can find the list of valid trading symbols and symbol tokens for Nifty Options and Equities.
-
RE: Unable to login - Invalid Token AG8001
@admin Thanks, I have got it done now.
-
Unable to login - Invalid Token AG8001
const angelAPIConnect = () => {
- let smart_api = new SmartAPI({
-
api_key: "<API key provided by Smartapi Apps>", // PROVIDE YOUR API KEY HERE
- });
- smart_api
-
.generateSession("<Angel App Client Id>", "Angel App Password")
-
.then((data) => {
-
return smart_api.getProfile();
-
})
-
.then((data) => {
-
console.log("PROFILE::", data);
-
})
-
.catch((ex) => {
-
console.log("EX::", ex);
-
});
I got the error
PROFILE:: {
success: false,
message: 'Invalid Token',
errorCode: 'AG8001',
dat