This strategy uses the Market Facilitation Index (MFI) to judge the market’s trending condition and possibility of trend reversal. It generates trading signals by calculating the relationship between price range and volume to evaluate the efficiency of price movement.
Calculate MFI, formula: (Highest - Lowest) / Volume * 10000
Set buy and sell thresholds, such as buy when MFI > 1 and sell when MFI < 0.8
Go long when MFI crosses above buy threshold, go short when crossing below sell threshold
Color code bars based on signals for visual representation
Option to reverse signal directions
Strong ability to evaluate market trending and price movement efficiency
Simple parameter setup, easy to determine thresholds
Clear trading signals, easy to interpret and execute
Visual bar colors intuitively display market conditions
Flexibility to go long or short as needed
Unable to determine trend strength, risks insufficient profit
Cannot differentiate normal fluctuations or real reversals
Prone to false signals from sudden events
Has some lag, may miss best entry points
No stop loss mechanism, unable to control single loss
Test different parameter threshold values
Add volume-price indicators for confirmation
Incorporate moving averages to determine trend direction
Establish stop loss strategies for risk control
Define position sizing rules to adjust with markets
Test performance in live markets across different instruments and timeframes
This strategy uses MFI to judge market trending conditions and provide simple trade signals. Further improvements in parameter optimization, stop losses etc. are needed for strict risk control. But the logic is clear and feasible to serve as part of a trend following strategy, thus having practical value.
/*backtest start: 2023-08-19 00:00:00 end: 2023-09-18 00:00:00 period: 1h basePeriod: 15m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=2 //////////////////////////////////////////////////////////// // Copyright by HPotter v1.0 12/09/2018 // The Market Facilitation Index is an indicator that relates price range to // volume and measures the efficency of price movement. Use the indicator to // determine if the market is trending. If the Market Facilitation Index increased, // then the market is facilitating trade and is more efficient, implying that the // market is trending. If the Market Facilitation Index decreased, then the market // is becoming less efficient, which may indicate a trading range is developing that // may be a trend reversal. // // You can change long to short in the Input Settings // WARNING: // - For purpose educate only // - This script to change bars colors. //////////////////////////////////////////////////////////// strategy(title="Market Facilitation Index (MFI) Backtest", shorttitle="MFI") SellZone = input(6.2, minval=0.01, step = 0.01) BuyZone = input(1, minval=0.01, step = 0.01) reverse = input(false, title="Trade reverse") hline(BuyZone, color=green, linestyle=line) hline(SellZone, color=red, linestyle=line) xmyVol = volume xmyhigh = high xmylow = low nRes = (xmyhigh - xmylow) / xmyVol * 10000 pos = iff(nRes > BuyZone, 1, iff(nRes < SellZone, -1, nz(pos[1], 0))) possig = iff(reverse and pos == 1, -1, iff(reverse and pos == -1, 1, pos)) if (possig == 1) strategy.entry("Long", strategy.long) if (possig == -1) strategy.entry("Short", strategy.short) barcolor(possig == -1 ? red: possig == 1 ? green : blue ) plot(nRes, color=green, title="MFI", style = histogram)