Trend Reversal Confirmation Histogram

Trend Reversal Confirmation Histogram
Trend Reversal Confirmation Histogram
//www.aflcode.com
T=20; /*Time Period for MA*/
KMA=((C-MA(C,T))/MA(C,T))*100;   
Graph0=KMA;
Graph0Style=2+4;
Graph0BarColor=IIf(KMA>0,5,4);
GraphXSpace=5;

Title=Name()+" "+Date()+" The Close is "+WriteVal(abs(KMA),format=1.2)+"%"+WriteIf(KMA>0," above"," below")+" the 20 period MA";
Previous
Next Post »