sugizo
sugizo
**code** `qs.reports.full(stock)` **result** ``` /usr/local/lib/python3.11/dist-packages/quantstats/_plotting/core.py:294: FutureWarning: Passing additional kwargs to DatetimeIndexResampler.sum has no impact on the result and is deprecated. This will raise a TypeError in a future version of...
**code** ``` import pandas_datareader.data as web st = dt.datetime(2024, 1, 11) en = dt.datetime(2024, 1, 19) data = web.get_data_yahoo('AAPL', start = st, end = en) print(data) ``` **result** ``` AttributeError...
you right but when you use another function it won't affect the cagr value result even you already set the periods value **e.g.** ``` qs.reports.metrics(stock, periods_per_year = 252) qs.reports.basic(stock, periods_per_year...
code from [pypi](https://pypi.org/project/portfolio-backtest/) ``` from portfolio_backtest import Backtest Backtest(tickers=["VTI", "AGG", "GLD"]).run() ``` **result** ``` KeyError Traceback (most recent call last) [/usr/local/lib/python3.11/dist-packages/pandas/core/indexes/base.py](https://localhost:8080/#) in get_loc(self, key) 3804 try: -> 3805 return self._engine.get_loc(casted_key)...
yes, installed version is `kord-5.0` via `pip install -U kord`  thanks and best regards
**execute on wsl 2** ``` $ sudo frankenphp php-server --listen :8144 2025/02/27 20:49:58.104 WARN admin admin endpoint disabled 2025/02/27 20:49:58.105 INFO tls.cache.maintenance started background certificate maintenance {"cache": "0xc0008a0280"} 2025/02/27 20:49:58.165...

**test with docker in wsl (debian os) is not work** ``` sudo apt update sudo apt install -y curl docker.io cd mkdir -p ~/frankenphp sudo docker run -v ~/frankenphp:/app/public -p...
**wsl only work with docker** ``` sudo apt update sudo apt install -y curl docker.io cd mkdir -p ~/frankenphp echo "" > ~/frankenphp/phpinfo.php sudo docker run -v ~/frankenphp:/app/public -p 80:80...
tried to simplified the first posted, is work, but again the first posted (frankenphp, wordpress) reported is still not worked ``` sudo apt update sudo apt install -y curl curl...