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

Squeeze Exploration for Amibroker (AFL)

Rating:
5 / 5 (Votes 1)
Tags:
amibroker, exploration, bands

Hi,

I modified the code for Squeeze and made it appear as Ribbon and also made exploration possible. Can be used to find the stocks having squeeze in real time.

Regards,
Sreenath

Similar Indicators / Formulas

Acceleration Bands
Submitted by bobaloo over 11 years ago
Deel - Average Dollar Price Volatility
Submitted by kaiji about 14 years ago
Scan No of Days Increase
Submitted by vantatrung over 13 years ago
Nw High New Low
Submitted by Ahmadbrebes over 13 years ago

Indicator / Formula

Copy & Paste Friendly
_SECTION_BEGIN("Squeeze");

BBLength= 10;
StdDv= 2;
K1= 5;
K2= 10;
Mul= 1.25;
Mi=EMA(C, K1);
Kel= ATR(K2)*Mul;
UB= Mi + Kel;
LB= Mi - Kel;
UpB=BBandTop(H,BBLength,StdDv);
Mdb=MA(C, BBLength);
DnB=BBandBot(L,BBLength,StdDv);

//Plot (Mi,"",3,1);
//Plot (UB,"",3,1);
//Plot (LB,"",3,1);
//Plot(UpB,"",12,1);
//Plot(MdB,"",12,1);
//Plot(DnB,"",12,1);



Plot( 2, "",IIf(UpB < UB AND DnB > LB ,colorBlue,colorRed),styleOwnScale|styleArea|styleNoLabel, -2.5, 100 );


Squeeze = UpB < UB AND DnB > LB ;

Filter = Squeeze ;

AddColumn(Close,"close");
_SECTION_END();

0 comments

Leave Comment

Please login here to leave a comment.

Back