Hello, I want to share this strategy of Semi Swing Trading on DAX 4H
It includes a non-conventional PSAR setup, an RSI and 1 simple moving average. Only for Longs looking for brief small trends.
WF with 100000 bars attached.
Any suggestions to improve ratio win/loss or % of wins are always welcome =D
//ROCK CLIMBER DAX 4 HR
defparam cumulateorders = false
Positionsize = 2
MyPSAR = SAR[0.09,0.08,0.2]
If BarIndex = 0 then
xClose = TotalPrice
xOpen = Open
xHigh = max(High,max(xOpen, xClose))
xLow = min(Low,min(xOpen,Xclose))
ELSE
xClose = Totalprice
xOpen = (xOpen[1] + xClose[1])/2
xHigh = max(High,max(xOpen, xClose))
xLow = min(Low,min(xOpen,Xclose))
ENDIF
MyRSI = RSI[6](close)
If MyRSI crosses over 60 and close> Average[25] then
Buy Positionsize contracts at market
ENDIF
If LongonMarket and ((xOpen > xClose and XHigh-XOpen and XLow < Xclose) or (MyPSAR crosses over close)) then
Sell at market
ENDIF
set stop loss 80
Best T.