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

Bottom Picker Using RSI and CMO for Amibroker (AFL)

Rating:
4 / 5 (Votes 4)
Tags:
amibroker, oscillator, rsi, cmo

You can use in all time frames. But on hourly charts gives best results. Try to pick bottom points based on the following conditions:

  • 14 day relative Strength Index has crossed the oversold zone of 30
  • 20 day chande Momentum Oscillator has crossed the oversold zone of 50
  • The 9 day moving average signal of the chande momentum oscillator has crossed above the oscillator.

Screenshots

Indicator / Formula

Copy & Paste Friendly
/*ertanaliz*/
//bottom picker

SetChartOptions( 0, chartShowArrows | chartShowDates );
_N( Title = StrFormat( "{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}", O, H, L, C, SelectedValue( ROC( C, 1 ) ) ) );
Plot( C, "Close", ParamColor( "Color", colorDefault ), styleNoTitle | ParamStyle( "Style" ) | GetPriceStyle() );

SumUp = Sum( IIf( C > Ref( C, -1 ), ( C - Ref( C, -1 ) ), 0 ), 20 );
SumDn = Sum( IIf( C < Ref( C, -1 ), ( Ref( C, -1 ) - C ), 0 ), 20 );

CMO = 100 * ( SumUp - SumDn ) / ( SumUp + SumDn );

cmoSignal = Ma( CMO, 9 );
rsi14 = RSI( 14 );
sonuc = Cross(CMO, -50 ) AND CMO > cmoSignal AND Cross(rsi14, 30 );

PlotShapes( IIf( sonuc == 1, shapeCircle, Null ), 10);

4 comments

1. filinta

güzel çalışma.teşekkürler.

2. qurman

EMEĞİNE YÜREĞİNE SAĞLIK….

3. Motosz

I am a starter in amibroker.

How can I use this AFL?

I put this code in Formula Editor, saved and clicked on Optimization and then clicked on Backtest, but do nothing. :( I cant see the bottom points in my charts.

Thanks!

4. administrator
  • First plot a price chart.
  • Second drag this indicator onto that price chart.

The indicator does not have any optimization or back-test code in it.

Leave Comment

Please login here to leave a comment.

Back