This little application allows a user to quickly buy a Bitcoin pair on Binance and sell at a specified return.
# Update the API_KEY and API_SECRET variables in `settings_template.py`.
# Rename the file:
mv settings_template.py settings.py
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
python main.py
On lines 45 and 72, change client.create_test_order
to client.create_order
.
To change the return value of the sell order, edit line 68 where the value is currently set to 1.5
.
- Python 3.8.5
- python-binance