"Couldn't find that `guid`" exception while placing order

chetanragi
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
    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
    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.