It looks like you're new here. If you want to get involved, click one of these buttons!
kite.place_order(transaction_type="BUY",
variety="regular",
exchange="NSE",
tradingsymbol="ACC",
quantity=10,
product="MIS",
order_type="MARKET",
disclosed_quantity=5)
Or it is necessary to give trigger price(i.s: Stop Loss) when placing regular_orderkite.place_order(transaction_type="BUY",
variety="regular",
exchange="NSE",
tradingsymbol="ACC",
quantity=10,
product="MIS",
order_type="MARKET",
trigger_price=500,
disclosed_quantity=5)
Would I get error if I place regular_order without giving any trigger_price(i.s: Stop Loss)?