Tokens & Orders
[
{
"ENABLED" : "True",
"SYMBOL": "KPAD",
"ADDRESS": "0xcfefa64b0ddd611b125157c41cd3827f2e8e8615",
"USECUSTOMBASEPAIR": "false",
"BASESYMBOL": "enter here your custom Base pair symbol if USECUSTOMBASEPAIR =True",
"BASEADDRESS": "enter here your custom Base pair address if USECUSTOMBASEPAIR =True",
"LIQUIDITYINNATIVETOKEN": "True",
"BUYAMOUNTINBASE": "0.1",
"BUYPRICEINBASE": "0.001",
"SELLAMOUNTINTOKENS": "ALL",
"SELLPRICEINBASE": "0.003",
"MAXTOKENS": "100",
"MOONBAG": "20",
"SLIPPAGE": "49",
"HASFEES": "false",
"GAS": "BOOST",
"BOOSTPERCENT": "50",
"GASLIMIT": "1000000",
"LIQUIDITYCHECK": "true",
"LIQUIDITYAMOUNT": "10"
}
]
ENABLED : enable trading or not (if false, bot won't try to buy tokens)
SYMBOL : symbol of the token you want to buy
ADDRESS : contract address of the token you want to buy
USECUSTOMBASEPAIR : must be "true" or "false"
"false" : the bot uses native token (BNB / ETH / MATIC / KCC / etc.) to make trades 👉 You only need to hold this native token
"true" : bot uses the BASE pair you've entered below
WARNING If liquidity is in native token, be careful not to use this option if you trade with a big amount of money (several thousands dollars).
Why? By using this option, bot needs to route your transaction through several routes (Custom base token ➡️ Native token ➡️ Token you're sniping) and one of this route could have low liquidity
👉 If you trade with big amount, it could result in a big price impact, and make you lose money
ecommendations if you want to make big trades: - if token has native token liquidity (ETH / BNB...) 👉 do not use custom base pair - if token has BUSD / USDT liquidity 👉 use: - LIQUIDITYINNATIVETOKEN = false - USECUSTOMBASEPAIR = true , with same base pair as liquidity
BASESYMBOL : symbol of the token you want to trade with if you selected USECUSTOMBASEPAIR = True (in this example : I want to buy KPAD with the WBNB I have in my wallet)
BASEADDRESS : contract address of the token you want to trade with if you selected USECUSTOMBASEPAIR = True
LIQUIDITYINNATIVETOKEN ( ⚠️ new in v3.28 ⚠️) Use this option if you want to trade with liquidity in BUSD / USDT / USDC / etc.
This option will make the bot :
Detect liquidity which is not in native token
Make transactions go through direct route
Situation
What to choose?
Liquidity is in ETH / BNB / etc.
LIQUIDITYINNATIVETOKEN = True
Liquidity is in BUSD / USDT / etc.
- LIQUIDITYINNATIVETOKEN = False
- CUSTOMBASEPAIR = liquidity token
WARNING : be VERY CAREFUL about this LIQUIDITYINNATIVETOKEN option If you set up wrong configuration, bot will trade on wrong pair and make you lose funds. Beware!
BUYAMOUNTINBASE : put here the amount in the base symbol that you want the bot to buy (in this example, the bot will create buy orders of 0.1 WBNB)
BUYPRICEINBASE : Buy price of 1 token in the base symbol : if the price of 1 token is < or = to this price, the bot will buy. Tip : if you want the bot to never buy, set BUYPRICEINBASE = 0 (price cannot be below 0)
SELLAMOUNTINTOKENS : put here the amount of token that you want the bot to sell
SELLPRICEINBASE : sell price of 1 token in the base symbol :
if the price of 1 token is > or = to this price, the bot will sell (it will sell at the Market price, not at your price)
Tip : if you want the bot to never sell, set SELLPRICEINBASE = 99999999
MAXTOKENS : this parameter is used to make the bot stop buying:
before buying, the bot checks MAXTOKENS
if you hold more tokens than MAXTOKENS, the bot does not buy
➡️ If you want to make the bot stop buying after 1 trade, set MAXTOKENS to a low value, like "1" for instance.
MOONBAG : minimal amount of token you want to keep in your wallet. If you don't want to keep any token, put 0. (in this example, the bot will keep at least 20 KPAD token in your wallet)
SLIPPAGE : slippage you want to use
HASFEES : select "TRUE" if you want to trade a token with additional fees, like automatic transfer to liquidity when you buy / additional taxes / rebase / etc.
GAS / BOOSTPERCENT :
There is 2 ways to set your Gas :
Set your own fixed Gas price --> simply set Gas price in "GAS" parameter
"GAS": "200",
Let the bot calculate Gas price relating to current Gas Price on blockchain :
it reads the gas price on the blockchain
it applies the boost you set on Fast price. Example :
"GAS": "BOOST",
"BOOSTPERCENT": "50",
GASLIMIT : always used, set it with the value you want to use (we recommend to set it to 1000000 to avoid to be out of Gas)
LIQUIDITYCHECK : use this option if you want the bot to check the amount of liquidity before buying
If you select "true", the bots check the liquidity amount before buying
If you select "false", bot still check if liquidity is added, but will buy with any amount (be careful, sometimes some people add a very little amount of liquidity to trick bots, so Team recommend to set this setting to "True")
LIQUIDITYAMOUNT : minimal amount of liquidity in the main blockchain token (ETH / BNB / MATIC...) before bot buys. Used if LIQUIDITYCHECK = True.
WARNING : Liquidity check works only when liquidity is added in Native Token (ETH / BNB / etc.)
It will NOT display a proper amount if liquidity is added in USDT / BUSD...
Congratulations if you made it this far :) You are now ready to run your bot ! 🚀
Last updated