Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
market thermometer for Amibroker (AFL)
You need to use this indicator below your price graph for good results.
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 | _SECTION_BEGIN ( "Market Thermometer" ); H1 = Ref ( H , -1); L1 = Ref ( L , -1); T = IIf ( H <H1 AND L >L1, 0, IIf ( H -H1>L1- L , H -H1, L1- L )); Val1 = H -H1; Val2 = L1- L ; Val = IIf (Val1>Val2, Val1, Val2) ; Avgval = Median (Val, 22); color= IIf (Val < Avgval, colorBlue , IIf (Val >= Avgval AND Val < Avgval * 3, colorViolet , IIf (Val > Avgval * 3, colorOrange , colorViolet ))); Plot (T, _DEFAULT_NAME (), color, styleHistogram | styleThick ); P = ParamField ( "Price field" ,-1); Periods = Param ( "Periods" , 22, 2, 200, 1, 10 ); Plot ( EMA ( P, Periods ), "EMA 22" , colorGreen , styleThick ); _SECTION_END (); |
1 comments
Leave Comment
Please login here to leave a comment.
Back
Hai, Good Color, but how to use ?, each color indicate ?? pls