TradingView
sydneynet
25 juin 2021 02:53

MFI Waves w Levels 

Description

This is a Money Flow Index oscillating wave indicator that also has preset levels that can be adjusted by the user in the settings. The levels indicate how deep or high the waves are moving to

i use this indicator when scalping and on all time frame charts, i like to watch for certain patterns forming either at the lower levels for longs or at the higher levels for shorts.

This indicator is smoothed for Heikin Ashi candles, and does RSI in the calculation. MFI uses volume and price change.

Notes de version

Have added a level counter so you can always see what the level of the MFI is at. option to turn this off and turn the Level lines back on as well

Notes de version

Added Gradient option to waves and counter, to use uncheck Solid and check Gradient in Input Settings

Notes de version

fixed color direction

Notes de version

Added a baseline cross signal, this can be toggled On/Off
Added alerts for a baseline cross
Commentaires
k1-trd
very good indicator!
mentalBeer14353
why did you define a MFI function if you don't need it? In this formula only the SRC is smoothed.
This function i mean:
mfi(PriceSrc, PeriodLength) =>
mfiPos=sum(volume*(change(PriceSrc)<=0?0:PriceSrc),PeriodLength)
mfiNeg=sum(volume*(change(PriceSrc)>=0?0:PriceSrc),PeriodLength)
rsi(mfiPos,mfiNeg)
Plus