This repository contains default evaluators, strategies, utilitary modules, interfaces and trading modes for the OctoBot project.
Modules in this tentacles are installed in the Default folder of the associated module types
To add custom tentacles to your OctoBot, see the dedicated docs page.
- Create your own fork of this repo
- Start your branch from the
dev
branch of this repo - Commit and push your changes into your fork
- Create a pull request from your branch on your fork to the
dev
branch of this repo
Tips:
To export changes from your local OctoBot tentacles folder into this repo, run this command from your OctoBot folder:
python start.py tentacles -e "../../OctoBot-Tentacles" OctoBot-Default-Tentacles -d "tentacles"
Where:
start.py
: start.py script from your OctoBot foldertentacles
: the tentacles command of the script../../OctoBot-Tentacles
: the path to your fork of this repository (relatively to the folder you are running the command from)OctoBot-Default-Tentacles
: filter to only export tentacles tagged asOctoBot-Default-Tentacles
(in metadata file)-d tentacles
: name of your OctoBot tentacles folder that are to be copied to the repo (relatively to the folder you are running the command from)