I manually tested a version of the Larry Williams approach, the results where not outstanding but nevertheless I can see possibilities. The principle : entering the market, depending on the previous candle. Normally it is usted on a dayly timeframe and on forex pairs, but I have transformed it to every timeframe and every instrument. Manually it works.
In reality I tested the indicator yesterday on a 45 min graph. The parameters didn’t seemed optimal and trerefore I tried to programme a backtest scenario but, it failed.
Here is the indicator:
Defparam drawonlastbaronly = true
f=0.2
KH= high[1]
KL=low[1]
up=KH* f/100
Dn=KL*f/100
P=open
U= P + up
L= P - dn
//Tekenen
DRAWSEGMENT(barindex, u, barindex[3], u)coloured(5,155,5,255)
DRAWSEGMENT(barindex, L, barindex[3], L)coloured(175,75,75,255)
DRAWTEXT(" Go Long above =#U#", barindex, U, dialog, bold, 20)coloured(5,155,5,255)
DRAWTEXT(" Go Short under =#L#", barindex, L, dialog, bold, 20)coloured(175,75,75,255)
TP=u+(0.89*(u-l))
St=l-(0.89*(u-l))
DRAWSEGMENT(barindex, TP, barindex[3], TP)
DRAWSEGMENT(barindex, St, barindex[3], St)
DRAWTEXT(" TP Long / Stop Short=#TP#",barindex,TP, dialog,standard, 20)coloured(255,255,255,255)
DRAWTEXT(" TP Short / Stop Long=#St#", barindex, St, dialog,standard, 20)coloured(255,255,255,255)
return u,l