Samuel Monnier
Samuel Monnier
Hi @EmbarAlmog . Thanks for trying to reproduce it. I can't reproduce it either. It happened while the algorithm was running, when the bat_btc pair got added. My wild guess...
Actually I forgot to answer your question. No, I was not trying to trade bat_btc. As mentioned, this error arose in a part of the code that did not involve...
I don't see a reason for closing this issue.
Here you are. Poloniex added some USDT pairs and Catalyst crashed. Please reopen the issue, I can't. ``` Traceback (most recent call last): File "algo.py", line 1109, in simulate_orders=PAPER_TRADE, File...
Thanks for reopening. I think that in order to reproduce it, all you need to do is have an algorithm running live on Poloniex (not even necessarily trading), and wait...
You can load the relevant logger object in your algorithm (initialize function) and attach to it a NullHandler(). Its output will be muted. By modifying the handlers you can tune...
This won't work because you're creating a new logger, leaving the existing ones unchanged. Try to add this to initialize: ``` from catalyst.exchange.exchange_algorithm import log as log_exchange_algo from logbook import...
@AvishaiW Right. But unless I'm mistaken, this will also absorb all the data you log with your own custom logs.
Hi, Same problem, and yes, the problem persists after trying to reingest just omg_btc. Best, Samuel
Thanks, but I already tried to clean and reingest all the data (I need the data for all pairs, not only omg_btc). As far as I can tell, it is...