Convert a Pine Script indicator to another platform
<filename> --to <ninja|tradovate>pine/# Convert Pine Script Indicator Convert a TradingView Pine Script indicator to NinjaScript or Tradovate. Arguments: $ARGUMENTS ## Before Converting 1. Read the source Pine Script file completely 2. Identify all inputs, calculations, and plots 3. Note any Pine-specific features that won't translate 4. Discuss the conversion plan with me before proceeding 5. Wait for my approval before creating the target file ## Conversion Mappings ### Data Access | Pine Script | NinjaScript | Tradovate | |-------------|-------------|-----------| | `close` | `Close[0]` | `d.close()` | | `close[1]` | `Cl...