Overview
This skill exports a Vibe-Trading strategy to all major trading platforms in one go.
Output file: artifacts/strategy.pine (inside the run directory).
Supported platforms (always generate ALL):
| Group | Platforms | Language |
|---|---|---|
| International Charts | TradingView | Pine Script v6 |
| China Equities | 通达信 / 同花顺 / 东方财富 | TDX Formula |
| Forex / CFD | MetaTrader 5 | MQL5 |
Workflow: Export from Backtest
load_skill("pine-script")— read this guideread_file("config.json")— understand instruments, dates, parametersread_file("code/signal_engine.py")— understand the Python strategy logic- Translate the strategy to ALL platforms using the references below
write_file("artifacts/strategy.pine")— save the combined output- Return the code in a code block with usage instructions per platform
Workflow: Generate from Description
load_skill("pine-script")— read this guide- Write indicator/strategy code for ALL platforms based on the user's description
write_file("artifacts/strategy.pine")— save the combined output- Return the code with usage instructions
Output Format
The output file…