☰
Login
Signup
Home
›
Python client
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In
Register
Categories
Recent Discussions
Activity
Categories
12.1K
All Categories
89
Node JS client
32
Go client
705
.Net API client
337
Kite Publisher
525
.Net / VBA / Excel (3rd party)
400
Algorithms and Strategies
900
Java client
918
API clients
386
PHP client
3.4K
Python client
314
Mobile and Desktop apps
1.2K
Market data (WebSockets)
2.9K
General
In this Discussion
December 2019
sujith
December 2019
saurabh3679
"Couldn't find that `guid`" exception while placing order
chetanragi
December 2019
in
Python client
While placing order yesterday(2/12/19) at 2:58 following exception was thrown.
raise exp(data["message"], code=r.status_code)
kiteconnect.exceptions.GeneralException: Couldn't find that `guid`.
Following parameters were passe to place_order function: {'tradingsymbol': 'TATASTEEL', 'quantity': 1, 'transaction_type': 'SELL', 'order_type': 'MARKET', 'validity': 'DAY', 'product': 'MIS', 'variety': 'regular', 'exchange': 'NSE'}
saurabh3679
December 2019
Even I had it at one occasion. I handled it in my python script like this:
while True:
try:
do something like place order, check order status etc
except Exception as e:
logging.critical(e)
#not
necessary to log
else:
break
sujith
December 2019
Hi,
This is a mismap of the error. It means there was a timeout while placing the order. We have fixed this. It must be deployed by EOD.
Sign In
or
Register
to comment.
while True:
try:
do something like place order, check order status etc
except Exception as e:
logging.critical(e) #not necessary to log
else:
break
This is a mismap of the error. It means there was a timeout while placing the order. We have fixed this. It must be deployed by EOD.