Recent Activity

  • mkhushwali
    hi. how did you resolve error [200] issue. I am getting same problem.
    March 2018
  • Welcome Aboard!
    March 2018
  • Hi ,
    How to get in checksum value in kite api
    March 2018
  • Hi,

    after login into kite connect i can able to view only my API key there is no button viewing to check secret key
    March 2018
  • durgesh1712, pc7, fa7c0n, rushaykite, Abhra and 3 others joined.
    Welcome Aboard!
    March 2018
  • Sashank_Chittipeddi
    Hello @ RP3436,

    I saw one of your queries in streaming data and converting to data frame. I am struggling with this bit. A sample code to stream data and convert to data frame (OHLC) would be really helpful
    February 2018
    • Sashank_Chittipeddi
      Sashank_Chittipeddi
      Hello @ RP3436, could you help me out? I'm using the example provided in the docs but something doesn't seem to be working
  • SandeepUriti, karthiksv84, arrvkc, imman, Varun48 and 2 others joined.
    Welcome Aboard!
    March 2018
  • Welcome Aboard!
    March 2018
  • Welcome Aboard!
    March 2018
  • Sashank_Chittipeddi
    Hello @ jcshk78,

    I saw one of your queries in streaming data and reading it. I am struggling with this bit. A sample code to stream data and convert to data frame (OHLC) would be really helpful
    February 2018
    • jvshk78trade
      jvshk78trade
      Hi Shashank,
      Presently I'm on a break, will start programming again in near future.
  • Welcome Aboard!
    March 2018
  • ranjan1, RT123, akhileshkaushik, saranya, sm35621MK and 6 others joined.
    Welcome Aboard!
    February 2018
  • ramatius
    Hi Sujith, the "orders list" api is not working for me,
    curl "https://api.kite.trade/orders" -H "X-Kite-Version: 3" -H 'Authorization: token d2rc0eo19s33cg38:YuDCeYCcnoMz1WpcS3RRjuWzQIcpeu6a'

    However, the same credentials are working fine for firing orders, cancel orders, etc.
    February 2018
  • Welcome Aboard!
    February 2018
  • Welcome Aboard!
    February 2018
  • jumpingjacks
    We are using api for our trading process.When we are taking multiple order information few orders in beteween showing some erors like
    1.Network exeption.
    2.General exeption.
    3.Gateway busy...etc.
    example :our mode operation is we are placing (50 orders) at a time on multiple shares.and we are using 50mbps speed net work.
    please give me an suggestion or advice to overcome this erors.
    February 2018
    • MAG
      MAG
      @jumpingjacks: If you are placing 50 individual orders at a time, are you having any time delay between each order?
      In kite you need to make one order_place call for each order. And you are limited to three api calls per second.
      So considering your code is doing nothing but placing orders, no quote , status etc, then you will take 50/3= 17 seconds to palce all 50 orders with a .25 to .3 second delay between each order.
      If you are firing orders one after the other, you would hit the api limits and then the api would throw up network or gateway exceptions.
  • i forgot my registered email id , can login my zerodha account by mobile id??
    February 2018
  • bijoy and bonnynit joined.
    Welcome Aboard!
    February 2018
  • suneel, jiabest, smzu, mjraval, KKHAIRAJ and 3 others joined.
    Welcome Aboard!
    February 2018
  • RP3436
    Shashank please share your mail id.
    February 2018
  • narasimha
    Hello ,
    Can you help me understand how did you integrate java and amibroker
    February 2018
  • Sashank_Chittipeddi
    Hey there,

    This is Sashank. I needed some help and was wondering if you could advise me here. I learnt python and have coded and tested a few strategies on laptop using Jupiter notebook. Now, the next logical step is connect to kite (I have a zerodha account) but I am confused as to how exactly this is to be done. A walk-through of your implementation would be helpful.

    Thank you :)

    [email protected]
    +919880023273
    October 2017
    • ramatius
      ramatius
      Hi Sashank, I am seeing your comment just now. Hope you were able to proceed.
    • Sashank_Chittipeddi
      Sashank_Chittipeddi
      Hello!,

      I could proceed! it was quite challenging initially but I am fairly comfortable now. Now the challenge I am facing is in streaming live data & converting them to candles. Struggling with this for quite a while. A sample code to stream and convert to candles would be helpful
    • ramatius
      ramatius
      Python works well for live streaming (you can try the example; it works off the shelf. I couldn't get PHP working for that. Hope you are using mysql for storing the live data.

      In case you are trying to implement a specific strategy, perhaps you can consider using an automation platform like quantindia.in (this is mine :) ).
    • ramatius
      ramatius
      You can reach me on +91-8861693512
  • Sashank_Chittipeddi
    Hello @ thepanoramix,

    Could you help me with data streaming and converting to pandas datafram. I am struggling with this bit. A sample code to stream data and convert to data frame (OHLC) would be really helpful
    February 2018
  • Welcome Aboard!
    February 2018
  • Ashok121
    hi
    how are you getting access token?

    can you please write down steps for me?
    February 2018
  • paragsatpute
    Hi Ramatius,
    In regards to your PHP implementation of Kite Connect, wanted to know if you are able to stream live data to your application with PHP. If yes, how and can you share the same.


    Regards,
    Parag
    February 2018
    • ramatius
      ramatius
      Websocket is not working for me in PHP. So I am using Python for live streaming. It works quite well.
  • Ashok121
    1. import logging
    2. from kiteconnect import KiteConnect
    3. logging.basicConfig(level=logging.DEBUG)
    4. kite = KiteConnect(api_key="my api key")
    # my request token from "https://kite.trade/connect/login?api_key=xxxxx&v=3" and login.
    5. data = kite.generate_session("my request token",api_secret="my api secret")

    7. kite.set_access_token(data["access_token"])

    Please correct if above steps are not correct or anything missing. becuase with above even I am not able to get access token in ipython and getting message " Invalid token"
    February 2018
  • Ashok121
    1. import logging
    2. from kiteconnect import KiteConnect
    3. logging.basicConfig(level=logging.DEBUG)
    4. kite = KiteConnect(api_key="my api key")
    # my request token from "https://kite.trade/connect/login?api_key=xxxxx&v=3" and login.
    5. data = kite.generate_session("my request token",api_secret="my api secret")

    7. kite.set_access_token(data["access_token"])

    Please correct if above steps are not correct or anything missing. becuase with above even I am not able to get access token in ipython and getting message " Invalid token"
    February 2018
  • deepaksinghvi
    have you made any startegy live in api... Or made it from any of the developers...
    Share your cell no ... min e 9825005905..
    February 2018
  • nirmalthomas26 changed his profile picture.
    Thumbnail
    February 2018