Hephyrius / binance_futures_bot

A bot that trades leveraged USDT futures markets on binance.
299 stars 123 forks source link

limit usage of capital on every order #27

Open THELORDMAXIM opened 2 years ago

THELORDMAXIM commented 2 years ago

its a recomendation, to use a limite capital on every order, so is not spending all the capital on the wallter to make every order, or at least to have the config to do it

THELORDMAXIM commented 2 years ago

that will help us to open several instances of the bot, with other coins :)

rockyrobinls29 commented 2 years ago

on line 119 of bot_functions.py: qty = round(qty 0.99,8) You can change to for example: qty = round(qty 0.50,8) This will trade only 50% of your asset. Hope this helps someone! :)