I am placing an alice blue order using placeOrder,
order_id = alice.place_order(
transaction_type=TransactionType.Buy if intraday_order['Trantype'] == 'B' else TransactionType.Sell,
instrument=alice.get_instrument_by_symbol('NFO', intraday_order['Tsym']),
quantity=int(quantity),
order_type = OrderType.Market if intraday_order['Prctype'] == 'MKT' else OrderType.Limit if intraday_order['Prctype'] == 'SL' else None,
product_type=ProductType.Delivery,
order_tag='trade_order'
)```
But I am getting below error,
Error placing delivery order: 'dict' object has no attribute 'exchange'
Please help if something has changed in the apis