Felipe Queis

Results 3 comments of Felipe Queis

@chrisleekr @chopeta ``` const percent = process.env.PERCENT_PER_TRADE const use = openOrders == 0 ? (percent/100) * balance : balance / (100/percent - openOrders) ```

@chrisleekr yeah it keeps the open trades to split the entering amount by a certain percentage. Btw your example is wrong. See: Trade 1: - Open trades: 0 - Balance:...

> > > Oh, so you meant, we should track trade history for the coin? Not exactly. From your documentation: > **Buy signal:** The bot will continuously monitor the lowest...