Turtles Army PA | USDJPY — Strategy by krocarlo

By version

Performance Metrics

Description

// ─── Estrategia de backtesting — TradingView Pine Script v6 ───────────────//// Temporalidad recomendada : 1 minuto// Par : USDJPY//// HORARIOS (UTC — Mexico UTC-6 fijo, sin cambio de verano)// Tokyo : 6:00pm MX = 00:00 UTC → 2:00am MX = 08:00 UTC// NY : 7:30am MX = 13:30 UTC → 1:00pm MX = 19:00 UTC//// LOGICA DE SESGO:// Se usa EMA en 1H y 4H (precio vs EMA = direccion).// Esto replica como se lee el sesgo en vivo: tendencia visual de la vela// respecto a la media. Ambas TF deben coincidir.//// LIMITACIONES DEL BACKTEST// • TP dinamico aproximado con swing HTF (en vivo se elige el OB exacto).// • La macro usa EMA como proxy de tendencia del indicador.// • Sizing aproximado para USDJPY (1 unidad ~ 1 USD / precio).// ═══════════════════════════════════════════════════════════════════════════//version=6strategy( title = "Turtles Army PA | USDJPY", shorttitle = "TA-PA", overlay = true, pyramiding = 3, calc_on_every_tick = false, max_bars_back = 500, default_qty_type = strategy.cash, initial_capital = 10000, currency = currency.USD, commission_type = strategy.commission.percent, commission_value = 0.002)// ════════════════════════════════════════════════════════════════════════════// ① INPUTS// ════════════════════════════════════════════════════════════════════════════G_ATR = "1 ATR"G_SESS = "2 Sesiones (UTC)"G_BIAS = "3 Sesgo Estructural (EMA)"G_MACR = "4 Indicadores Macro"G_TECH = "5 Confluencia Tecnica"G_RISK = "6 Gestion de Riesgo"G_VIS = "7 Visual"

Browse all 5,900+ TradingView Pine Script strategies

View on TradingView