Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
KD High Low Indicator for Amibroker (AFL)
A rising curve _High
A decline curve _Low
When the value of K> 80, the rising curve of _High start recording a new high-priced
When K <20, the decline curve _Low start recording a new low
Screenshots
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 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | Area = 100; periods = Param ( "Periods" , 15, 1, 200, 1 ); Ksmooth = Param ( "%K avg" , 3, 1, 200, 1 ); K= StochK ( periods , Ksmooth); function pHigh( Area ) { HHVtemp = HHV ( High , Area); result = HHVTemp; return result; } function pLow( Area ) { LLVtemp = LLV ( Low , Area ); result = LLVtemp; return result; } function NewpHigh( Area ) { ph = pHigh( Area ); ph = IIf ( K > 80 , pHigh( Area ), Ref ( Nz ( ph ), -1 )); return ph; } function NewpLow( Area ) { pl = pLow( Area ); pl = IIf ( K < 20 , pLow( Area ), Ref ( Nz ( pl ), -1 )); return pl; } showPL=NewpLow( 100 ); showPH=NewpHigh( 100 ); Plot ( showPL, "DL" , colorRed ); Plot ( showPH, "DH" , colorGreen ); |
0 comments
Leave Comment
Please login here to leave a comment.
Back