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 pattern scan for Amibroker (AFL)

Rating:
5 / 5 (Votes 1)
Tags:
amibroker, scan

Scan for HA turn around. I like to find stocks that have had several down days (10 or more) and are followed by a few up day (2 or more).

Similar Indicators / Formulas

lowest price history
Submitted by mohad almost 13 years ago
Amibroker Analysis Divergence
Submitted by NEERAJAMBILWADE over 10 years ago
30 week high indicator
Submitted by ck1250 about 12 years ago
Pentuple Exponential Moving Average
Submitted by extremist about 11 years ago
Williams Alligator System
Submitted by durgesh1712 over 12 years ago
*Level Breakout system*
Submitted by Tinych over 12 years ago

Indicator / Formula

Copy & Paste Friendly
//-- heikin ashi
// set following params as desired
min_price=5;
up_days=2;
Down_days=10;
//
HaClose = (O+H+L+C)/4; 
HaOpen = AMA( Ref( HaClose, -1 ), 0.3 ); 
HaHigh = Max( H, Max( HaClose, HaOpen ) ); 
HaLow = Min( L, Min( HaClose, HaOpen ) ); 
barcolor = IIf(HaClose >= HaOpen,colorGreen,colorRed);
PlotOHLC( HaOpen, HaHigh, HaLow, HaClose, "", barcolor, styleCandle ); 
Buy = IIf(IIf(barcolor == colorGreen AND C>=min_price AND
   BarsSince(barcolor==colorRed)<=up_days AND HaLow==HaOpen AND
   BarsSince(Ref(barcolor, -BarsSince(barcolor==colorRed)-1)==colorGreen)>=down_days,1,0),1,0);

0 comments

Leave Comment

Please login here to leave a comment.

Back