finterion-logo

Search algorithms

/

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
FlagDescription
--nameSets the backtest bundle's display name.
--tagsComma-separated list of tags attached to the bundle.
--algorithmLinks the bundle to a platform algorithm id.

Next steps