Recent Activity

  • TristanTuc and sankarjv joined.
    Welcome Aboard!
    October 2016
  • Welcome Aboard!
    October 2016
  • AGA, Sunil, apx and Admin#123 joined.
    Welcome Aboard!
    October 2016
  • muthu.gokul
    Hi,
    I register for kite connect today. Can you please tag my api key : g0y2n12xceiw1wj0 to my zerodha id RG1618.

    Thanks
    Gokul
    October 2016
  • Welcome Aboard!
    October 2016
  • Welcome Aboard!
    October 2016
  • Welcome Aboard!
    October 2016
  • Welcome Aboard!
    October 2016
  • Welcome Aboard!
    October 2016
  • sky6, malay, satish.patel41, Arul, vinayjambhali and 4 others joined.
    Welcome Aboard!
    October 2016
  • Welcome Aboard!
    October 2016
  • Sushil changed his profile picture.
    Thumbnail
    October 2016
  • kashish9696 and JINESH joined.
    Welcome Aboard!
    October 2016
  • Welcome Aboard!
    October 2016
  • sameer
    Hi Vivek,
    How can I access data without key ?

    Are you exposing minute data for free ?
    Is it allowed to use above URL for free for limited number of requests per day?

    https://api.kite.trade/instruments/historical/779521/15minute?from=2016-10-14&to=2016-10-14&api_key=xxx&access_token=xxx

    Regards
    Sameer
    October 2016
    • Vivek
      Vivek
      Yeah we were testing few stuffs and it's currently in debug mode but will be closed soon.
  • sameer
    How can I access data without key ?
    https://api.kite.trade/instruments/NSE?api_key=xxx&access_token=xxx

    Are you exposing minute data for free ?
    October 2016
    • Vivek
      Vivek
      It's just a list of instruments with closing price of the day we get from exchange.
  • Welcome Aboard!
    October 2016
  • joy joined.
    Welcome Aboard!
    October 2016
  • Shabeershah2002
    Hi chaudhariapurva

    would you mind to share the piece of code to change the mode of stream ?

    i am using the below but not able to get "full" mode but able to get "quote" which is 44 bytes.

    this block is for subscription
    {

    TextBox1.text = "{"a": "subscribe", "v": [408065, 884737]}" -- this string is manually entered to textbox

    dynamic encoded = Encoding.UTF8.GetBytes(TextBox1.text);
    dynamic buffer = new ArraySegment(encoded);
    webSocket.SendAsync(buffer, WebSocketMessageType.Text, true, cancellation);
    }

    This block is for mode change
    {

    TextBox1.text = "{"a": "mode", "v": ["full", [408065]}" -- this string is manually entered to textbox

    dynamic encoded = Encoding.UTF8.GetBytes(TextBox1.text);
    dynamic buffer = new ArraySegment(encoded);
    webSocket.SendAsync(buffer, WebSocketMessageType.Text, true, cancellation);
    }
    June 2016
    • chaudhariapurva
      chaudhariapurva
      this is a func that i use
      public void SubcribeTo(string ticker, string mode)
      {
      string tickerstr = "{\"a\":\"subscribe\",\"v\":[" + ticker + "]}";
      string modestr = "{\"a\":\"mode\",\"v\":[\"" + mode + "\",[" + ticker + "]]}"; ////check this
      this._subscription.Add(tickerstr);
      this._subscription.Add(modestr);
      this._ws.Send(tickerstr);
      this._ws.Send(modestr);
      }

      the strings are stored in subscription list,and used to resubcribe if the websocket disconnects.(the disconnection happens rarely but it ensures that the program does not stop).
    • chaudhariapurva
      chaudhariapurva
      "{\"a\":\"mode\",\"v\":[\"" + mode + "\",[" + ticker + "]]}";
      U jst need one more square braket at end .this was error in the kite connect docks .But it is corrected now.
    • Shabeershah2002
      Shabeershah2002
      Thanks dear, i have found an application online which is free and that stopped my development http://laibtech.com/AlgOto.aspx
      this gives me to use NinjaTrader as well
  • Welcome Aboard!
    October 2016
  • arnpal and malleswar joined.
    Welcome Aboard!
    October 2016
  • sunil55tyagi
    hi vivek,
    Today I tried placing many Yesbank BO orders using kite connect,
    Surprisingly the orders were squared of as soon as the executed.

    product=BO&quantity=1&squareoff_value=2.55&transaction_type=SELL&stoploss_value=5.75&access_token=yyy&trigger_price=&api_key=xxx&price=1278.75&tradingsymbol=YESBANK&exchange=NSE&validity=DAY&order_type=LIMIT&disclosed_quantity=1

    where as orders placed directly from kite were waiting to hit either stop_loss or squareoff_value , but orders placed from kiteconnect were being squared off immediately after order execution.
    please resolve.
    October 2016
  • Rishant joined.
    Welcome Aboard!
    October 2016
  • Welcome Aboard!
    October 2016
  • Welcome Aboard!
    October 2016
  • prakash.jj
    Hi Vishnu,

    Mechanize is no longer supported on Python3 and I am trying to auto login using robobrowser but no luck.

    Have you tried any other libraries?

    Thanks in advance
    Prakash
    September 2016
    • vishnu
      vishnu
      Prakash,
      I do not use python anymore. So I have not tried it.

      Thanks and regards
      //Vishnu
  • SINGH and kashivis joined.
    Welcome Aboard!
    October 2016
  • Welcome Aboard!
    October 2016
  • bimalendu
    Hi Kailash,

    I'm new to developer forum. Browsed through the documentation, but it's not answering my specific need. How can I use Excel macros / asp.net pages to do algo trading?
    October 2016
  • chaudhariapurva
    Hi,
    the link on https://kite.trade/docs/connect/v1/?shell#libraries-and-resources for C# library MechTrader (3rd party) is old one kindly update it to https://github.com/apurvaChaudhari/KiteCore

    Thanks
    October 2016