Stock Portfolio Organizer
The ultimate porfolio management solution.
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
3 6 18 Crossover System for Amibroker (AFL)
This system works better on 30 Min, 45 Min, 1 Hour charts & may be use on daily chart. White up/down arrows are alerts to buy/Sell & Green/Red arrows are actual buy/sell indicator. Very useful in trend market.
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 | _SECTION_BEGIN ( "Background_Setting" ); SetChartBkGradientFill ( ParamColor ( "BgTop" , colorBlack ), ParamColor ( "BgBottom" , colorDarkGrey ), ParamColor ( "TitleBack" , colorLightGrey )); SetChartBkColor ( ParamColor ( "Outer Panel" , colorPaleBlue )); _SECTION_END (); _SECTION_BEGIN ( "EMA" ); Plot ( EMA ( Close ,3), "EMA3" , colorYellow , style= styleThick ); Plot ( EMA ( Close ,6), "EMA6" , colorGreen , style= styleThick ); Plot ( EMA ( Close ,18), "EMA18" , colorRed , style= styleThick ); _SECTION_END (); Buy = Cross ( EMA ( Close ,3), EMA ( Close ,6)); Sell = Cross ( EMA ( Close ,6), EMA ( Close ,3)); Short = Sell ; Cover = Buy ; shape = Buy * shapeSmallUpTriangle + Sell * shapeSmallDownTriangle ; PlotShapes ( shape, IIf ( Buy , colorWhite , colorWhite ), 0, IIf ( Buy , Low , High ) ); Buy = Cross ( EMA ( Close ,6), EMA ( Close ,18)); Sell = Cross ( EMA ( Close ,18), EMA ( Close ,6)); Short = Sell ; Cover = Buy ; shape = Buy * shapeSmallUpTriangle + Sell * shapeSmallDownTriangle ; PlotShapes ( shape, IIf ( Buy , colorGreen , colorRed ), 0, IIf ( Buy , Low , High ) ); _SECTION_BEGIN ( "Basic Chart" ); Plot ( Close , "Price" , colorWhite , styleCandle ); SetChartOptions (0, chartShowArrows | chartShowDates ); _SECTION_END (); |
0 comments
Leave Comment
Please login here to leave a comment.
Back