This is a trading item or a component that was created using QuantShare by one of our members.
This item can be downloaded and used by QuantShare Trading Software.
Trading items are of different types. There are data downloaders, trading indicators, trading systems, watchlists, composites/indices...
You can use this item and hundreds of others for free by downloading QuantShare.
Top Reasons Why You Should Use QuantShare:
Works with US and international markets (stock, forex, options, futures, ETF...)
Offers you the tools that will help you become a profitable trader
Allows you to implement any trading ideas
Exchange items and ideas with other QuantShare users
Our support team is very responsive and will answer any of your questions
We will implement any features you suggest
Very low price and much more features than the majority of other trading software
The NORMDIST function is similar to the one available in Excel. Given a set of parameters, this statistical function calculates the normal probability density function or the cumulative normal distribution function.
Here are the different parameters of the NORMDIST function: X: The function will return the probability of the value "x" occurring. Mean: The arithmetic mean of the current distribution Standard deviation: The standard deviation of the distribution Cumulative: Determines whether to return a cumulative normal distribution function (value set to 1) or a normal probability density function (value set to 0).
Example 1:
If we assume that the one-bar rate of return over past days is normally distributed then the next formula will return the probability of the current day one-bar rate of return occurring.
p1 = perf(close, 1);
a = NORMDIST(p1,sma(p1, 200),stddev(p1, 200),0);
If on bar N, the function returns 12 and on that bar the rate of return is -0.2%, then the probability of having a rate of return of -0.2% is 12%.
Example 2:
By specifying 1 in the "Cumulative" parameter, we instruct the function to return the cumulative normal distribution function.