Syntax is :
if(BarsSinceEntry("LongEntryCrosses")>1)
{
//enter long trade
LongOrderCrosses = EnterLong(LotSize,"LongEntryCrosses");
}
Is there a reason for this?
If I take out the test on some bars the strategy is attempting to place a trade multiple times (100s) and this is then being cancelled due to logic I think within the strategy

Comment