Placing an order

I placed some order by this python code:

api.submit_order(symbol=stock_symbol,
qty=1,
side=‘buy’,
time_in_force=‘gtc’,
type=‘limit’,
limit_price=round(last_price,2),
order_class=‘bracket’, stop_loss=dict(stop_price=round(stop_loss,2)),
take_profit=dict(limit_price=round(take_profit,2)))

Why Limit SELL and Limit BUY price are shown in my orders history but for Stop SELL i
I have nothing???

@Mehrdad_Shoghi Perhaps I don’t understand your question or the screenshot you posted? The screenshot you posted indicates you placed 3 bracket orders (for INTC, CVS, and EQIX). Each has an ‘Accepted’ parent limit order to open the position. Each has a ‘Held’ take-profit limit order to sell, and a ‘Held’ stop-loss order to sell. That is what would be expected when placing bracket orders.

I’ve pointed to the stop sell order for INTC. Is that the order you were looking for?