Chart for .NET / User's Guide / Data Manipulation / Functions / Financial Functions / Price Indicators / Median Price

Median Price
 Syntax
MEDIANPRICE(high; low)
 Arguments
The 'high' and 'low' arguments must be arrays.
 Result
The result is an array.
 Description

Median Price is the mid-point of the trading range. It can be used as a filter for trend indicators. The median price for each day is calculated using the following formula:


    MP = (high + low) / 2

 Related Examples
Windows Forms: All Examples\Data Manipulation\Functions\Financial\Price Indicators