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 ....
10 - 70 oscillator 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 19 | _SECTION_BEGIN ( "10-70 OSCILLATOR" ); A3 = MA ( C ,10); B3 = MA ( C ,70); D3 = A3-B3; Colorm= IIf (D3> Ref (D3,-1), colorPaleBlue , colorBlue ); Plot ( D3, "1070" , Colorm, styleHistogram | styleNoLabel ); PlotOHLC ( 0, D3, 0 , 0 , "1070" ,Colorm, styleCloud | styleNoLabel ); ////////////////////////////////////////////////////////////////////////////////////// _SECTION_END (); |