Meph1587 / Binance-TradeAssistant

Allows to place multiple orders with same balance
1 stars 0 forks source link

Binance-TradeAssistant

Allows to place multiple orders with same balance using a programm to set buy/sell orders a predefined levels. It supports predefined entry level, Stop-Loss as well as multiple exit levels.

How it works:

download the code
get the API keyes for your binance account
paste them into the code by replacing KEY and KEY2
open Comand Line Interface, cd to folder with code

python tradeAssist.py 

schedule a new trade by following the instructions
EX:
enter BUY or SELL: "BUY"
enter a pair: "ETHUSDT"
enter an entry price: "530"
enter the amount to tarde: "0.75"
enter the stop-loss price: "525"
Enter a price Target (q to quit): "570"
Enter a price Target (q to quit): "580"
Enter a price Target (q to quit): "q"
Enter the percentage for each price (q to quit): "50"
Enter the percentage for each price (q to quit): "50"
Enter the percentage for each price (q to quit): "q"
(' Your new Trade : newTade', 'BUY', 'ETHUSDT', 530.0, 0.75, 525.0, [570.0, 580.0], [50.0, 50.0])

Important

The code executes test-orders, to execute real orders change the code from create_test_order to create_order. Do this at your own risk.