I want to enter long when these conditions are present:
20EMA above 50EMA and open&close of the candle (full body) is in within the range of 20EMA and 50EMA, enter long one tick above the high.
Obviously my logic is not what of the Strategy Wizard, this is what I put what seems as logic to me:
Conditions:
EMA(20)[1]>EMA(50)[1]
Close[1]>=EMA(50)[1]
Open[1]>=EMA(50)[1]
Close[1]<=EMA(20)[1]
Open[1]<=EMA(20)[1]
I also tried to use separate Sets for each, nothing seems to work

Do following:
Enter long position
In words the idea is the fast ema must be above slow ema, price then must come to the range between fast and slow ema's whole candle must form within this range. Enter long next bar one tick above.
I'll appreciate any help.
Thank you.

Comment