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 ....
Volume Zone for Amibroker (AFL)
Rating:
3 / 5 (Votes 4)
Tags:
oscillator, trading system, amibroker, exploration
Assist in the search for the change in quantities
Similar Indicators / Formulas
SmoothRSI
Submitted
by paragcpatil almost 14 years ago
Cole by Marek Chlopek
Submitted
by mamunbaf9117 almost 14 years ago
Graphic modify Bull & Bear Volume
Submitted
by bobylam about 14 years ago
Weissman RSI & MA System
Submitted
by jarjis_sk over 14 years ago
Graphic modify Gator of Bill William
Submitted
by bobylam about 14 years ago
NIFTY HUNTER
Submitted
by jaipal7786 over 11 years ago
Indicator / Formula
Copy & Paste Friendly
_SECTION_BEGIN("Volume Zone Oscillator"); //Volume Zone Oscillator C1=C; V1=V; period=14; R= IIf (C1>Ref(C1,-1), V1,-V1); VP= EMA (R, period); TV=EMA (V, period); VZO= 100*(VP/TV); Plot(Vzo,"",7,4); Plot(60,"",3,1); Plot(40,"",3,1); Plot(0,"",3,1); Plot(-60,"",3,1); Plot(-40,"",3,1); PlotOHLC(Null,60,40,Null,"",colorDarkRed,styleCloud); PlotOHLC(Null,-60,-40,Null,"",colorDarkGreen,styleCloud); ///////////////////////////////buy/sell/////////////////////// Buy=Cross(VZO,-40);Sell=Cross(40,VZO); /////////////////////////shapes /////////////////////////////// shape = Buy * shapeUpTriangle + Sell * shapeDownTriangle; PlotShapes( shape, IIf( Buy, colorBrightGreen, colorRed ),0, IIf( Buy,VZO,VZO) ); /////////////////////////exploration /////////////////////////////// Filter=Buy OR Sell; AddColumn( IIf(Buy,1,IIf(Sell,-1,Null)) ,"B/S",1.0,colorWhite,IIf(Buy,colorGreen,IIf(Sell,colorRed,Null)),60); ///////////////////////////////////////////////////////////////////// _SECTION_END();
1 comments
Leave Comment
Please login here to leave a comment.
Back
thanks for modification of Vol Zone Osilator by filling bands with color. the original code is as follows: