An algorithmic trading framework built using CCXT for multiple exchanges
Directional Scalper | API Scraper | Dashboard | Directional Scalper Multi | Menu GUI |
---|---|---|---|---|
To run the bot inside docker container use the following command:
docker-compose run directional-scalper python3.11 bot.py --symbol SUIUSDT --strategy bybit_hedge_mfirsi_maker --config config_main.json
If you need to use a proxy to access the Exchange API, you can set the environment variables as shown in the following example:
$ export HTTP_PROXY="http://10.10.1.10:3128" # these proxies won't work for you, they are here for example
$ export HTTPS_PROXY="http://10.10.1.10:1080"
pipenv install --dev
(to keep requirements in a virtual environment)pre-commit install
(if you intend to commit code to the repo)pytest -vv
(if you have written any tests to make sure the code works as expected)