Stock Portfolio Organizer
The ultimate porfolio management solution.
Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Chaloke Reaction Trend System for Amibroker (AFL)
Copy & Paste Friendly
Back
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | /// Chaloke Reaction Trend System /// XX=( H + L + C )/3; BB=2*XX- H ; SS=2*XX- L ; HBOP=2*XX-2* L + H ; LBOP=2*XX-2* H + L ; color= IIf ( BarsSince ( Cross ( H , Ref (HBOP,-1)))> BarsSince ( Cross ( Ref (LBOP,-1), L )), colorRed , colorBrightGreen ); Plot ( C , "" ,Color,64); Plot (XX, "" , colorYellow ); Plot (BB, "" , colorLime ); Plot (SS, "" , colorPink ); Plot (HBOP, "" , colorGreen ); Plot (LBOP, "" , colorDarkRed ); Title= Name ()+ " " + Date ()+ " " + EncodeColor ( colorSkyblue )+ " Chaloke RTS 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)+ " %)" ; |