Convert a NinjaScript indicator to another platform
<filename> --to <pine|tradovate>ninja/# Convert NinjaScript Indicator Convert a NinjaTrader 8 NinjaScript indicator to Pine Script or Tradovate. Arguments: $ARGUMENTS ## Before Converting 1. Read the source NinjaScript file completely 2. Identify all properties, calculations, and plots 3. Note any NinjaScript-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 | NinjaScript | Pine Script | Tradovate | |-------------|-------------|-----------| | `Close[0]` | `close` | `d.close()` | | `Cl...