Skip to content

A simple trailing stop loss for spot holdings written in Python. It can also send Telegram messages if your stop loss has been hit.

License

Notifications You must be signed in to change notification settings

StephanAkkerman/binance-trailing-stop-loss

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Binance Trailing Stop Loss

Python 3.8 Code style: black MIT License


As the name suggests this code is made for having an automated stop loss for trading spot on Binance.

How to set up

Add your public and private API keys in the src/keys.py file.

Dependencies

The required packages to run this code can be found in the requirements.txt file. To run this file, execute the following code block:

$ pip install -r requirements.txt 

Alternatively, you can install the required packages manually like this:

$ pip install <package>

Telegram messages

If you would like to get messages via Telegram if your stop loss is hit, follow the link in src/keys.py

How it works

There is no user interaction necessary. If you place a stop loss order after buying a coin on Binance, the program will calculate the percentual difference between the buying price and the first stop loss. This first stop loss is then used as a reference for further stop loss percentages.

OS issues

Linux

There is a problem where the sockets can be closed or restarted once they have started running. Unfortunately, the developer of python-binance has not fixed this problem yet. So to fix this problem, you need to run $ python Linux/run.py which will restart the trailing stop loss program every 24 hours. That way the sockets won't get disconnected and you won't have any issues.

Windows & MacOS

These OSes do not have the problem that Linux based system have. If you just run $ python src/main.py, it should work without issues.

Example

  • Market buy 1000 DOGE/USDT at 0,295$.
  • Place a stop loss at 0,26$.
  • Procentual difference is calculated: 13,46%.
  • If the price rises, the difference between current close price and stop price will stay 13,46%.
  • If the price drops, stop loss price will stay where it is.

Old Version (BinanceAlert)

The old version is called BinanceAlert and needs to use run.py as well. The difference between this version and the new one is that it also sends messages based on key levels and technical analysis. Unfortunately there were some issues and I only needed it for the trailing stop loss function, that is why I made this new version.

BinanceAlertV3.py setup

Change the 'publicKey' and 'privateKey' in Client and altClient on lines 19, 22, 593 and 594 to your Binance API keys. altClient might not be necessary if you change some settings, but I use it to make sure it won't stop because it is exceeding the max requests. run.py is necessary if you want to run it on Linux, which is what I am currently doing.

BinanceAlert use cases

BinanceAlert provides alerts on the USDT pairs. These alerts are based on multiple factors, such as technical analysis, new listings on Binance and changes in your stop-loss.

Note

Currently BinanceAlert only support the USDT pairs, adding BTC pairs might be done later.

About

A simple trailing stop loss for spot holdings written in Python. It can also send Telegram messages if your stop loss has been hit.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages