Install
openclaw skills install beta-ta-paper-executorExecute and track paper trades from TA setups with JSONL ledger, open/close workflow, and mark-to-market status.
openclaw skills install beta-ta-paper-executorUse this skill when the user wants simulated execution (paper trading), not broker-connected live orders.
Place order:
python3 scripts/ta_paper_executor.py place \
--symbol BTCUSDT --side long --entry 68000 \
--stop 66500 --target 71000 --qty 0.5 \
--strategy trend-follow --reason "SMA20>SMA50 + MACD"
Close order:
python3 scripts/ta_paper_executor.py close --id ORD-20260310-001 --exit 70500
Status:
python3 scripts/ta_paper_executor.py status --symbol BTCUSDT --mark 70200 --json
ta-signal-engine.ta-backtest.