It looks like you're new here. If you want to get involved, click one of these buttons!
order_id = kite.place_order(tradingsymbol=req_body["symbol"],
exchange=kite.EXCHANGE_NFO,
transaction_type=kite.TRANSACTION_TYPE_SELL,
quantity=req_body["quantity"],
variety=kite.VARIETY_REGULAR,
order_type=kite.ORDER_TYPE_SL,
product=kite.PRODUCT_NRML,
validity=kite.VALIDITY_DAY,
trigger_price=float(req_body["trigger_price"]),
stoploss=float(req_body["sl_price"]))
I got an error message saying: