Esta estratégia é denominada
Em primeiro lugar, a estratégia usa o padrão de reversão 123 para determinar reversões de tendência de curto prazo. O padrão 123 é quando os preços diferem significativamente em três dias consecutivos e o terceiro dia fecha na direção oposta aos dois dias anteriores. Estatisticamente, a negociação com sinais de reversão 123 tem uma taxa de ganho maior.
Em segundo lugar, o indicador RSI é incorporado para avaliar a confiabilidade dos sinais de reversão. RSI abaixo de 50 representa condições de sobrevenda, enquanto acima de 50 é sobrecompra.
Em terceiro lugar, é introduzido o crossover multiperíodo do indicador OCM. O crossover OCM que combina diferentes médias móveis exponenciais de períodos julga as inversões de momento. Os seus sinais confirmam ainda mais o calendário da inversão 123.
A aplicação combinada de múltiplos indicadores aumenta a taxa de sucesso de captação de reversões de preços, evitando sinais de incerteza excessiva.
Esta estratégia é adequada para mercados variados e oscilantes para capturar flutuações de preços de curto prazo. No entanto, a combinação de muitos indicadores também pode levar a conflitos.
Em conclusão, a estratégia de reversão combinada de múltiplos indicadores integra várias ferramentas para melhorar a precisão do julgamento das reversões do mercado.
/*backtest start: 2023-01-01 00:00:00 end: 2023-03-11 00:00:00 period: 4h basePeriod: 15m exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=4 //////////////////////////////////////////////////////////// // Copyright by HPotter v1.0 25/02/2020 // This is combo strategies for get a cumulative signal. // // First strategy // This System was created from the Book "How I Tripled My Money In The // Futures Market" by Ulf Jensen, Page 183. This is reverse type of strategies. // The strategy buys at market, if close price is higher than the previous close // during 2 days and the meaning of 9-days Stochastic Slow Oscillator is lower than 50. // The strategy sells at market, if close price is lower than the previous close price // during 2 days and the meaning of 9-days Stochastic Fast Oscillator is higher than 50. // // Second strategy // The related CMOaDisparity Index article is copyrighted material from Stocks & Commodities Dec 2009 // My strategy modification. // // WARNING: // - For purpose educate only // - This script to change bars colors. //////////////////////////////////////////////////////////// Reversal123(Length, KSmoothing, DLength, Level) => vFast = sma(stoch(close, high, low, Length), KSmoothing) vSlow = sma(vFast, DLength) pos = 0.0 pos := iff(close[2] < close[1] and close > close[1] and vFast < vSlow and vFast > Level, 1, iff(close[2] > close[1] and close < close[1] and vFast > vSlow and vFast < Level, -1, nz(pos[1], 0))) pos CMOD(LengthFirst, LengthSecond, LengthThird) => pos = 0.0 xEMAFirst = ema(close,LengthFirst) xEMASecond = ema(close,LengthSecond) xEMAThird = ema(close,LengthThird) xResFirst = 100 * (close - xEMAFirst) / close xResSecond = 100 * (close - xEMASecond) / close xResThird = 100 * (close - xEMAThird) / close pos := iff(xResThird > xResFirst, -1, iff(xResThird < xResSecond, 1, nz(pos[1], 0))) pos strategy(title="Combo Backtest 123 Reversal & CMOaDisparity Index", shorttitle="Combo", overlay = true) Length = input(14, minval=1) KSmoothing = input(1, minval=1) DLength = input(3, minval=1) Level = input(50, minval=1) //------------------------- LengthFirst = input(50, minval=1) LengthSecond = input(25, minval=1) LengthThird = input(10, minval=1) reverse = input(false, title="Trade reverse") posReversal123 = Reversal123(Length, KSmoothing, DLength, Level) posCMOD = CMOD(LengthFirst, LengthSecond, LengthThird) pos = iff(posReversal123 == 1 and posCMOD == 1 , 1, iff(posReversal123 == -1 and posCMOD == -1, -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) if (possig == 0) strategy.close_all() barcolor(possig == -1 ? #b50404: possig == 1 ? #079605 : #0536b3 )