How can I get which stocks are under surveillance measures? so that I can add some logic in API.
Posts made by Vishal.naykawala
-
RE: Blocking of equity scrips falling under surveillance measures from placeorder API from Friday 24th Jan, after market hours
-
RE: The remote server returned an error: (403) Forbidden
Today not I am getting the same issue, even not able to connect. after 10 - 15 try getting a connection. but not able to get response from rest API.
-
The remote server returned an error: (403) Forbidden.
Today, I am facing an error in getting a connection. is there any issue on the Angel One server?
-
RE: AB1050 Invalid TOTP while connect.GenerateSession
@Vishal-naykawala How can I give you?
share your mail id.
-
RE: AB1050 Invalid TOTP while connect.GenerateSession
@PVRavindran I can provide you with the updated DLL. That change I made in DLL.
-
API to get Holiday
Is there any API available that tell us today market holiday or not?
-
RE: From when can get updated C#/.net SDK
I think it is better to choose another API provider. There is no support for c#/.net SDK from the Angel broking support team.
Thanks
-
From when can get updated C#/.net SDK
Hi,
below source is 2 years old, any suggest me from where can get lates SDK,
https://github.com/angel-one/smartapi-dotnet
Thanks and Regards,
Vishal -
Live Market Data API - /quote Endpoint: Enhanced with 50-Symbol Bulk Fetch
Hi,
Any c#/.net developer who has implemented the below API needs help implementing the same.
Endpoint: https://apiconnect.angelbroking.com/rest/secure/angelbroking/market/v1/quote/
-
In **PlaceOrder** getting error - 404
In PlaceOrder getting below error and not able to put the order,
Error converting value {null} to type 'System.Int64'. Path 'data.orderid', line 1, position 115.
It was working properly from beginning. this kind of error starred from today morning and I had not made any changes in that.
Let me know if any changes have to do...
-
How to get multiple symbols price in single call
Currently by using GetLTPData can get a single symbol price at a time, is there any alternative to get multiple symbol prices in a single API call?
-
The token is invalid
below code not working from today [3-1-2023], It was working fine. any change in that?
SmartApi connect = new SmartApi(api_key, JWTToken, RefreshToken);
//SmartApi connect = new SmartApi(api_key);
OutputBaseClass obj = new OutputBaseClass();
GetTotp();
//Login by client code and password
obj = connect.GenerateSession(Client_code, Password, Totp);
obj = connect.GenerateToken();AngelToken agr = obj.TokenResponse; agr = obj.TokenResponse; if (agr == null) { Console.WriteLine("Please check, Connection fail!"); //Console.ReadLine(); Thread.Sleep(1000); continue; }
-
RE: Invalid TOTP for c#
@dstelangre , Thank you, your solution working.
-
RE: Is there any solution to get the result of multiple symbols/scripts in a single call?
@anankagroup Not this,
In Zerodha, there is a provision to make an array list of scripts and pass to it to get the LTP of the script in a single call.
Like, Reliance, HUL, TCS, BAJAJELE can pass as array and single response can get which can be use further. -
Is there any solution to get the result of multiple symbols/scripts in a single call?
Is there any solution to get the result of multiple symbols/scripts in a single call?
i.e. currently I have to make 10 calls if want to get a value of 10 scripts. instead of that, I want to make a single call and get the LTP of all 10 scripts. -
RE: Invalid TOTP for c#
@dstelangre you can put your solution on the below path which will help to others also,
-
RE: Invalid TOTP for c#
@dstelangre said in Invalid TOTP for c#:
public static string GetTotp()
{
var secretKey = OtpNet.Base32Encoding.ToBytes("totp key that appears below QR code ");
var totp = new Totp(secretKey);
var otp = totp.ComputeTotp();
return otp;
}Thank you. It's working.
-
RE: Invalid TOTP for c#
@dstelangre : will you plz help me to resolve the same?