Skip to content

launch


command launch

Launch the Backtide UI in a local web browser.

Starts the bundled graphical interface, which lets you browse stored experiments, inspect equity curves, trade logs, performance metrics and simulated live sessions without writing any code.

Read more in the user guide.

Parameters

--address, -a : str

The address where the server will listen for client and browser connections. Use this if you want to bind the server to a specific address. If set, the server will only be available from this address, and not from any aliases (like localhost).

--port, -p : str, default=8501
TCP port the server listens on.

--log_level, -l : str, default="warn"
Minimum log level to emit. Choose from: error, warn, info or debug.


See Also

Config

Backtide configuration.

download

Download OHLCV bar data for one or more symbols and persist it locally.

run-experiment

Run a backtest experiment defined in a configuration file.


Example

Launch with default settings:

backtide launch

Launch on a custom port and address:

backtide launch --port 9000 --address 0.0.0.0