Skip to content

Latest commit

 

History

History
37 lines (27 loc) · 1.03 KB

readme.md

File metadata and controls

37 lines (27 loc) · 1.03 KB

Description

Entry indicator detection library and strategies for FreqTrade trade bot, see user_data/strategies directory.

freqtrade trade --config config.usdt.1m.json --strategy TaSearch1m --db-url sqlite:///search1mStrategy.sqlite
freqtrade trade --config config.btc.1m.json --strategy TaSearch1mBTC --db-url sqlite:///taSearch1mBTC.sqlite
freqtrade trade --config config.usdt.30m.json --strategy TaSearch30m --db-url sqlite:///search30mStrategy.sqlite

model predict

Installation

For development copy the repository using git clone and install package requirements with commands below.

python -m venv .env
source .env/bin/activate

pip install -r requirements.txt
pip install --force-reinstall -r requirements.txt

Testing

The command to download time series data for an interval

python download.py BNB 1m 1666054800 1666112400
python download.py BNB 30m 1665169200 1666112400

Run tests

python -m pytest test
python -m pytest -s test/user_data/strategies/1m/test_search_1m.py