Hallo zusammen,
ich versuche einen Backtest mit folgendem Code:
_____________________________________________
defparam cumulateorders = false
Size = 1 //position size
ProofPeriod = 3 //Check max 4 Candles after the Signal “Engulfing” if one of them closes over the high of the Figure
BearEngulfing = CLOSE[1] > OPEN[1] AND OPEN > CLOSE[1] AND CLOSE < OPEN[1]
//Idea:If the bearish engulfing ends up with an bullish counter, it coould be a good long entrance
uptrigger=0
for i = 0 to ProofPeriod do
uptrigger=close[i]>high[BearEngulfing]
next
if NOT ONMARKET and BearEngulfing and uptrigger then
//case buy
BUY Size CONTRACTS at market
endif
SET STOP %LOSS 0.8
SET TARGET %PROFIT 1.26
_________________________________
leider kommen keine sinnvollen Ergebnisse. Ich bekomme immer nur zwei Trades, die keinen Sinn ergeben 🙁
Weiß jemand wo der Fehler liegt?
Beste Tradergrüße
Micha