Docs/Bot Strategies/DCA and Grid Strategy Systems

DCA and Grid Strategy Systems

Production

Two baseline automation patterns for accumulation and range trading.

Objective

Offer configurable entry-level automation with clear parameters, deterministic behavior, and safety compatibility.

DCA Model

DCA strategies schedule periodic buys/sells with configurable cadence, budget, and asset universe.

Execution checks include available permit budget, rate limits, and configurable pause conditions.

Grid Model

Grid strategies maintain layered orders around a reference price with spacing and quantity parameters.

State includes active grid levels, fills, and re-anchoring logic after major drift.

Operational Limits

Both strategies must expose max allocation, stop triggers, and stale-data handling behavior.

Emergency stop and parameter hotfix paths should be available to operators.

Production Checkpoints

  • Strategy parameters are schema validated
  • Scheduled executions honor budget constraints
  • Grid re-anchor events are logged and reproducible
  • Stop conditions halt further order generation

Continue exploring

Bot Strategies