Problem submitting order

When I submit an order with Alpaca-py with:
MarketOrderRequest(
symbol=symbol,
qty=qty,
side=side,
time_in_force=TimeInForce.DAY
)
It correctly creates the new order with Status “New” but remain like this. Please help

The same here, what is going on?

The order status you receive from submitting the order only represents the order’s status at the time of submission. To see the most recent status, you’ll need to retrieve that order’s details using the get_order with the order’s id.

The problem is that the status remains unchanged. I could see it both in code and in the online platform, the orders are never submitted. In particular I found this problem with “AAPL” and “IBM”, if I move to crypto, it correctly works.