@rakeshr still same error i have removed the enum34 from my requirements.txt.(Attached requirements.txt)Any other kite connect version you know which is stable in python3.6
----------------------log
Requirement already satisfied: setuptools>=…
Is it because of the Queue I am storing data into? Is it that I miss a lot of ticks and hence the update doesnt happen ? as I can clearly see that my system lags the original movement in the market.
my code
import cPickle as pickle
from kiteconnect import WebSocket
import time
from datetime import datetime
from Queue import Queue,LifoQueue
from threading import Thread
import pandas as pd
import MySQLdb
df = pd.DataFrame()
q =LifoQueue(maxsize…
Thanks a lot Sujith, I think the issue will not come again as I think the issue was . I will post my queries in case it comes again.
as mentioned in the first message
ERROR:websocket:error from callback >: on_error() takes no arguments (2 give…
I am using the same code . let me share my code with you :
import cPickle as pickle
from kiteconnect import WebSocket
import time
from datetime import datetime
from Queue import Queue,LifoQueue
from threading import Thread
import pandas as pd
impo…
Hi @sujith ,
I too have faced a similar issue. I used this and it has quite a significant impact on my trading. Can you please let me know that is there some plan to resolve such issues and can you inform here when the issues are resolved ?
Does it also mean that if I ask for the historical candle at 9:16 in the morning , than I should not get any data for that instrument_token ? I should get my first candle at 9:30 only , but what I see the moment I run in the morning, the historical …
is the candle at 15:15 represent data from 15:15 to 15:30 or it represents data from 15:00 to 15:15 . In my opinion, it represents data from 15:00 to 15:15 . I am saying this because when I call kite.historical for a fifteen minute candle at 9:30 it…
So,
I got a postback for the completed order but not for the rejected one.
Following was the rejected order:
PRICE
₹0.00
TRIGGER PRICE
₹0.00
ORDER PLACED BY
DR1125
ORDER TYPE
MARKET
PRODUCT / VALIDITY
MIS / DAY
TIME
2017-06-30 10:03:10
ORDER ID
1…
I placed an order using the below code.
from kiteconnect import KiteConnect
specs = {}
specs['access_token']="xxxxx"
specs['api_key'] = "yyyyyyyy"
kite = KiteConnect(specs['api_key'])
kite.set_access_token(specs['access_token'])
r = kite.order_pl…
I sent an order using my Kite Connect api also. It also doesnot result in the postback. Does the order need to come from https://database-165705.appspot.com/ ?
Will the postback not be generated if I use my local system which has a different addres…
Hi Sujith,
Thanks for the prompt response.
So currently when I am using following command in the terminal:
curl 'https://xxxxxxx.com/' --data 'payload=RishantMumbaiWala'
I see correct results. but when I am putting the same 'https://xxxxx.com/' i…
ok, I got the error. Probably as mentioned in one of the discussion, the script trade in different segments NSE-BE,NSE-BL and hence the price that was the input today was different.
Can you point me to some article which can help me understand this…