MFI
— Money Flow Index Trading Series
The MFI
trading series represents the Money Flow Index, a momentum indicator that uses price and volume to identify overbought or oversold conditions.
It is built upon the Money Flow Index indicator implementation from the indicators module.
Parameters
MFI(
ticker: str,
length: int = 14
)
ticker
(str
): Asset ticker symbol (e.g.,"AAPL"
).length
(int
): Period for MFI calculation. Default is 14.
Description
- MFI readings above 80 typically indicate overbought conditions.
- MFI readings below 20 typically indicate oversold conditions.
- Combines price and volume for momentum analysis.
Example Usage
MFI(
ticker="AAPL",
length=14
)