Va1b0rt
Va1b0rt
Does it make sense to have: > ```python > async def run_callbacks(jobs): > if jobs is None: > pass > else: > ``` since we could remove if jobs is...
Overall, I think the implementations described above are overly complicated. There's a simpler way, like this: ``` class Popup: def __init__(self, parent: str, message: str, task): self.parent = parent self.message...
> > Here we execute the provided function upon confirmation, which should be sufficient in most cases. > > Yeah, but (1) it's not what the OP asked for (it's...
I've confirmed that trading with leverage works as expected by running the bot with my custom strategy, which trades with the specified leverage. However, it seems to be an issue...
Well, yes. But this does not explain the behavior described above at all. In dry-run mode, it is included at 6x, but on real accounts, it is included in most...
Well, exactly, 20x. I myself can't understand where this number comes from. In the leverage() method, only futures_mode_leverage and futures_mode_leverage_rebuy_mode are used, the values of which I've provided earlier. And...
There are similar messages in the logs: 2024-01-28 06:11:24 - freqtrade.strategy.interface - WARNING - Outdated history for pair XVS/USDT:USDT. Last tick is 16 minutes old 2024-01-28 06:11:24 - freqtrade.strategy.interface -...
corrected the leverage value to 5. Only changed is_futures_mode = True I'll see what comes of it. but still there are doubts that this can help. Here is the part...
Changing the variable futures_mode_leverage back to its original value of 5 resolved the issue. Now, both on the demo account and on the real accounts, the bot enters trades with...
> hi @Va1b0rt , may i ask why you run 3 bot like this, any benefit ? Running three bots like this doesn't provide me with any additional benefits. The...