- Installing
@quantform/core - Creating a basic reusable component
- Wiring it into a strategy
- Executing it with the Quantform CLI
Prerequisites
- Node.js and Yarn installed
- A new or existing TypeScript project
Step 1: Install packages
src directory if you do not already have one.
Step 2: Create a basic component
Createsrc/components/tick-logger.ts:
Step 3: Use the component in a strategy
Createsrc/pipeline.ts:
Step 4: Execute the strategy
Run in paper mode:useTickLogger.
Step 5: Iterate quickly
Use watch mode while developing:src change.
Next steps
Execution modes
Learn when to use paper, replay, and live runs.
Replay workflow
Validate strategy behavior with historical windows.
Runtime model
Understand modules, hooks context, and dependency wiring.
Quickstart
Compare this tutorial with the shorter quickstart path.