Update to .Net client library to beta 2

tonystark
tonystark edited March 2018 in .Net API client
  • Fixed a bug in parsing quote API for indices
  • Fixed a bug in receiving ticker packets that resulted in partial tick data while subscribing to many instruments at once.
  • Added new trigger range API that supports bulk fetch
    TrigerRange triggerRange = kite.GetTriggerRange(
    Exchange: Constants.EXCHANGE_NSE,
    TradingSymbol: "INFY",
    TrasactionType: Constants.TRANSACTION_TYPE_BUY
    );
    Changes to:
    Dictionary <string, TrigerRange> triggerRange = kite.GetTriggerRange(
    InstrumentId: new string[] { "NSE:ASHOKLEY", "NSE:INFY" },
    TrasactionType: Constants.TRANSACTION_TYPE_BUY
    );
  • Changes in TriggerRange structure:
    Beta 1 Beta 2
    _ InstrumentToken
    Start Lower
    End Upper
    Percent Percentage
Github Repo: https://github.com/zerodhatech/dotnetkiteconnect/tree/kite3
Release 3.0.0 Beta 2: https://github.com/zerodhatech/dotnetkiteconnect/releases/tag/3.0.0beta2
DLL File: https://github.com/zerodhatech/dotnetkiteconnect/releases/download/3.0.0beta2/KiteConnect.dll
Sign In or Register to comment.