How can one make a strategy entry order immediately after all conditions were satisfied? E.g. if(open_price > _some_condition) strategy.entry(...) I used "strategy(...process_orders_on_close=true)”, but I would like to make an order not on this bar’s close price, but on this bar’s open price (so immediately).
On the "Strategies" page (https://www.tradingview.com/pine-script-docs/en/v4/essential/Strategies.html#broker-emulator) it says "Unlike in real trading, the emulator only fills orders at chart prices, which is why an order can only be filled on the next tick in forwardtesting and on the next bar or later in backtesting, i.e., after the strategy calculates". Does anyone know how to overcome this issue and place an order on the spot? Otherwise backtesting does not provide rear-life and useful data.