smzerehpoush / buy-low-sell-high

A low risk trading automation on Binance Spot Wallet πŸ˜›

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TABLE OF CONTENTS

  1. BUY-LOW-SELL-HIGH
  2. DISCLAIMER
  3. HOW-IT-WORKS
  4. HOW-TO-USE
    1. ENVIRONMENT SETUP
    2. PIP3 REQUIREMENTS
    3. CONFIGURATIONS
    4. RUN
  5. SCREENSHOTS
  6. JOIN-MY-DISCORD

BUY-LOW-SELL-HIGH

This is a trading bot that trades on Binance SPOT WALLET

A Trading Bot that perfectly illustrate the art of "buy low, sell high" strategy.

Inspired by THE 3 % SIGNAL STRATEGY

It is always a good idea if you know HOW THIS STRATEGY WORKS before you use this script.

DISCLAIMER

I have no responsibility for any loss or hardship incurred directly or indirectly by using this code.

PLEASE MANAGE YOUR RISK LEVEL BEFORE USING MY SCRIPT.

USE IT AT YOUR OWN RISK!

HOW-IT-WORKS

NOTE For example, for BTCUSDT, BTC is the base asset, USDT is the quote asset.

  1. This script is a very simple implementation of "buy low, sell high" strategy.

  2. Assuming you want to hold 500 USDT worth of BTC.

  3. Make sure you have more than 500 USDT in your SPOT WALLET, ideally at least 20-30% more than the amount you want to hold.

  4. When you run the script, the program will purchase BTC using 500 USDT from your SPOT WALLET.

  5. If you use the default scheduler in the script, the script will execute every 00:00, 06:00, 12:00 and 18:00.

  6. For every 6 hours, if your BTC amount, the $500 is increased more than the margin_percentage, which by default is 4%, it will trigger a sell order.

  7. The sell amount will be the amount on top of the value 500. Which will bring your BTC balance back to 500 USDT. (Sell the profit into the pump)

  8. Vice versa, if your BTC amount, the $500 is decresed more than the margin_percentage, which by default is 4%, it will trigger a buy order.

  9. The buy amount will be the amount to top up your BTC balance back to 500 USDT. (Buy the dip with proper wallet management)

  10. Always make sure you have enough ammo quote asset to allow this script to buy low and sell high at its full potential.

  11. My recommendation for the base : quote ratio is 80 : 20, 80% for your overall base assets, 20% is the ammo quote asset.

HOW-TO-USE

1. ENVIRONMENT SETUP

Setup your environment API key on the Terminal:

export BINANCE_KEY="your_binance_api_key"
export BINANCE_SECRET="your_binance_secret_key"

Or as an alternative, you can change line 9-11 in run.py to following:

api_key     = "your_binance_api_key"
api_secret  = "your_binance_secret_key"
client      = Client(api_key, api_secret)

2. PIP3 REQUIREMENTS

You need to have these libraries installed:

pip3 install apscheduler==3.6.3
pip3 install cryptography==3.2 
pip3 install python-binance==0.7.5
pip3 install termcolor==1.1.0

3. CONFIGURATIONS

Before running, maybe you want to see how the output looks like.
The settings can be configured in config.py.

Variables Description
live_trade True to place actual order
False to see sample output
enable_scheduler True to run the code at every 00:00, 06:00, 12:00, 18:00
False to run the code only once
base You can put your coin list here
core Amount of the quote asset you want to maintain
quote Optimal is USDT
margin_percentage The percentage that will trigger buy or sell.
Optimal is 4 , minimum should not be lower than 3.5

The following code means the program will help you to maintain:

  • 500 USDT worth of BTC
  • 300 USDT worth of ETH
base = ["BTC", "ETH"]
core = [500, 300]
quote = ["USDT]

IMPORTANT NOTE:

  • The minimum core amount for quote USDT is 300 USDT
  • Make sure you have enough USDT in your SPOT WALLET to unleash this program at its full potential

4. RUN

If you want to time this script by your own, set enable_scheduler = False then you can make your own scheduler

Else, you can set enable_scheduler = True and the script will loop the program for you every 6 hours.

Now if you are all ready, set live_trade = True and ...

Let's make the magic happens!

python3 run.py

SCREENSHOTS

SAMPLE OUTPUT

PROFIT AND LOSS

Here is my ROI with this strategy

Screenshot PnL on 28th February 2021

Screenshot PnL on 31st March 2021

Screenshot PnL on 30th April 2021

Screenshot PnL on 31st May 2021

Screenshot PnL on 30th June 2021

JOIN MY DISCORD - QUICK ACCESS TO THE DARK DIMENSION

About

A low risk trading automation on Binance Spot Wallet πŸ˜›

License:Apache License 2.0


Languages

Language:Python 98.7%Language:Shell 1.3%