Hi @Scooby_Doo
use below code to place Bracket Order
tradingsymbol = 'TATASTEEL'
exchange = tsl.Dhan.NSE
security_id = tsl.instrument_df[((tsl.instrument_df['SEM_TRADING_SYMBOL']==tradingsymbol)|(tsl.instrument_df['SEM_CUSTOM_SYMBOL']==tradingsymbol))&(tsl.instrument_df['SEM_EXM_EXCH_ID']=='NSE')].iloc[-1]['SEM_SMST_SECURITY_ID']
tsl.Dhan.place_order(security_id=int(security_id), exchange_segment=exchange, transaction_type='BUY', quantity=1,order_type='MARKET', product_type='BO', price=0, trigger_price=0, disclosed_quantity=0, after_market_order=False, validity='DAY', amo_time='OPEN',bo_profit_value=5, bo_stop_loss_Value=5, tag=None)