I need to work with COBC=true but I want to have an immediate entry.
(it works with COBC=false and firsttickofbar, but because of an indicator I have to change to COBC=true)
With these conditions the entry is only the next bar and not immediate with a click on the button (as I can do with COBC=false)
if (_stratON && _exits.Text == _onMessageM
&& BarsInProgress == 0
&& GetCurrentAsk() > GetCurrentBid())
How can one have immediate entry when COBC=true? I mean which condition to set (the control and action I do with my buttons)
Thank you.
Best regards
Tony

in the meantime. I add a dataseries with 1 Range size to use in the specific setup and so I can work with COBC=true. The entry is at next "range-size", so almost immediate, this is Ok.
Comment