if (execution.MarketPosition == MarketPosition.Long)
{
stopOrder = ExitLongStop(stopPriceLong[0]);
DrawArrowUp("stop"+CurrentBar,0,stopPriceLong[0],Color.Red);
}
The ExitLongStop order isn't being placed nor is there an error in the log. However, the up arrow is showing on the chart. So, I'm wondering if you can give me any clues why this is happening.
Thanks,
Mike

Comment