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 ....
SwamiStochastics for Amibroker (AFL)
Copy & Paste Friendly
Back
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | Title = "SwamiStochastics" ; for ( N = 6; N <= 48; N++ ) { // Replace this line with the indicator of your choice, like RSI( N ) indicator = StochK ( N, 4 ) / 100; red = IIf ( indicator >= 0.5, 255 * ( 2 - 2 * indicator ), 255 ); green = IIf ( indicator < 0.5, 255 * 2 * indicator, 255 ); blue = 0; Color = ColorRGB ( red, green, blue ); PlotOHLC ( N, N+1, N, N, "" , Color, styleCloud | styleNoLabel ); } |