If I have this:
SMA smaFirst = SMA([First);
SMA smaSecond = SMA(Second);
if (CrossBelow(smaFirst, smaSecond, 1))
{
entryOrder = EnterShort(1, DefaultQuantity);
}
Alternatively I would like to tell the CrossBelow method to ignore the current cross and wait a few candles before taking action.
Any suggestions?
Thanks,
Molecool

Comment