Evaluates the Price Action Indicator (PAIN) of an asset for a given trading period.
[Visual Basic]
Overloads Public Shared Function PriceActionIndicator( _
ByVal sc As SeriesCollection _
) As SeriesCollection
[C#]
public static SeriesCollection PriceActionIndicator(
SeriesCollection sc
);
Exception | Description |
---|---|
Thrown if the High , Low , Open ,
Close are strictly negative. |
The PAIN indicator is evaluated by the following formula:
PAIN = ((Close-Open)+(Close-High)+(Close-Low))/2
where:
Close
is the period closing price, Open
is the period opening
price, High
is the highest traded price during the period and Low
is the lowest traded price during the period.When the close is near the low, the assets's price is under selling pressure. If the close is near the high the asset's price is price is under buying pressure
FinancialEngine Class | FinancialEngine Members | Overload List
2002 - 2005 Webavail Productions Inc. & Corporate Web Solutions Ltd.. All Rights Reserved.