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 ....
dd 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 | GfxSetOverlayMode (1); GfxSetCoordsMode(1); GraphXSpace = 4; _SECTION_BEGIN ( "PRICE + VOLUME CIRCLED" ); bi = BarIndex (); start = FirstVisibleValue(bi); end = LastVisibleValue(bi); HVol = HighestVisibleValue( V ); for (i=start; i<=end; i++) { Color = IIf ( C [i] > O [i], colorseaGreen , colorOrange ); GfxSelectPen (Color); GfxSelectSolidBrush (Color); dot = ( H [i] + L [i])/2; bodyup = Max ( O [i], C [i]); bodydn = Min ( O [i], C [i]); GfxCircle (i, LastValue ( Close ), Max ((10 * V [i]/HVol), 1)); } ChColor = IIf ( C > O , colorGreen , colorRed ); SetBarFillColor (ChColor); Plot ( C , "" , colordefault , styleCandle | styleThick | styleNoLabel ); Plot ( LastValue ( Close ), "Close" , lastvalue (ChColor), styleLine , Null , Null , 14); _SECTION_END (); _SECTION_BEGIN ( "SCALED VOLUME TREND COLORED" ); Upgreen = C > Ref ( C , -1 ) AND C > O ; DownRed = C <= Ref ( C , -1 ) AND C < O ; UpPurple = C > Ref ( C , -1 ) AND C < O ; DownBlue = C <= Ref ( C , -1 ) AND C > O ; VColor = IIf (UpGreen, colorGreen , IIf (DownRed, colorRed , IIf (UpPurple, colorPlum , colorBlue ))); VStyle = styleHistogram | styleOwnScale | styleThick ; VHeight = Param ( "Volume Scale Factor" , 8, 1, 20, 1); Plot ( V , "Volume" , VColor, VStyle, VHeight); _SECTION_END (); |