
A estratégia é um sistema de negociação integrado que combina o indicador de volume de movimento e o indicador de fluxo de caixa, com um processamento suave do indicador de volume de movimento através de uma média móvel tripla do índice (EMA) e reduz efetivamente o ruído do mercado. A estratégia usa a taxa de variação (ROC) para calcular o volume de movimento original e, em combinação com o indicador de fluxo de moeda (MFI) para confirmar o sinal de negociação, que pode ser aplicado a transações em vários períodos de tempo.
Os princípios centrais da estratégia são baseados em dois principais indicadores técnicos: o indicador de volume e o indicador de fluxo de caixa (MFI). Primeiro, o ROC calcula o volume original, e depois, através do tratamento de suavização do EMA triplo, obtém uma linha de sinal de volume mais estável. A produção de sinais de negociação precisa atender simultaneamente ao volume e ao MFI.
Trata-se de uma estratégia de negociação integrada concebida de forma racional e lógica. A combinação de indicadores de volume e fluxo de caixa, bem como o tratamento suave do triplo EMA, equilibra efetivamente a atualidade e a confiabilidade do sinal. A estratégia possui uma forte praticidade e escalabilidade, adequada para otimização adicional e aplicações em campo.
/*backtest
start: 2024-02-22 00:00:00
end: 2025-02-19 08:00:00
period: 2d
basePeriod: 2d
exchanges: [{"eid":"Binance","currency":"SOL_USDT"}]
*/
//@version=5
strategy("Momentum & Money Flow Strategy with Triple EMA Smoothing", overlay=true, initial_capital=100000, default_qty_type=strategy.percent_of_equity, default_qty_value=10)
// Input parameters
momentumPeriod = input.int(7, title="Momentum Period", minval=1)
smoothingPeriod = input.int(3, title="Momentum Smoothing Period", minval=1)
mfiPeriod = input.int(14, title="MFI Period", minval=1)
mfiMiddleLevel = input.int(50, title="MFI Middle Level", minval=1, maxval=100)
mfiOverbought = input.int(80, title="MFI Overbought Level", minval=1, maxval=100)
mfiOversold = input.int(20, title="MFI Oversold Level", minval=1, maxval=100)
// Calculate raw momentum oscillator using rate-of-change (ROC)
rawMomentum = ta.roc(close, momentumPeriod)
// Apply triple EMA smoothing for a much smoother momentum line
smoothedMomentum = ta.ema(ta.ema(ta.ema(rawMomentum, smoothingPeriod), smoothingPeriod), smoothingPeriod)
// Calculate Money Flow Index (MFI) using the typical price (hlc3)
typicalPrice = hlc3
mfiValue = ta.mfi(typicalPrice, mfiPeriod)
// Define conditions for filtering signals based on smoothed momentum and MFI
longCondition = (smoothedMomentum > 0) and (mfiValue > mfiMiddleLevel)
shortCondition = (smoothedMomentum < 0) and (mfiValue < mfiMiddleLevel)
// Define exit conditions for capturing turning points
exitLongCondition = (smoothedMomentum < 0) and (mfiValue < mfiOversold)
exitShortCondition = (smoothedMomentum > 0) and (mfiValue > mfiOverbought)
// Execute entries based on defined conditions
if (longCondition and strategy.position_size <= 0)
strategy.entry("Long", strategy.long)
if (shortCondition and strategy.position_size >= 0)
strategy.entry("Short", strategy.short)
// Exit positions based on turning point conditions
if (strategy.position_size > 0 and exitLongCondition)
strategy.close("Long")
if (strategy.position_size < 0 and exitShortCondition)
strategy.close("Short")
// Plot the triple EMA smoothed momentum oscillator and MFI for visual reference
plot(smoothedMomentum, title="Smoothed Momentum (Triple EMA ROC)", color=color.blue)
hline(0, color=color.gray)
plot(mfiValue, title="Money Flow Index (MFI)", color=color.orange)
hline(mfiMiddleLevel, color=color.green, linestyle=hline.style_dotted, title="MFI Middle Level")