Tutoriales March 30, 2026
๐ ๏ธ Estrategia Universal DMT: Automatizaciรณn sin Cรณdigo
La herramienta definitiva para TradingView. Configurรก filtros de EMA, RSI y Volatilidad desde una sola interfaz sin programar.
ED
Emmanuel Dearmas
DearmasTrader Team
๐ ๏ธ Master Tool: Esta es la "Navaja Suiza" de DearmasTrader. Incluye mรบltiples indicadores que podรฉs activar o desactivar desde los ajustes de TradingView.
๐ ยฟQuรฉ incluye esta estrategia?
- โ 3 EMAs Configurables: Filtros de tendencia a corto y largo plazo.
- โ Filtro RSI: Evitรก entrar en zonas de sobrecompra o sobreventa.
- โ Payloads Automรกticos: Envรญa el JSON correcto a DearmasTrader al instante.
- โ Zero Code: No necesitรกs tocar el script, solo cambiar los valores en la interfaz.
๐ Cรณdigo Pine Script V6
Copiรก y pegรก este cรณdigo en tu editor de Pine Script en TradingView:
// ยฉ DearmasTrader - Universal Strategy
//@version=6
strategy("DMT - Universal Editable", overlay=true)
botSecret = input.string("TU_TOKEN", "DMT Bot Token")
useEMA = input.bool(true, "Filtrar por Cruce EMA?")
emaF = input.int(9, "EMA Rรกpida")
emaS = input.int(21, "EMA Lenta")
useRSI = input.bool(true, "Filtrar por RSI?")
valEMA_F = ta.ema(close, emaF)
valEMA_S = ta.ema(close, emaS)
valRSI = ta.rsi(close, 14)
longCond = ta.crossover(valEMA_F, valEMA_S) and (useRSI ? valRSI < 70 : true)
shortCond = ta.crossunder(valEMA_F, valEMA_S) and (useRSI ? valRSI > 30 : true)
longJson = '{"action": "OPEN", "direction": "LONG", "pair": "' + syminfo.ticker + '", "token": "' + botSecret + '"}'
shortJson = '{"action": "OPEN", "direction": "SHORT", "pair": "' + syminfo.ticker + '", "token": "' + botSecret + '"}'
if (longCond)
strategy.entry("Long", strategy.long, alert_message=longJson)
if (shortCond)
strategy.entry("Short", strategy.short, alert_message=shortJson)
โ ๏ธ Configuraciรณn de Alerta
En la caja de "Mensaje" de la alerta del indicador, borrรก todo y pegรก:
{{strategy.order.alert_message}}