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

Simple Chaikin Buy Sell for Amibroker (AFL)

Rating:
5 / 5 (Votes 1)
Tags:
oscillator, trading system, amibroker

Simple Chaikin Buy Sell as introduced in p.422 in “TECHNICAL ANALYSIS THE COMPLETE RESOURCE FOR FINANCIAL MARKET TECHNICIANS

Screenshots

Similar Indicators / Formulas

Rahul Mohindar Oscillator (RMO)
Submitted by kaiji over 14 years ago
Trending Wave 2 System
Submitted by Dryden about 12 years ago
Price Oscillator
Submitted by ariful_islam over 13 years ago
Stochastic
Submitted by expert over 13 years ago
STOCH RSI CROSSOVER
Submitted by sonia.b about 12 years ago
CCI ZERO CROSS WITH ALERT
Submitted by thanigay2k over 10 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("Simple Chaikin Buy Sell");
r1 = Param( "Fast avg", 6, 2, 200, 1 );
r2 = Param( "Slow avg", 20, 2, 200, 1 );
Cha = Chaikin(r1,r2);
topCDev = StDev(Chaikin(r1,r2),r1);
botCDev = -StDev(Chaikin(r1,r2),r1);
Plot( Cha, "Chaikin", ParamColor( "Color",  colorCycle ), ParamStyle("Style")  );
Plot( topCDev, "topDev", ParamColor( "Color",  colorCycle ), ParamStyle("Style")  );
Plot( botCDev, "bottomDev", ParamColor( "Color",  colorCycle ), ParamStyle("Style")  );
Buy=Cross(Cha, botCDev);
Sell=Cross(topCDev, Cha);
Buy = ExRem( Buy, Sell );
Sell = ExRem( Sell, Buy ); 
shape=Buy*shapeUpArrow + Sell*shapeDownArrow;
PlotShapes(shape,IIf(Buy,colorBlue,colorRed),0,IIf(Buy,Low,High));
Plot( 0, _DEFAULT_NAME(), ParamColor( "Color",  colorCycle ), ParamStyle("Style")  );
_SECTION_END();

0 comments

Leave Comment

Please login here to leave a comment.

Back