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 ....
64 channel for Amibroker (AFL)
Rating:
2 / 5 (Votes 4)
Tags:
amibroker, channel
64 channel
Screenshots
Similar Indicators / Formulas
ATR Breakouts
Submitted
by kamalcharan almost 11 years ago
Wilson Relative Price Channel
Submitted
by kaiji over 15 years ago
Donchian Channels
Submitted
by rythm.arora over 14 years ago
Adaptive Price Channel
Submitted
by claux about 14 years ago
Pairs Ratio Plot
Submitted
by aucn almost 15 years ago
Square of Nine Roadmap Charts
Submitted
by kaiji about 15 years ago
Indicator / Formula
Copy & Paste Friendly
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 | _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=.0003; 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 (); |
0 comments
Leave Comment
Please login here to leave a comment.
Back