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

Heikin-Ashi, PAC for Amibroker (AFL)
Mithun
over 13 years ago
Amibroker (AFL)

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

Heikin-Ashi System using crossover between moving average and heikin price.

Screenshots

Similar Indicators / Formulas

weighted moving average scan
Submitted by naninn about 13 years ago
Kase Peak Osc. V2 batu
Submitted by batu1453 over 9 years ago
Kase CD V2batu
Submitted by batu1453 over 9 years ago
Ichimoku
Submitted by prashantrdx over 9 years ago
EMA System Ribbon
Submitted by yo123 about 13 years ago
Three-Bar Inside Bar Pattern
Submitted by EliStern about 13 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("PAC - ZTEMA");
SetChartOptions(0,chartShowDates|chartShowArrows|chartLogarithmic|chartWrapTitle);
HaClose = (O+H+L+C)/4;
HaOpen = AMA( Ref( HaClose, -1 ), 0.5 );
HaHigh = Max( H, Max( HaClose, HaOpen ) );
HaLow = Min( L, Min( HaClose, HaOpen ) );
PlotOHLC( HaOpen, HaHigh, HaLow, HaClose, "Modified " + Name(), colorRose, styleCandle );

TC = MA( High, 5 );
BC = MA( Low, 5 );

Plot(tc, "", colorYellow);
Plot(bc, "", colorYellow);

a = haClose > TC;
b = haClose < BC;

state=IIf(BarsSince(a)<BarsSince(b),1,0);

Buy = Cross(a,b);
Sell = Cross(b,a);

PlotShapes( IIf(Buy, shapeUpArrow,0) , colorLime,0,HaLow,-20);
PlotShapes( IIf(Sell, shapeDownArrow,0) , colorOrange,0,HaHigh,-20);
GraphZOrder = 1;
_SECTION_END();

0 comments

Leave Comment

Please login here to leave a comment.

Back