Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Swing chart for Amibroker (AFL)
Formula name: 30 Week Hi Indicator – Calculate
Author/Uploader: Geoff Mulhall
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 | /* 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); |
0 comments
Leave Comment
Please login here to leave a comment.
Back