-
Notifications
You must be signed in to change notification settings - Fork 302
Description
As I found out this interesting project while I was struggling to develop my own version
first in Python and now in Javascript/NODEJS,
I would like to ask how do you determine WHEN to buy or sell a coin?
From a quick look at the code and modules, I couldn't get out any strategy, it seems manual.
So my issues and questions are :
-
Since you don't seem to use any indicators like MACD, RSI, EMA, MFI, Ichimoku, etc
to have some trading logic, is there any other than price target and is it hardcoded or customizable via a configuration file?
Do you have a fixed profit target somewhere in the code or config file that can be set?
Such as sell at +20% profit or -5% loss + trailing? -
Are there ANY filters to weed out any bad coins that may have Freeze/Mint authority still enabled
or mutable metadata or custom fees enabled which could cause problems like preventing a buyer from selling a token? -
Do you have a system that allows the user to select an X number of coins to trade,
once they fit into some basic safety criteria, or it just randomly buys and sells any coin that pops out of the bonding curve
and is then visible in the blockchain via Raydium / Dexscreener?
In other words are there any safety mechanisms in the bot ?
Thanks