Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Heikin-Ashi, PAC for Amibroker (AFL)
Heikin-Ashi System using crossover between moving average and heikin price.
Screenshots
Similar Indicators / Formulas
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | _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