Dear members,
I am looking around the bots at 3commas.io, cryptohoppers etc. but I don't found that type of bot what I'm looking for :/
I am looking for a bot in BTC/USDT pair, which will buy after a percentual dip within a certain timespan. That means it support as start-signal like cryptocurrencyalerting.com relative chart signals during a time-period!!! E.g. it should always buy, if the price fail 0.5% within one hour and should sell that same order with e.g. 0.5% profit. In an endless loop.
That's basically all - a very simple and easy strategy.
On cryptocurrencyalerting.com I found percentage price alert, which could initiate the deal. But I won't able to connect this to a bot.
Here is bit advanced variant in form of the pseudo-code. I written it quick-dirty in 5min. It's not complete, nor perfect. But enough to get the whole idea:
$coinArr = ['BTC','ETH','ADA','BNB','SOL'] ;all other Pair is USDT
$maxSimultanTrade = 10
$maxSimultanTradeperPair = 3
Do
;check all coins in row and start/buy that coin first, which lost 8% within last 24h; set income at 5%; 50% of earn in Coin, rest in USDT
trade($coinArr,8,24,5,50)
;check all coins in row and start/buy that first coin, which lost 1% within last 2h; set income at 0.75%; 80% of earn in Coin, rest in USDT
trade($coinArr,1,2,0.75,80)
Until 0
Anybody has an idea?
I want to provide 0.5-1 BTC in that algorithm. If somebody could realize that, we share the earning.