Oleg Polakow

Results 285 comments of Oleg Polakow

I can't fully understand what learning mode is, the code is a little bit of a mess. The model in this example doesn't learn anything new, it simply adds some...

Can't comment on these tools as I haven't used them in this setting. You may find papers training an RL agent for conversation. You would need to establish a reward...

@shaktisd `pip install "jupyterlab>=3" "ipywidgets>=7.6"`, then `pip install plotly==5.10.0`, then run JupyterLab again.

Hi @krzysztofstelmaszczyk, you can do the following ```python fig.update_xaxes( rangebreaks=[ dict(bounds=["sat", "mon"]), #hide weekends dict(values=["2015-12-25", "2016-01-01"]) # hide Christmas and New Year's ] ) ```

For one month you can simply set `30d`, you cannot use `1M` because it's an irregular date offset that cannot be converted into a timedelta, which is required for annualization.

Fees are applied using the formula `size * price * fees + fixed_fees`. Let's say your fees depend on the order size, such as `size * fees` where `fees` is...

Python 3.11 requires many adjustments, it will be added once Python 3.12 comes out. Only the pro version supports it currently.

You can pass `ctx_select=False` to `sort_call_seq_nb` - https://github.com/polakowo/vectorbt/blob/4306accbbfb97ca19df21988296b4bf04aa12087/vectorbt/portfolio/nb.py#L1034

Thanks. It surprises me that this bug hasn't been fixed yet. Seems like this package isn't actively maintained anymore.

@cactus1549 I wanted to integrate pyfolio into vectorbt but realized it wasn't worth the effort of adding a library that uses an outdated tech stack. Just implemented the most useful...