Rayn0r

Results 33 comments of Rayn0r
trafficstars

I think there is reason behind the fact, that a minimum portion of your trade remains in your wallet, even thought you want to sell 100%. I noticed that the...

As far as I understood, the MA(moving average) is the mean value of the closing price over certain period of time. So to calculate SMA(10), you sum up the coin...

Please have a look at #398 . The buy logic has some flaws. I tried to fix them a few months ago, but did not succeed completely. But I think...

I faced the same situation again this morning. Last night I had 3 open trades with "Max. Open Trades" set to 4 and "Max. Buy Open Orders" set to 2....

@chrisleekr I think the code does not handle what I think it should. If I understood this correctly then the code does not check whether or not "currently open trades"...

My above code doesn't seem quite right. I think this is closer to the truth: ``` // If the last buy price is recorded, this is one of open trades....

I found a case where above code did not do what it should. So here is a new version: ``` // If the last buy price is recorded, this is...

This condition will prevent the bot from opening number of trades greater than orderLimitMaxOpenTrades, ``` if (currentBuyOpenOrders + currentOpenTrades > orderLimitMaxOpenTrades) { return true; } ``` but it will not...

Could this already do the trick: ``` const isExceedingMaxBuyOpenOrders = async (logger, data) => { const { symbolConfiguration: { botOptions: { orderLimit: { enabled: orderLimitEnabled, maxBuyOpenOrders: orderLimitMaxBuyOpenOrders maxOpenTrades: orderLimitMaxOpenTrades }...

I think this could work. I'm not sure how to use NOT correctly with `lastBuyPrice`. So this may not do what I expect. Any help is very much appreciated. ```...