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

COMPOSITE INDEX CLOUD STYLE for Amibroker (AFL)

Rating:
3 / 5 (Votes 10)
Tags:
trading system, amibroker

Hi……This is the composite index by Constance brown.I have retained the most famous parameters but provided a cloud style for the same and added a buy and sell signal.I have also added an EOD scan of the stocks in the overbought and oversold region.The red coloured area on top at 100-120 region is overbought and the 0 to -20 is oversold region.It is for traders who trade the divergences.Best time frame is EOD and hourly and short time frame 15min..
I use the composite instead of the regular RSI indicator as it detects and filters the exact spots of divergence better.The cloud style red and blue colour is the horizontal support areas/resistance areas.Hope you enjoy with due credit to Wisestocktrader forum and the master of this amazing afl Constance Brown.
Prasad Muni

Screenshots

Similar Indicators / Formulas

EMA crossover
Submitted by Ketan-0 about 13 years ago
Kase Peak Osc. V2 batu
Submitted by batu1453 almost 10 years ago
Kase CD V2batu
Submitted by batu1453 almost 10 years ago
Ichimoku
Submitted by prashantrdx almost 10 years ago
buy and sell two EMAS
Submitted by mundo0007 about 12 years ago
Adaptive Price Zone (APZ)
Submitted by AndrewThomas about 13 years ago

Indicator / Formula

Copy & Paste Friendly
/*

Reference to:

BreakThroughs in Technical Analysis
Keller, Bloomberg

Composite Index, 

*/

A=RSI() - Ref(RSI(),-9)+ MA(RSI(3),3);
Plot(A,"Composite Index",colorYellow,styleThick);
Plot(MA(A,13),"MA13",colorBlack,styleHistogram);
Plot(MA(A,13),"MA13",colorBlue,styleArea);


Plot(MA(A,33),"MA33",colorBlack,styleHistogram);
Plot(MA(A,33),"MA33",colorRed,styleArea);

Plot(100,"",colorRed,styleDots,styleArea);
Plot(0,"",colorGreen,styleDots,styleArea);
Overbought=100;
Oversold=0;
Plot(100,"",colorDarkTeal,styleArea);
Plot(120,"",colorBlack,styleHistogram);
Plot(120,"",colorRed,styleArea);
Plot(-20,"",colorBlack,styleHistogram);
Plot(-20,"",colorGreen,styleArea);
Overbought=100;
Oversold=-0; 

Buy = Cross(A, Oversold) AND A > Oversold;
Sell = Cross(Overbought, A) AND A < Overbought;

PlotShapes(IIf(Sell, shapeDownArrow , shapeNone), colorWhite);
PlotShapes(IIf(Buy, shapeUpArrow , shapeNone), colorWhite);

/* Trend Filters */
TimeFrameSet(in15Minute);
SwingTrd151 = 100 * (Close - ((MA(C,2)+
MA(MA(C,2),2)+
MA(MA(MA(C,2),2),2) +
MA(MA(MA(MA(C,2),2),2),2) +
MA(MA(MA(MA(MA(C,2),2),2),2),2) +
MA(MA(MA(MA(MA(MA(C,2),2),2),2),2),2) +
MA(MA(MA(MA(MA(MA(MA(C,2),2),2),2),2),2),2)+
MA(MA(MA(MA(MA(MA(MA(MA(C,2),2),2),2),2),2),2),2)+
MA(MA(MA(MA(MA(MA(MA(MA(MA(C,2),2),2),2),2),2),2), 2),2)+
MA(MA(MA(MA(MA(MA(MA(MA(MA(MA(C,2),2),2),2),2),2), 2),2),2),2))
/10))/(HHV(C,10)-LLV(C,10));
SwingTrd152=EMA(SwingTrd151,13);
SwingTrd153=EMA(SwingTrd152,13);
RMO15= EMA(SwingTrd151,34);
Bull_Trend15=EMA(SwingTrd151,34)>0;
Bear_Trend15=EMA(SwingTrd151,34)<0;
TimeFrameRestore();
Ribbon_kol15=IIf(TimeFrameExpand(Bull_Trend15,in15Minute),colorBlue, IIf(TimeFrameExpand(Bear_Trend15,in15Minute),colorRed, colorWhite));
Plot(8, "ribbon", Ribbon_kol15, styleOwnScale|styleArea|styleNoLabel, -0.5,100);
// End of Trend Filter

_SECTION_BEGIN("color1");
SetChartBkGradientFill( ParamColor("BgTop", ColorRGB( 172,172,172 )),

ParamColor("BgBottom", ColorRGB( 172,172,172 )),ParamColor("titleblock",ColorRGB( 172,172,172 )));

 _SECTION_END();

11 comments

1. anandnst

Good afl and thnx you for posting it.

2. sampathsaran

nise and good

3. shariful

I love divergence..divergence trading is hidden power of TA…. thanks for valuable sharing bro prasadmuni… hoping we wld get more divergence spoting afl from you…..

4. dineshpal

This is indeed a very good indicator. Thanks for posting .

5. TechTradeRookie

Very nice indicator from a great book: “Technical analysis for the trading professional!”

I’m looking for an indicator which plots positive and negative reversals as they occur in the charts…anyone?

6. anand23983

I LOVE THIS ONE

7. Muralikrishna

Exellant

8. Boknoy9999

Hi i just would like to ask if how can i use rsi for 30 periods? thank you

9. prasadmuni

I AM POSTING THE 30 DAY RSI AND LET US WAIT FOR THE ADMINISTRATOR TO POST THE SAME.
THIS FRAME SHOULD BE USED ONLY IN THE BULLION MARKET.GOLD AND SILVER AND IS NOT TO BE USED IN EQUITY MARKET.

10. kelvinhand

Just to let you know, you can find from the website, Composite Index by Constance Brown is claimed to belong to Andrew Cardwell.
She was a student of Andrew Cardwell.

It is called CFG MO (Cardwell Financial Group Momentum Oscillator). Here mentioned the copyright issue:
http://fxcodebase.com/code/viewtopic.php?f=17&t=3007&start=0

11. hoierman

Using this code all I get is the Bottom chart? Where is the code for the top chart?

Dick H

Leave Comment

Please login here to leave a comment.

Back