| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2026-08-28 | 1.2 kB | |
| v2.0.1 source code.tar.gz | 2026-08-28 | 1.8 MB | |
| v2.0.1 source code.zip | 2026-08-28 | 2.0 MB | |
| Totals: 3 Items | 3.8 MB | 2 | |
What's Changed
Added
- Adds
use_logto thereturnsindicator andreturnvfor computing log returns. - Adds
typing_extensionsto install dependencies. It was already imported bypybroker.strategybut never declared, so installs relied on it being pulled in indirectly by another dependency.
Changed
- Requires
optuna>=3.4. Earlier versions store the sampler's random generator in a different place, whereoptimizecould not re-seed it, so passingseeddid not make the search reproducible.
Fixed
- Fixes
parse_timeframeto reject malformed timeframes instead of silently reading a valid token out of them;"1.5h"was parsed as 5 hours and"-1h"as 1 hour. - Fixes the "Finished training model" log message, which raised a
TypeErrorinstead of reporting the elapsed training time.