- Katılım
- 23 Eki 2020
- Mesajlar
- 1,828
Since Pee's article also included the signals to trade this indicator, it is possible to construct a system test and an expert advisor for it. These formulas and the procedure for creating them follow. |
|
Trend Trigger Factor System Buy order: x:=15; bp:=HHV(H,x)-Ref(LLV(L,x),-x); sp:=Ref(HHV(H,x),-x)-LLV(L,x); ttf:=((bp-sp)/(0.5*(bp+sp)))*100; Cross(ttf,100) Sell order: x:=15; bp:=HHV(H,x)-Ref(LLV(L,x),-x); sp:=Ref(HHV(H,x),-x)-LLV(L,x); ttf:=((bp-sp)/(0.5*(bp+sp)))*100; Cross(-100,ttf) Sell short order: x:=15; bp:=HHV(H,x)-Ref(LLV(L,x),-x); sp:=Ref(HHV(H,x),-x)-LLV(L,x); ttf:=((bp-sp)/(0.5*(bp+sp)))*100; Cross(-100,ttf) Buy to cover order: x:=15; bp:=HHV(H,x)-Ref(LLV(L,x),-x); sp:=Ref(HHV(H,x),-x)-LLV(L,x); ttf:=((bp-sp)/(0.5*(bp+sp)))*100; Cross(ttf,100) |
--William Golson Equis International | |
| |
Source / From: |