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 ....
For Portfolio Manager Click Here

WiseTrader Toolbox

#1 Selling Amibroker Plugin featuring:

Advanced Adaptive Indicators
Advanced Pattern Exploration
Neural Networks
And Much More ....
Find Out More Here

Rate of Change Since a Specific Date for Metastock
star123
over 13 years ago
Metastock

Rating:
3 / 5 (Votes 2)
Tags:
oscillator, metastock

The following formula plots a percent rate of change between a specific date and today. The user is prompted for the specific date.This will only work in MetaStockā„¢ for Windows 95/NT version 6.5 (or higher) or in MetaStock Professional.

Construct the formula in the Indicator Builder, giving it the name shown below in bold. All the text after “FORMULA:” and before “END OF FORMULA” below should be placed in the Formula field in the Indicator Builder. Once the indicator has been created, you can drag it out of the Indicator Quicklist for placement in an inner-window of your chart

Similar Indicators / Formulas

Guppy MMA Divergence Oscillator
Submitted by kaiji over 14 years ago
Schaff Trend Cycle Oscillator
Submitted by kaiji over 13 years ago
3-10 Oscillator
Submitted by mayurs over 11 years ago
Relative Vigor Index
Submitted by vargasc1 almost 13 years ago
Bull and Bear Balance Indicator
Submitted by kaiji over 14 years ago

Indicator / Formula

Copy & Paste Friendly
Day1 := Input("Day",1,31,4);
Month1 := Input("Month",1,12,1);
Year1 := Input("Year",1900,2400,1999);

100 * (CLOSE - ValueWhen(1,DayOfMonth() = Day1 AND Month() = Month1 AND Year() = Year1, CLOSE))/ ValueWhen(1,DayOfMonth() = Day1 AND Month() = Month1 AND Year() = Year1,CLOSE) 

0 comments

Leave Comment

Please login here to leave a comment.

Back