order placing error

nayan_nandi
Can I place regular_order without any trigger price in kiteconnect algo trading
Like this
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_order
like this
kite.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)?
Sign In or Register to comment.