Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Inam channel....s/r for Amibroker (AFL)
u need to observe the channel…..uper channel touch sell lower channel touch buy….
Screenshots
Similar Indicators / Formulas
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | _SECTION_BEGIN ( "AFBI Channel System" ); /// AFBI Channel System /// FixV=6; x= MA ((( H + L )/2)+( O - C ),5); i= DEMA (x,5); r=(x+ StDev (x,FixV))+ ATR (2)/1.5; s=(x- StDev (x,FixV))- ATR (2)/1; color= IIf ( BarsSince ( Cross (s, C ))> BarsSince ( Cross ( C ,r)), colorBrightGreen , colorRed ); Plot ( C , "" ,Color,64); Plot (S, "S" , colorGreen ); Plot (R, "R" , colorDarkRed ); Title= Name ()+ " " + Date ()+ " " + EncodeColor ( colorSkyblue )+ " INAM Channel System " + EncodeColor ( colorYellow )+ " Vol=" + NumToStr ( Volume ,1.0)+ " " + " O=" + Open + " H=" + HHV ( H ,1)+ " L=" + LLV ( L ,1)+ " Close=" + Close + "" + "(" + numtostr (( Close - ref ( C ,-1))/ ref ( c ,-1)*100,1.2)+ " %)" ; _SECTION_END (); |
0 comments
Leave Comment
Please login here to leave a comment.
Back