Endpoints

Strategies

A strategy is a multi-leg trading rule with a cadence, an allocation, typed exits, and a sizing model. Each leg specifies what to trade, when to open, when to close, and how much per position. Execution is emit-only — Tickerbot maintains a paper ledger and emits intent webhooks to your executor.

MethodPathSummary
POST/v2/strategiesCreate a multi-leg strategy.
GET/v2/strategies/{name}Fetch a saved strategy.
GET/v2/strategiesList your strategies, newest first.
PATCH/v2/strategies/{name}Partial update — change any subset of fields, including status.
DELETE/v2/strategies/{name}Soft-delete a strategy; optionally force-close open positions.
GET/v2/strategies/{name}/positionsPositions opened by the strategy's runner.
POST/v2/strategies/{name}/positions/{id}/closeManually close (or partially close) an open position.
POST/v2/strategies/{name}/run-tickEvaluate the strategy once against the latest bar.
GET/v2/strategies/{name}/backtestWalk historical bars and return trades + equity curve + summary.