Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
MA() vs Close (BillCapital 2014).afl for Amibroker (AFL)
You can see trending, pointing BUY SELL with all periods you like!
Screenshots
Similar Indicators / Formulas
Indicator / Formula
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | _SECTION_BEGIN ( "MA vs C" ); //P = ParamField("Price field",-1); SetGradientFill( colorGreen /*top*/ , colorRed /*bottom*/ , 0 /*baseline level*/ , GetChartBkColor () /*baseline color */ ); Periods = Param ( "Periods" , 20, 2, 300, 1, 10 ); Plot ( ( C / MA ( C , Periods )-1)*100, _DEFAULT_NAME (), colorLightOrange , styleLine | styleGradient, Null , Null , 0, -1 ); //Plot( ROC( C, Periods), "ROC", colorLightOrange, styleLine | styleGradient, Null, Null, 0, -1 ); Plot (0, "Truc 0" , colorDarkBlue , ParamStyle ( "Style" )); _SECTION_END (); _SECTION_BEGIN ( "MA1" ); P = ParamField ( "Price field" ,-1); Periods = Param ( "Periods" , 15, 2, 300, 1, 10 ); Plot ( MA ( P, Periods ), _DEFAULT_NAME (), colorBrightGreen , ParamStyle ( "Style" ) ); _SECTION_END (); |
1 comments
Leave Comment
Please login here to leave a comment.
Back
Good