Skip to content

Commit c8f1465

Browse files
authored
Merge pull request #958 from Lumiwealth/version/4.4.43
v4.4.43 - Hotfix: add_ohlc actually shipped
2 parents 9d3ee59 + 1c42a13 commit c8f1465

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,3 +86,6 @@ backtest_runs/
8686
context*.json
8787
!context7.json
8888
/tests/backtest/_manual_runs
89+
90+
# Local scratch / diagnostics (never commit)
91+
tmp/

CHANGELOG.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,23 @@
11
# Changelog
22

3-
## 4.4.42 - Unreleased
3+
## 4.4.43 - 2026-01-30
4+
5+
### Added
6+
- Charting: `Strategy.add_ohlc()` and `Strategy.get_ohlc_df()` for exporting OHLC (candlestick) indicator series.
7+
- Indicators: `plot_indicators()` now supports OHLC series in `*_indicators.html` and exports `type=ohlc` rows in `*_indicators.csv`.
8+
- Docs: add seconds-level backtesting guidance and expand seconds-mode notes.
9+
10+
### Changed
11+
- Charting: `Strategy.add_line()` now returns the appended dict (consistent with other chart helpers).
12+
- Docs: recommend `add_ohlc()` for plotting price bars and `add_line()` for single-value indicators.
13+
14+
### Fixed
15+
- Backtest executor safe-sleep overload now applies only in backtests and uses real sleep outside backtesting.
16+
17+
## 4.4.42 - 2026-01-30
18+
19+
**NOTE:** The PyPI `lumibot==4.4.42` artifact was published from an older commit and does **not** include the changes
20+
listed below. Upgrade to `lumibot==4.4.43`.
421

522
### Added
623
- Charting: `Strategy.add_ohlc()` and `Strategy.get_ohlc_df()` for exporting OHLC (candlestick) indicator series.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def _maybe_copy_theta_terminal(self):
4343

4444
setuptools.setup(
4545
name="lumibot",
46-
version="4.4.42",
46+
version="4.4.43",
4747
author="Robert Grzesik",
4848
author_email="rob@lumiwealth.com",
4949
description="Backtesting and Trading Library, Made by Lumiwealth",

0 commit comments

Comments
 (0)