vectorbt icon indicating copy to clipboard operation
vectorbt copied to clipboard

Find your trading edge, using the fastest engine for backtesting, algorithmic trading, and research.

Results 244 vectorbt issues
Sort by recently updated
recently updated
newest added

Hello, I am not sure if this is actually a bug or issue or not but it seems default parameter/inputs are not behaving as described in the indicator factory documentation....

Hi, How would you use vectorbt to simulate the following? 1. You have a strategy that uses a set of time series unrelated to price. 2. You have a grid...

Hi All, I was having issues installing using `pip install vectorbt[full]`. My install kept failing with the TA-Lib package. I fixed this by first running `conda install -c conda-forge ta-lib`...

How do you handle missing price data? Let's say you are operating on an international portfolio. Business days are not aligned. As a result, you have ``nan`` values in your...

Perfectly willing to accept that I have done something wrong here, but following the example from the telegram.py source code I have the following: import pandas as pd import vectorbt...

Hi vectorbt experts, I was just experimenting with running multiple independent analysis in parallel. Initially, I used the `multiprocessing` module and noticed that the CPU utilization of a single process...

hi when i run in a Jupiter notebook this cell many times the memory of python process memory keep growing. ``` RSI = vbt.IndicatorFactory.from_talib('RSI') rsi = RSI.run(df['Close'], timeperiod=[14]) NATR =...

Can you please check your example notebook at https://nbviewer.org/github/polakowo/vectorbt/blob/master/examples/PortfolioOptimization.ipynb ![grafik](https://user-images.githubusercontent.com/29901736/140352353-7b6465c9-655c-4094-9dbd-11aec462ca32.png) ![grafik](https://user-images.githubusercontent.com/29901736/140351441-30a4127b-b7db-4313-9148-a0af1339d083.png) In [22], do you really want to refer to ``pf`` as defined in [14]? Or shouldn't it read ``rb_pf``?

When installing in a Google Cloud Jupyter Notebook (Pytorch 1.9) I get the following issue: `Installing collected packages: tzdata, backports.zoneinfo, pytz-deprecation-shim, tzlocal, llvmlite, schedule, plotly, numba, kaleido, imageio, dill, dateparser,...

hey there! First of all let me congratulate with you for this amazing project. HW accelerated backtesting is amazing :D I'm working on a comparison between a simple strategy I'm...