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

30 week high indicator for Amibroker (AFL)
ck1250
about 12 years ago
Amibroker (AFL)

Rating:
3 / 5 (Votes 2)
Tags:
amibroker, composite, scan

Just as the advance decline line gives an indication of the overall
strength of the market, so does the number or stocks makeing new 30 week
high’s. Refer Weinstein’s “The Secret of Profiting in Bull and Bear
Markets”.

Similar Indicators / Formulas

lowest price history
Submitted by mohad almost 13 years ago
Percentage Stocks above 200 MA for Amibroker
Submitted by zebina almost 14 years ago
Amibroker Analysis Divergence
Submitted by NEERAJAMBILWADE over 10 years ago
Heikin Ashi pattern scan
Submitted by jlgrover over 13 years ago
Swing chart
Submitted by richarddu about 13 years ago
Number of stocks above/under MA(9)
Submitted by rongreu over 13 years ago

Indicator / Formula

Copy & Paste Friendly
/* Calculate indices of new 30 week high's vs new 30 week lows */
/* Set the filter so as to scan a given market */
/* Set Period to Weekly */
/* The new indexes will be found in Group 253 */

H1 = Close > Ref(HHV(Close,30),-1);
H2 = High > Ref(HHV(High,30),-1);

L1 = Close < Ref(LLV(Close,30),-1);
L2 = Low < Ref(LLV(Low,30),-1);

H_L_Array1 = H1 - L1;
H_L_Array2 = H2 - L2;

// Do not generate signals

Buy = 0; 
Filter = 0;

AddToComposite( H_L_Array1, "~Idx30Wk_Close_HL", "X", 19);
AddToComposite( H_L_Array2, "~Idx30Wk_Abs_HL", "X", 19);

2 comments

1. hotaro3

How we can use it?
After paste nothing happend

2. ck1250

You can find it at the end of symbol…

Leave Comment

Please login here to leave a comment.

Back