Whatever sophisticated trading systems can do, there are simpler ones, with moderate, but with success.
The only thing is, you need a fat account or microlots.
the action instructions is with a small seasonal monthly filter
In timeframe 4H
we sell if price above ema50 and we have little condition
sl tp 2% of price
//————————————————————————-
// instrument: dax 40
// maincode : 4HS tm tb g50 k1 M2
// timezone : europetime, berlin
// timeframe : 4h
// created and coded by JohnScher
//————————————————————————-
defparam cumulateorders = true
position = 1
tm = openmonth <>1 and openmonth <> 3 and openmonth <> 10
td = opendayofweek >= 1 and opendayofweek <= 5
tt = time >= 090000 and time <= 210000
c1 = exponentialaverage [1] (close) > exponentialaverage [50] (close)
c2 = exponentialaverage [1] (close) < exponentialaverage [2] (close)
if tm and td and tt and c1 and c2 then
sellshort position contracts at market
endif
set stop %loss 2
set target %profit 2
// until then