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

Find Stocks Making New Highs for Amibroker (AFL)

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

HERE is the filter to find stocks where the price and volume are making new highs in the past 50 days. It can be run as a scan or exploration.

Indicator / Formula

Copy & Paste Friendly
Gialonnhat7to15 = HHV(Ref(C, -1), 50);
Gialonnhat15 = HHV (Ref (C, -1),  50);

DK1 = Gialonnhat7to15 >= Gialonnhat15;

DK2 = C > Gialonnhat7to15;

Khoiluonglonnhat15 = HHV (Ref (V, -1), 50);

DK3 = V > Khoiluonglonnhat15;

Giabenhat15 = LLV (Ref (C, -1), 50);

DK4 = (Giabenhat15 <= C*0.95) AND (GiaBeNhat15 >= C*0.9);

GiaBeNhatThang = LLV (Ref (C,-15), 50);

DK5 = (GiaBeNhatThang <= C*0.9) AND (GiaBenhatThang >= C*0.8);

DK6 = V > 100000;

Buy = DK1 AND DK2 AND DK3 AND DK4 AND DK5 AND DK6;

Filter = Buy; 

2 comments

1. samhuda

could you please translate in english?

Comment hidden - Show

Leave Comment

Please login here to leave a comment.

Back