Watch this video for more MetaStock tips and tricks.
The Peak function allows you to refer to a peak (i.e. distinct highs) in any selected `data array’. Technically speaking, a peak is the highest point reached between a short term up trend and a short term down trend. The way this MetaStock function identifies a peak is based on the selected data array moving down a set percentage from a high. This percentage is set by the user. Additionally, by using the `peak’ function, not only can you refer to the most recent peak but also to any peak before that.
SYNTAX Peak(Nth, Data Array, %Minimum Change)
Nth _ The number of the peak you wish to refer to. For example, N = 1 would return the value of the most recent peak in the data array, and N = 2 would return the value of the peak before that one.
Data Array _ The data array searched to identify where the peak occurred; this is normally the closing price.
% Minimum Change _ The minimum percentage required for a data array to move away from a high before it is classed as a peak.
EXAMPLE
The following formula returns the value of the closing price at the most recent point where the closing price has fallen 3% from its high.
Peak(1,C,3)
In the formula above:
Nth = 1
Data Array = C
% Minimum Change = 3
APPLICATION
A more useful application of this example could be:
C> Peak(1,C,3)
This MetaStock Pro formula specifies that the closing price must be greater than the value of the closing price on the most recent occasion that it moved down 3% from the high. This formula can be part of a useful entry signal since it identifies those stocks showing signs of commencing or continuing a medium term up trend.
Another useful application is to use the peak function to identify those securities achieving higher peaks and higher troughs. This could be coded using the following formula:
Peak(1,C,3)> Peak(2,C,3)
Related Posts - Day Trading Robot Helps Penny-Stock Investors Day Trading Robot claims to reward its users with hundreds or even thousands of dollars per day in profits in...
- Understand the Pros and Cons of Day Trading Looking around at the stock market it is rather obvious that it is a place full of anxiety, stress and...
Related Websites - Market Indicators For Successful Forex Trading If you are considering trying to make some money with the Forex trading market, for the beginning it is needed...
- Forex Brokers Exposed In the past, the forex market was only open to the wealthy individuals and institutional investors. The emergence of sophisticated...








Comments