๐ฎTasks
Information about the tasks configuration.
Make sure to read the following carefully to not make any unintented mistakes.
These are the current fields of the task file
taskname,privatekey,wallet_to_copy,stop_loss,take_profit,dynamic_fee,dynamic_fee_level,fixed_fee,sol_buy_amount,buy_percentage,buy_slippage,selling_slippage,task_maximum_buys_per_token,copy_sell_percentage,copy_sell,min_mcap,monitormode,enabled
Task1,XYZ,ABC...DEF,0.3,1.9,false,medium,0.1,0.1,0.5,0.05,0.05,2,true,true,0,false,true
Most made mistakes is deleting the headers row, aka the row with the attribute names.
DO NOT DELETE THE FIRST LINE! DO NOT DELETE THE FIRST LINE!
A valid tasks file looks like the example above. (obviously with valid private key and wallet_to_copy).
ALL FIELDS ARE REQUIRED, DO NOT LEAVE ANY FIELD EMPTY.
Boolean values are lowercase true/false. Just like with the configuration file.
Breaking down each field we get:
to use it set it to true
else to false
min, low, medium, high, veryHigh, unsafeMax
Both slippage options work with values between 0 and 1
.
Slippage of:
40% -> 0.4
50% -> 0.5
1% -> 0.01
Explained in the Configuration page.
Want to copy the sell percentage of the wallet you're copying? If the other wallet sells 50%, you also sell 50%. If they sell 100% , you sell 100%. Then set this option to true
.
Else the bot would always sell 100%.
Want to copy the sells of the other wallet?
true -> will copy sells
false -> will not sell
Percentage to sell at, 0.9 = sell when price is 90% of entry
0.3 = when price is 30% of entry
Percentage to sell at, 1.9 = sell when price is 190% of entry
1.3 = when price is 130% of entry
This is the minimum market cap in USD, of tokens you want to buy in. If you dont want to use this filter, then simply set it to 0
If this is true
, the bot wont buy anything, it would just monitor the transactions and print the wallets activites to the console. If false -> it would trade.
If this setting is off, this task wont be taken into consideration, and would be disabled. to enable/disable set it to true/false
.
Last updated