☰
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
13.8K
All Categories
0
Incidents
153
Node JS client
40
Go client
793
.Net API client
378
Kite Publisher
537
.Net / VBA / Excel (3rd party)
457
Algorithms and Strategies
993
Java client
1.1K
API clients
403
PHP client
4K
Python client
346
Mobile and Desktop apps
1.4K
Market data (WebSockets)
3.3K
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.