WebCab Technical Analysis Web Services for Delphi v1.1

MarketStrength.MarketFacilitationIndexOverPeriod Method 

Market Facilitation Index was developed by Dr. Bill Williams and take into consideration the price and volume.

public double[] MarketFacilitationIndexOverPeriod(
   double[] high,
   double[] low,
   double[] volume
);

Parameters

high
An array of length equal to the number of periods considered in the indicator evaluation where the first element is the high in the last trading period, the second term is the high in the previous period and so on.
low
An array of length equal to the number of periods considered in the indicator evaluation where the first element is the low in the last trading period, the second term is the low in the previous period and so on.
volume
An array of length equal to the number of periods considered in the indicator evaluation where the first element is the volume in the last trading period, the second term is the volume in the previous trading period and so on.

Return Value

An array is returned where the first term corresponds to the MFI of the last trading period, the second term gives the MFI on the previous trading period and so on.

Remarks

Evaluation

The formula for the calculation of MFI is:

MFI = (high - low)/volume,

where high is the highest traded price during the period, low is the lowest traded price during the period and, volume is the overall volume traded on that period.

Interpretation

There are four types of trading sessions called:

  1. Fakes - volume is low but MFI is rising
  2. Fades - both volume and MFI is down (the price might move in the opposite direction)
  3. Squats - the volume is up, MFI is down
  4. Greens - when the MFI and volume are up which represent a strong signal to follow the trend line

Exceptions

Exception TypeCondition
ArgumentExceptionThrown if any elements from the arrays high, low, volume are strictly negative, or if the length of these arrays are not equal.

See Also

MarketStrength Class | Indicators Namespace | MarketFacilitationIndex - evaluates the Market Facilitation Index (MFI) indicator for a single trading period.