๐Ÿ”จGuide: PumpBot Autotrade

This is the latest Explanation for using the PumpBot Autotrade - currently only available for Gate.io Exchange.

Not supported anymore! We started with futures Trading which is better.

You need to connect the PumpBot Autotrade to Telegram. Otherwise I won't work, see the next page.

Automated Trading Bot for Gateio. Trading the most volatile coins with an stoch RSI.

- fully automated 24/7 trading Bot.

- Switch it on.

Done. Profits.

Predefined Settings for the Autotrade PumpBot:

SETTINGS = {
            "maxVol": 125000,        # max. 24h trade volume
            "minVol": 50000,         # min. 24h trade volume
            "priceChange": 25,       # min. price change in 24h
            "priceChangeMax": 90,    # max. price change in 24h
            "updateInterval" : 25,   # in seconds, dont go below 15s
            "maxNumberOfTrades": 2,  # max. number of open trades at a time
            "manualQuote" : 15,      # Quote Volume in USDT per Trade
            "trailingStopLoss": 5,   # 5% trailing stop loss
            "takeProfit": 10,        # 10% Take Profit
            "stopLoss": 15           # 15% stop loss
            "useRSI": "n",           # Buy based on the RSI Settings or not ("y"/"n")
            "rsi": 20,               # rsi value
            "rsi_interval": "5m"     # time interval, or 15m, 30m, 1h, 4h
            }

Let's step right into it.

Pick volatile Coins: maxVol, minVol, priceChange, priceChangeMax and updateInterval

So, the first five entries let the Autotrade PumpBot search for the most volatile coins:

            "maxVol": 125000,
            "minVol": 50000,
            "priceChange": 25,
            "priceChangeMax": 90,
            "updateInterval" : 25,

- maxVol: maximum trading volume for a coin in the last 24h

- minVol: minimum trading volume for a coin in the last 24h

- priceChange: minimum price change for a coin in the last 24h

- priceChangeMax: maximum price change for a coin in the last 24h (to filter out the newly listed coins for example)

- updateInterval: the time in seconds to search for new coins which full-fill the criterions. Don't go below 15 Seconds or gateio might block/cut your connection.

You can keep them like they are, nothing special to do here.

maxNumberOfTrades and manualQuote

            "maxNumberOfTrades": 3,
            "manualQuote" : 30,
  • maxNumberOfTrades: How many trades are open at the same time.

  • manualQuote: the amount in USDT the Bot will use per Trade.

So, really easy. Just calculate how much you are able to spend and enter the values accordingly.

The Settings for Stop Loss, Trailing Stop Loss and Take Profit:

            "trailingStopLoss": 5,  
            "takeProfit": 10,        
            "stopLoss": 15           
  • trailingStopLoss: you enter the amount in %. In this case it is 5%

  • takeProfit: you enter the amount in %. In this case 10%

  • stopLoss: It is placed under your buy price. 15% under your buy price in this case.

You can stop the trade early if it goes in the wrong direction. If you want to disable it just use 99. You can adjust those values to your needs. If you set the "trailingStopLoss":0, you sell as soon as your takeProfit is reached. When you set your "takeProfit": 0 the trailing stop loss works right from the beginning.

Technical Indicator: RSI

And as last the stoch RSI settings for the final buy signal: This might get a little bit complex now. But you can let this settings as they are.

            "useRSI": "y",
            "rsi": 20,
            "rsi_interval": "5m"

The Autotrade PumpBot will buy, when the RSI_k is above the slow RSI_d and both are above the value of "rsi" in this case 20. This indicates a strong upward trend and that is when we want to buy! So the first is the is the RSI value as explained above. If you dont want to use the RSI to buy do:

"useRSI": "n",

The second is the "rsi_interval", which is the time frame for the stoch RSI calculation. In this case "5m" means 5 minutes. You can choose between "1m", "5m", "15m", "30m", "1h". For the internal calculation of the RSI the values of window = 14, smooth1 = 3, smooth2 = 3 are used. You dont have to play with this values. Just keep them as they are.

Investment Limits:

current Investment Limit for our PumpBot Members.

FREE:      Not available.
Starter, Advanced, Pro, Ultimate and Lifetime: No Limits at all!

run on LINUX:

sudo dpkg --add-architecture i386
sudo apt update
sudo apt install wine64 wine32

then check version of whine when all are installed:

wine --version

should get 5.0 answer if everything is ok by now then i did connect with secure ftp in the server and uploaded the bot then i run the exe file first time with this command :

wine PumpBotAutotrade_060422.exe

it will give you some errors as wine keeps creting its folders and installing for first time ... after it is done you just go to newly created folder of wine and you put all files in there along with the confid licene etc for me i created an autotrade folder in wine default c folder thar for ubuntu it is located in:

./home/ubuntu/.wine/drive_c/

i have an autotrade folder i nthere with the bot and configs inside i just run this command:

wine PumpBotAutotrade_060422.exe

now how to let it run in the background thats another story prolly have to use tmux app that can run anything in background but this is a test for later today.

Control the Autotrade Bot via Telegram: check and sell positions

๐Ÿ“ฑpageControl the Bot via Telegram

Last updated