Esta es una estrategia de rotación inteligente basada en períodos de tiempo que busca generar retornos a través de operaciones de rotación larga-corta dentro de períodos de tiempo especificados. La estrategia emplea un mecanismo flexible de gestión de posiciones que puede ajustar automáticamente la dirección de negociación de acuerdo con las condiciones del mercado al tiempo que incorpora funciones de control de riesgos.
La estrategia controla principalmente el comercio a través de períodos de tiempo y el estado de la posición. En primer lugar, la función inActivePeriod (()) determina si el comercio está dentro del intervalo efectivo de las últimas 500 barras. Dentro del intervalo efectivo, la estrategia decide las acciones comerciales basadas en variables como el estado de la posición (positionHeld), el tiempo de retención (barsHeld) y el tiempo de pausa (barsPaused).
Esta estrategia logra rendimientos en el mercado a través del control del período de tiempo y la rotación larga-corta, demostrando una fuerte flexibilidad y adaptabilidad. Aunque existen ciertos riesgos, la estabilidad y rentabilidad de la estrategia se pueden mejorar significativamente a través de medidas razonables de optimización y control de riesgos.
/*backtest start: 2024-10-12 00:00:00 end: 2024-11-11 00:00:00 period: 4h basePeriod: 4h exchanges: [{"eid":"Futures_Binance","currency":"BTC_USDT"}] */ //@version=5 strategy("Tickerly Test Strategy", overlay=true) // Inputs longEnabled = input.bool(true, "Enable Long Trades") shortEnabled = input.bool(true, "Enable Short Trades") swingEnabled = input.bool(false, "Enable Swing Trading") // Variables var positionHeld = 0 var barsHeld = 0 var barsPaused = 0 var lastAction = "none" // Function to determine if we're in the last 500 bars inActivePeriod() => barIndex = bar_index lastBarIndex = last_bar_index barIndex >= (lastBarIndex - 499) // Main strategy logic if inActivePeriod() if swingEnabled if positionHeld == 0 and barstate.isconfirmed if lastAction != "long" strategy.entry("Long", strategy.long) positionHeld := 1 barsHeld := 0 lastAction := "long" else strategy.entry("Short", strategy.short) positionHeld := -1 barsHeld := 0 lastAction := "short" if positionHeld != 0 barsHeld += 1 if barsHeld >= 2 if positionHeld == 1 strategy.entry("Short", strategy.short) positionHeld := -1 barsHeld := 0 lastAction := "short" else strategy.entry("Long", strategy.long) positionHeld := 1 barsHeld := 0 lastAction := "long" else if positionHeld == 0 and barsPaused >= 1 and barstate.isconfirmed if longEnabled and shortEnabled if lastAction != "long" strategy.entry("Long", strategy.long) positionHeld := 1 barsHeld := 0 barsPaused := 0 lastAction := "long" else strategy.entry("Short", strategy.short) positionHeld := -1 barsHeld := 0 barsPaused := 0 lastAction := "short" else if longEnabled strategy.entry("Long", strategy.long) positionHeld := 1 barsHeld := 0 barsPaused := 0 lastAction := "long" else if shortEnabled strategy.entry("Short", strategy.short) positionHeld := -1 barsHeld := 0 barsPaused := 0 lastAction := "short" if positionHeld != 0 barsHeld += 1 if barsHeld >= 3 strategy.close_all() positionHeld := 0 barsHeld := 0 barsPaused := 0 // Reset pause counter when exiting a position else barsPaused += 1 // Plotting active period for visual confirmation plot(inActivePeriod() ? 1 : 0, "Active Period", color=color.new(color.blue, 80), style=plot.style_areabr)