Trading The Trend (TTT) indicator by Andrew Abraham is a simple, intuitive and spiffy short- and medium-term trend-catcher (code below). but it generates garbage when trend weakens and price action is somewhat sideways.
has anybody ever looked at ways to improve this indicator? any ideas?
Pds:=21;
Mult:=3;
TruRan:=Mov(ATR(1),Pds,W)*Mult;
HiLimit:=HHV(H,Pds)-TruRan;
LoLimit:=LLV(L,Pds)+TruRan;
If(C>HiLimit,HiLimit,LoLimit)
Many thanks
ZigZag