Very Simple But Accurate Long Term Trend Detector


Very Simple But Accurate Long Term Trend Detector
Very Simple But Accurate Long Term Trend Detector

//www.aflcode.com

_SECTION_BEGIN("Future MA");
// Plot Future MA.
Fwd = Param( "Fwd Period", 5, -50, 50 );
FwdC = Ref(Close,Fwd);
FwdMA = MA(FwdC,Fwd);
Plot(C,"Close",colorBlack,styleLine,0,0,-Fwd);
Plot(FwdC,"FwdClose",colorRed,styleLine);
Plot(FwdMA,"FwdMA",colorGreen,styleLine);
_SECTION_END();

Previous
Next Post »