Uploading Backtests (CLI)
Push backtest bundles from your terminal using the Finterion CLI
Uploading Backtests (CLI)
Push backtest bundles to your organization directly from your terminal or CI pipeline using the Finterion CLI.
Make sure you've completed CLI Installation and run finterion login first.
Upload a backtest bundle
finterion backtests upload ./my-backtest.obtf --organization <organization-id>
--organization accepts your organization's full name.
Add a bundle name, tags & linked algorithm
finterion backtests upload ./my-backtest.obtf --organization <organization-id> \
--name "Momentum strategies Q1" --tags momentum,v2 --algorithm 1234
| Flag | Description |
|---|---|
--name | Sets the backtest bundle's display name. |
--tags | Comma-separated list of tags attached to the bundle. |
--algorithm | Links the bundle to a platform algorithm id. |
Next steps
- See Uploading Backtests (SDK) if you'd rather upload from a Python script.
- See Bot SDK for building and testing trading bots.