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 ....
64chanel1 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 | _SECTION_BEGIN ( "Price" ); SetChartOptions (0, chartShowArrows | chartShowDates ); Plot ( C , "Close" , IIf ( MACD (3,34) > Signal (3,34,9), colorGreen , colorRed ), styleNoTitle | ParamStyle ( "Style" ) | GetPriceStyle () ); _SECTION_END (); _SECTION_BEGIN ( "64 channel" ); _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", Null ), styleNoTitle | styleCandle ); P = ParamField ( "Field" ); Type = ParamList ( "Type" , "Simple,Exponential,Double Exponential,Tripple Exponential,Wilders,Weighted" ); //Periods = Param("Periods", 30, 2, 300 ); //Displacement = Param("Displacement", 4, -50, 50 ); //m = 0; //if( Type == "Simple" ) A = MA ( H ,6 ); B = MA ( L ,6 ); x= Ref (A,-4); y= Ref (B,-4); D=.00005; xb=x-x*D; yt=y+y*D; //PlotOHLC( 0,xt,xb,xb ,"",ColorRGB(200,0,0), styleCloud); //PlotOHLC( 0,yt,yb,yb ,"",ColorRGB(0,200,0), styleCloud); PlotOHLC ( 0,x,xb,xb , "" , colorGold , styleCloud ); PlotOHLC ( 0,yt,y,y , "" , colorGold , styleCloud ); PlotOHLC ( 0,x,y,y , "" , ColorRGB (50,50,10), styleCloud ); _SECTION_END (); |