On the action block, I have the following lines to print an arrow and enter the trade.
if (shortstuff blah)
{
DrawArrowDown("My down arrow" + CurrentBar, 0, High[0] + 2 * TickSize, Color.Orchid);
EnterShort(DefaultQuantity, "S2S");
}
This worked in historical testing , other than the 1 bar lag. (will be nice to have that intrabar backtester !)
But today, in real time I'm seeing the arrow print, but no orders.
And there's only one spot in my code that will draw an arrow, so I know it's a valid entery.
If I stop/restart the strategy , both the arrows and signals are there.
The live account is with IB, non is sim mode, and I' verified I can place oders via a DOM I started.
Very confused !
Attached screenshot of YM

Comment