Tutoriales 30 de marzo de 2026
📊 Tutorial #5: VWAP + Volume Breakout
Operá como las instituciones. Usá el precio promedio ponderado por volumen para detectar el valor real del mercado.
ED
Emmanuel Dearmas
DearmasTrader Team
📊 Institucional: El VWAP es el indicador que miran los fondos. Romper el VWAP con volumen es una señal de alta probabilidad.
//@version=6
strategy("DMT - VWAP Hunter", overlay=true)
token = input.string("TOKEN_DMT", "DMT Token")
v = ta.vwap(close)
long = ta.crossover(close, v) and volume > ta.sma(volume, 20)
short = ta.crossunder(close, v) and volume > ta.sma(volume, 20)
if (long)
strategy.entry("Long", strategy.long, alert_message='{"action": "OPEN", "direction": "LONG", "pair": "' + syminfo.ticker + '", "token": "' + token + '"}')
if (short)
strategy.entry("Short", strategy.short, alert_message='{"action": "OPEN", "direction": "SHORT", "pair": "' + syminfo.ticker + '", "token": "' + token + '"}')