Stock Portfolio Organizer
The ultimate porfolio management solution.
Shares, Margin, CFD's, Futures and Forex
EOD and Realtime
Dividends and Trust Distributions
And Much More ....
WiseTrader Toolbox
#1 Selling Amibroker Plugin featuring:
Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
shankar sharma for Amibroker (AFL)
Copy & Paste Friendly
Back
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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | _SECTION_BEGIN ( "Price" ); SetChartOptions (0, chartShowArrows | chartShowDates ); _N (Title = StrFormat ( "{{NAME}} - {{INTERVAL}} {{DATE}} Open %g, Hi %g, Lo %g, Close %g (%.1f%%) {{VALUES}}" , O , H , L , C , SelectedValue ( ROC ( C , 1 ) ) )); Plot ( C , "Close" , ParamColor ( "Color" , colorDefault ), styleNoTitle | ParamStyle ( "Style" ) | GetPriceStyle () ); _SECTION_END (); _SECTION_BEGIN ( "New formula" ); RibbonThickness = Param ( "Ribbon Thickness" , 3, 1, 15, 0.1); "" ; function GfxConvertBarToPixelX(Bar) { lvb = Status ( "lastvisiblebar" ); fvb = Status ( "firstvisiblebar" ); pxchartleft = Status ( "pxchartleft" ); pxchartwidth = Status ( "pxchartwidth" ); return pxchartleft + Bar * pxchartwidth / (Lvb - fvb + 1); } procedure MultiRibbon(RibbonColor, Position, Label) { LineColor = colorLightGrey ; Position = RibbonThickness * Position; x2 = Status ( "pxchartright" ); y2 = Status ( "pxchartbottom" ); RibbonColor = IIf (GfxConvertBarToPixelX( BarIndex ()- Status ( "firstvisiblebarindex" )) > y2/1.5 * (RibbonThickness/100) * 18 , RibbonColor, colorBlack ); Plot (0, "" , LineColor, styleOwnScale | styleNoLabel , 0, 100); Plot (Position, "" , LineColor, styleOwnScale | styleNoLabel , 0, 100); Plot (Position, "" , RibbonColor, styleArea | styleOwnScale | styleNoLabel , 0, 100); } //Ribbon of Moving Averages Cross FastAve = Param ( "Fast Moving Average:" , 7, 1, 100, 1 ); SlowAve = Param ( "Slow Moving Average:" , 15, 1, 100, 1 ); FA= DEMA ( C , FastAve); SA= DEMA ( C , SlowAve); r1= IIf ( FA>SA , colorLime , colorRed ); //Ribbon of tsl SetChartOptions (0, chartShowArrows | chartShowDates ); no= Param ( "Swing" , 1, 0, 55 ); res= HHV ( H ,no); sup= LLV ( L ,no); avd= IIf ( C > Ref (res,-1),1, IIf ( C < Ref (sup,-1),-1,0)); avn= ValueWhen (avd!=0,avd,1); tsl= IIf (avn==1,sup,res); r2= IIf ( C >tsl, colorGreen , colorRed ); MultiRibbon(r1, 1, "Ave-Cross" ); MultiRibbon(r2, 2, "TSL" ); _SECTION_END (); |