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 ....
ROC - Price change for Amibroker (AFL)
Rating:
3 / 5 (Votes 3)
Tags:
amibroker, roc
Price changes after period days
Screenshots
Similar Indicators / Formulas
Kavach Of Karna v2
Submitted
by hbkwarez over 10 years ago
Advanced Elliott Waves
Submitted
by MarcosEn almost 13 years ago
3_6Day GuaiLiLv
Submitted
by motorfly almost 13 years ago
Williams Alligator System
Submitted
by durgesh1712 about 13 years ago
Interactive Linear Regression Channel
Submitted
by InternetWorm almost 13 years ago
*Level Breakout system*
Submitted
by Tinych about 13 years ago
Indicator / Formula
Copy & Paste Friendly
_SECTION_BEGIN("ROC"); P = ParamField( "Price field" ); periods = Param("Periods", 13, 1, 200, 1 ); Muaquamuc = Param("% Quamuc", 21, 1, 50, 1 ); Banquamuc = -Muaquamuc; Plot( r=ROC( P, periods),"Price changes after "+ Periods + " is "+ _DEFAULT_NAME() + "%", ParamColor( "Color", colorCycle ), ParamStyle("Style") ); PlotOHLC( r,r,0,r, "", IIf( r > 0, colorRed, colorGreen ), styleCloud | styleClipMinMax, Banquamuc, Muaquamuc ); Plot(21,"",colorRed,styleLine); Plot(0,"",colorBlack,styleLine); Plot(-21,"",colorBlue,styleLine); Buy = Cross(r,Banquamuc); Sell = Cross(Muaquamuc,r); Filter=Buy OR Sell; Buy=ExRem(Buy,Sell); Sell=ExRem(Sell,Buy); AddColumn(Close,"Close");AddColumn(Volume,"Volume");AddColumn(r,"ROC(13)");AddColumn(Buy,"Buy"); AddColumn(Sell,"sell"); _SECTION_END();
0 comments
Leave Comment
Please login here to leave a comment.
Back