OppOops

Results 3 comments of OppOops

I have write a draft version based on comments above, https://github.com/OppOops/backtesting.py/commit/1879d9d16dd1029c0f8a829249191c298101b84d the codes needs original `Backtest` class to run. ```python from backtesting.live import LiveTrade, LiveMarketOhlcv bt = Backtest(df_partial, SmaCross, commission=.002,...

Simple way to create janus queue in synchronous code (Python 3.6+). ```py import asyncio import janus def init_janus_queue(loop: asyncio.AbstractEventLoop): async def create_queue(): return janus.Queue() return loop.run_until_complete(create_queue()) #create your own loop...

Here is the suggestion to use normal git commands like this, which will need to change the ssh-key file permission and add the known_hosts in to list. Below we suppose...