
A estratégia é um sistema de negociação de alta frequência baseado em múltiplos indicadores técnicos, com um prazo de 5 minutos, combinado com um sistema linear, indicadores dinâmicos e análise de volume de transação. A estratégia adapta-se às flutuações do mercado de forma dinâmica, usando a confirmação de múltiplos sinais para aumentar a precisão e a confiabilidade das negociações. O núcleo da estratégia é capturar tendências de mercado de curto prazo por meio de uma combinação de indicadores técnicos multidimensionais, enquanto usa o stop loss dinâmico para controlar o risco.
A estratégia usa o sistema de dupla equilíbrio ((9 ciclo e 21 ciclo EMA) como principal ferramenta de determinação de tendências e confirma a dinâmica em combinação com o indicador RSI. Quando o preço está acima da dupla equilíbrio e o RSI está na faixa 40-65, o sistema procura oportunidades de negociação; Quando o preço está abaixo da dupla equilíbrio e o RSI está na faixa 35-60, o sistema procura oportunidades de negociação.
A estratégia utiliza uma combinação de múltiplos indicadores técnicos para construir um sistema de negociação relativamente completo. A vantagem da estratégia reside no seu mecanismo de confirmação de sinal multidimensional e no seu método de controle de risco dinâmico. Embora existam alguns riscos potenciais, a estratégia ainda tem um bom valor de aplicação com a otimização e o gerenciamento de riscos de parâmetros razoáveis.
/*backtest
start: 2019-12-23 08:00:00
end: 2024-11-27 00:00:00
period: 1d
basePeriod: 1d
exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}]
*/
//@version=5
strategy("Optimized Nifty MidCap Select Options 5-min Intraday Strategy", overlay=true)
// Parameters
emaShortPeriod = input.int(9, title="Short EMA")
emaLongPeriod = input.int(21, title="Long EMA")
rsiPeriod = input.int(14, title="RSI Period")
rsiOverbought = input.int(65, title="RSI Overbought Level") // More conservative than 70
rsiOversold = input.int(35, title="RSI Oversold Level") // More conservative than 30
atrLength = input.int(14, title="ATR Length")
atrMultiplier = input.float(1.5, title="ATR Multiplier")
volumeMultiplier = input.float(1.2, title="Volume Multiplier") // For confirming high-volume trades
// EMA Calculation
emaShort = ta.ema(close, emaShortPeriod)
emaLong = ta.ema(close, emaLongPeriod)
// RSI Calculation
rsiValue = ta.rsi(close, rsiPeriod)
// ATR Calculation
atrValue = ta.atr(atrLength)
// VWAP Calculation
vwapValue = ta.vwap(close)
// Volume Check
volumeCondition = volume > ta.sma(volume, 20) * volumeMultiplier
// Define long and short conditions
// Long Condition:
// Price above both EMAs, RSI not overbought, price above VWAP, and high volume
longCondition = (close > emaShort) and (close > emaLong) and (rsiValue > 40 and rsiValue < rsiOverbought) and (close > vwapValue) and volumeCondition
// Short Condition:
// Price below both EMAs, RSI not oversold, price below VWAP, and high volume
shortCondition = (close < emaShort) and (close < emaLong) and (rsiValue < 60 and rsiValue > rsiOversold) and (close < vwapValue) and volumeCondition
// Entry logic
if (longCondition)
strategy.entry("Buy Call", strategy.long)
if (shortCondition)
strategy.entry("Buy Put", strategy.short)
// Dynamic Take Profit and Stop Loss based on ATR
takeProfitLevel = strategy.position_avg_price * (1 + atrValue * atrMultiplier / 100)
stopLossLevel = strategy.position_avg_price * (1 - atrValue * atrMultiplier / 100)
// Exit strategy based on ATR levels
strategy.exit("Take Profit/Stop Loss", from_entry="Buy Call", limit=takeProfitLevel, stop=stopLossLevel)
strategy.exit("Take Profit/Stop Loss", from_entry="Buy Put", limit=takeProfitLevel, stop=stopLossLevel)
// Plotting indicators
plot(emaShort, title="9 EMA", color=color.blue)
plot(emaLong, title="21 EMA", color=color.red)
hline(rsiOverbought, "RSI Overbought", color=color.red)
hline(rsiOversold, "RSI Oversold", color=color.green)
plot(vwapValue, title="VWAP", color=color.purple)