Paper and live modes are explicit
Paper mode is the default, while live operation is a separately configured and deliberately enabled client-controlled mode.
Trading software product
An Alpaca-connected Trading Bot Engine for paper and client-controlled live order workflows, with authenticated operators, strategy API keys, order records, and an operational dashboard.

Implementation scope
The application separates operator sign-in from strategy-to-platform requests. Operators use JWT-based access, while strategies submit signals with an API key issued when the strategy is created.
The configuration defaults to paper mode, while the same order workflow also supports client-controlled live operation through separate configuration and an explicit enablement gate.
The React dashboard provides configuration, strategy management, order filtering, test-signal controls, and light or dark presentation without making a trading-performance claim.
Engineering choices
Paper mode is the default, while live operation is a separately configured and deliberately enabled client-controlled mode.
JWT-authenticated operator access and per-strategy API keys give the application distinct paths for administration and incoming signals.
Configuration, strategy records, and order history are kept so the dashboard can show the state the application recorded rather than relying on a transient request alone.
Validation approach
Current boundaries