Fixing project level dependencies is difficult, out of scope of this forum and it is upto developer to resolve. I can give you some pointers to help you in the decision making:
- 3.0.0 is a very old version. Current version is 3.0.7 targeting netst…
I believe this collision is due to a library that is already present in your project. A fresh project works fine to me. Could you check your other dependencies?
I tried a fresh project like this:
$ dotnet new console -name kctest -o kctest
$ cd kct…
@rji_rji The idea is to utilise both historical data and websockets. Fetch historical data according to your logic and store locally(and use it for further calls) and then add the websockets data on top of it.
Check out this thread for rate limit details. To avoid rate limits you should add delays in between calls. Also make sure to handle all kinds of exception for every call.
v3.0.6 onwards our lib targets .Net Standard 2.0 which is supported with .Net Framework 4.6.1. But it seems there is some kind of compatibility issue. Can you try with .Net Framework 4.7.2 or higher for your project? Because Microsoft recommends thi…
@kanvi915 "The operation has timed out" is a client side error. This can happen due to multiple reasons. First of all it can be a network issue. Kite APIs usually respond in milliseconds. If it is timing out, that means the request has been stalled …
handshake with server kite.zerodha.com:443 failed; NSS error code -12190, net_error -107
This means there is a network issue that stops your client from connecting to our servers. Check if there is any firewalls or proxies in your network that is bl…
Missing that field is the actual issue which we are currently working to fix. It shouldn't have happened in the first place. Setting token to 0 is just a workaround and will be reverted back to the original logic once the backend issue is resolved.
…
Hi @prasad_oct12,
The exception has been fixed in version 3.0.6 of library. Could you update library from Nuget and verify if it works?
For now InstrumentToken will be 0 for the GTTs that caused this exception. This will be fixed shortly. Thanks f…
UPDATE: An alpha build is available here. You can either use the DLL file or the nuget package. You can add this to your .Net Core and .Net Framework projects.
1. Yes you can. Use a localhost URL and grab request token while WebView URL matches.
2. Checkout void OnOrderUpdateHandler(Order OrderData); callback of your Kite object.
3 and 4, @sujith can answer more accurately
@ritpatel Looks like the above code had no effect in your situation. Can you post the result printed by this line in the above code:
Console.WriteLine("Login URL: " + loginURL);
@ritpatel It is not clear from your comments what exactly is going wrong. A screenshot of the page after login will be useful.
Also let us know what are the modifications you did to your code. Above code should work fine just by replacing api key a…
To make the app wait until the login is complete I just added Console.ReadKey(); I believe somewhere you might have pressed some key and that made the app close before it gets the redirect.
This is just one example to do it. You might have to chang…
So where are you observing the lag? Is it at SignalR client or at the server? It could be an overhead from SignalR too. In that case you might have to switch to something even lower level like WebSockets, which is used in all our systems including t…
@dbkumar IE was never updated by Microsoft. It is years behind in terms of security and web standards. For an example ES6, released in 2015, is the latest standard of JavaScript used by all browsers. You can see here IE is missing almost everything …
You can provide this link to the developer to replace that outdated component: https://www.codeproject.com/Articles/990346/Using-HTML-as-UI-Elements-in-a-WinForms-Applicatio
No. Change happened in Kite which you use for login. We update them every now and then with industry best practices to avoid external hacking threats and to keep user's accounts safe.
The problem is Microsoft never updates their Internet Explorer c…
There is no change in the KiteConnect. When we do, we will announce in this forum. Since the development is done by a third party, I recommend you to contact them for faster solution. For giving a context you can inform them following:
For login, y…
We cannot understand what is happening from just "Unable to establish connection". Could you please add more info to this?
This is a developer forum. An error message with status code, stack trace of the exception, sample code to reproduce the issu…
The .Net webbrowser plugin uses Internet Explorer under the hood. It is outdated and not recommended anymore. If you want to embed a browser use something like CefSharp or open browser directly with a local http server for handling the redirect URL.
@Nighar This is strange. Seems like something is blocking internet connectivity for that DLL. Do you have any antivirus or firewall system running?
And yes you can add that project and use. DLL is built from that and has the same functionality.
Exiting an order is basically placing a reverse order. If you BUY, place a SELL order with same parameters. For BO/CO it is a special case thats why a function exists.
While placing order you can specify order type as `Constants. ORDER_TYPE_SL` and give trigger price and price.
Margins for order is not available as part of KiteConnect at the moment.
This can be handled with a simple boolean flag "ignore_ticks". Before starting the logic for placing order make it true. And on ticks if this is true don't do anything.
This is more of a programming doubt. It is not under scope of the library or th…
This seems to be a client specific issue. Can you post the debug logs? You can enable them by adding Debug: True to the Kite constructor. What you posted is the exception stack trace which doesn't have enough info to identify the cause.
Also that s…
Yeah. I had started working on migrating library to .Net standard so that it can be used both in .Net Core and Framework projects. But I haven't reached to WebSocket part yet. Got busy with some other work. Meanwhile if you manage to fix this issue …
Sample project is provided to demonstrate the function calls. You are not suppose to run it as it is.
That being said you missed the critical part of that code to keep your program running so that ticker can function.
Console.ReadKey();
Although the calls to WebSocket class are async I'm making them kind of blocking inside the callback with ".Result" call. There will be only one ReceiveAsync running at a time.
Line 128 kicks of this loop. While loop at line 107 fetches the data i…
@skymahi Can you enable Debug: True while building Kite object and post logs for this call here? Make sure you remove your tokens from the logs before posting. We will check.
@y_sravan
this is rediculous...
Yes. I know.
@krtrader @RishiS Like I said in the post:
This will not affect Kite Connect apps.
If you experience any issue, let us know.
If you are comfortable with NodeJS then you can try worker threads. It does the same job in a safer way.
But if you are doing heavy processing NodeJS might become the bottleneck. In that scenario, a language with better parallel processing capabil…
You will receive an order update only for the client ID you specified in the app details page.
Your ngrok URL seems to be dead.
And the cloud functions URL is not used in any of your apps.
Can you clarify how you collect the logs?
Hi @yrb,
This seems to be a bug. Since Nifty Bank is an index instrument it doesn't have any buy/sell info. But Quote structure is trying to parse that. We will fix this in the next update.
As a temporary fix, you can use the GetOHLC function to g…
@amit123 Do you mean you didn't get postback for placing the second orders? Or after the second leg orders completed?
If you have a log of postbacks can you post here?
You should call $kite->setAccessToken($user->access_token); before $kite->getPositions()
You will have to store access token inside a database(recommended) or in a file and use that for subsequent calls.
Hi,
The library returns the values it gets from the WebSocket stream as mentioned here. And change field is applicable for index stocks.
If you need to get change value for other stocks you can calculate as ClosePrice - LTP. And you will have to …
Hi @sauravkedia,
During weekends we perform maintenances tasks (to avoid issues on tomorrows and thereafter ). I think your attempt to login coincided with that time frame. It is usually just a few minutes. Sorry for the inconvenience.
UPDATE:
The null values are now blank arrays. So errors will disappear for now. Actual values will sync over the next few hours.
Thanks for your patience.
Hi @Debasish55_halder, Ticker has a long-standing connection. It is inappropriate to create an instance of ticker in the context of web page load because it will get closed after the page load is finished.
Also, you are creating a ticker object ins…
It seems we missed something while testing your code. We are able to reproduce this now. Our backend team is checking this behavior. We will get back to you with a confirmation.
@DA1077 There are two common instances when this can happen. One is when you send tokens in a different format like String. But that won't happen here because the library accepts only integers. Second is when you send an empty list of tokens. This i…
@sizzmht Can you change the line to ticker = new Ticker(MyAPIKey, MyAccessToken, Debug: true); ?
This will log more details about what is happening in ticker.
@sizzmht If you are building a console app, logs will be printed in the console. If you are building a WinForms application you can see logs in Debug -> Windows -> Output.
To resolve issues faster you should provide us with more information l…
@NaveenR
Exception thrown: 'System.InvalidOperationException' in System.Windows.Forms.dll
This is thrown from the UI. Can you double check the logic you are using? Also to isolate the source of bug maybe you should create a simple app with just t…
Are you building a console application or a GUI application? If it is a GUI application your logs will be in the Debug window or in the Output window. If it is a console application, by logs I meant whatever gets printed in the console. Can you post…
@NaveenR Can you post the debug logs from ticker at that time frame?
Also, if your internet connection can deliver 10-20 KB/s that is enough for hundreds of tokens. The disconnections usually happen due to the proxies or firewalls at your end or at…
Checkout https://github.com/zerodhatech/javakiteconnect/blob/master/kiteconnect/src/com/zerodhatech/models/Tick.java
and
https://github.com/zerodhatech/pykiteconnect/blob/master/kiteconnect/ticker.py#L269
@PRCHAKR The data from a RAW WebSocket connection is in bytes. I don't think adding byte data in the saying that it is the response in the documentation is useless. Instead, we have given the range of each and every field in the binary response and …
@vineet_dhandhania I believe you want to get a trigger exactly when your order gets completed, right?
In my point of view if you simply reject all the UPDATEs and use the COMPLETE postback of the order you placed it is pretty similar to that of IOC…
@bhumi I believe you are new to such things. If I'm right I suggest you learn how these things actually work and familiarize them because jumping directly into implementation will be extremely difficult for a beginner.
If you are comfortable in usi…