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 ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

350 Swing Price chart for Amibroker (AFL)

Rating:
5 / 5 (Votes 1)
Tags:
amibroker, swing

Barbara Stars 350 Swing Indicator, article from Stocks & Commodities magazine edited…

Screenshots

Similar Indicators / Formulas

NMA Swing System v1.1
Submitted by kaiji almost 15 years ago
SeƱales de entrada y salida
Submitted by yayo88 about 11 years ago
swing system v2
Submitted by jaipal7786 almost 12 years ago
SwingN
Submitted by persee almost 15 years ago
Swing Trading System
Submitted by arun.victor over 10 years ago
Elder Impulse
Submitted by jayasheelk over 14 years ago

Indicator / Formula

Copy & Paste Friendly
// Barbara Stars 350 Swing Indicator article from Stocks & Commodities magazine edited... 
_SECTION_BEGIN("350Swing");

nRSILen = Param("RSI Length", 3, 2, 50 );
nMALen = Param("MA Length", 3 );
UpColor = ParamColor("UpColor", colorGreen );
DnColor = ParamColor("DnColor", colorRed );

r = RSI( nRSILen );
rma = MA( r, nMALen );
Color = IIf( r > 50, UpColor, DnColor );

mode =  ParamList("Display", "Price");


         SetBarFillColor( Color );
         Plot( C, "Price", Color, styleCandle );
         PlotShapes( ( rma < 20 ) * shapeSmallCircle, colorGreen, 0, L, -20 );
         PlotShapes( ( rma > 80 ) * shapeSmallCircle, colorRed, 0, H, 20 );
         
        
_SECTION_END();

0 comments

Leave Comment

Please login here to leave a comment.

Back