This is template from which you can create your own Jesse project.
Assuming that you already have installed the environment dependencies, you can run the following command to create your project:
# you can change "my-project" to any name you want
git clone https://github.com/jesse-ai/project-template.git my-project
# to create a .env file of yours
cp .env.example .envThen while in the project run:
cd docker
docker-compose upThat's it! Now open localhost:9000 in your browser to see the dashboard.
You can also run commands from the command line. For example, to run the backtest:
python test-strategy.pyFor that to work, you need to have the environment dependencies installed. You can install them by running:
pip install -r requirements.txt