Skip to content

Commit 0d59b79

Browse files
TexasCodingclaude
andcommitted
docs: update version references to v3.5.4
- Update README.md with v3.5.4 release information - Update docs/index.md with new version and Lorenz indicator details - Update indicator count from 58+ to 59+ in all documentation - Highlight chaos theory analysis as new feature 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 3b24a8b commit 0d59b79

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ A **high-performance async Python SDK** for the [ProjectX Trading Platform](http
2121

2222
This Python SDK acts as a bridge between your trading strategies and the ProjectX platform, handling all the complex API interactions, data processing, and real-time connectivity.
2323

24-
## 🚀 v3.5.3 - Complete Documentation & Testing Improvements
24+
## 🚀 v3.5.4 - Lorenz Formula Indicator & Test Suite Improvements
2525

26-
**Latest Version**: v3.5.3 - Comprehensive documentation updates, complete test coverage for realtime_data_manager module, and modernized all code examples. Fixed type safety issues and achieved 100% test passing rate across the SDK.
26+
**Latest Version**: v3.5.4 - Introduces the Lorenz Formula indicator applying chaos theory to market analysis, plus comprehensive test suite reorganization and enhanced statistics module coverage.
2727

2828
**Key Benefits**:
2929
- 🎯 **Multi-Asset Strategies**: Trade ES vs NQ pairs, commodity spreads, sector rotation
@@ -32,7 +32,7 @@ This Python SDK acts as a bridge between your trading strategies and the Project
3232
- 🛡️ **Backward Compatible**: Existing single-instrument code continues to work
3333
-**Performance Optimized**: Parallel context creation and resource sharing
3434

35-
See [CHANGELOG.md](CHANGELOG.md) for complete v3.5.3 bug fixes, testing improvements, and documentation updates.
35+
See [CHANGELOG.md](CHANGELOG.md) for complete v3.5.4 features including the new Lorenz indicator and test improvements.
3636

3737
### 📦 Production Stability Guarantee
3838

docs/examples/notebooks/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Interactive Jupyter notebooks for exploring the ProjectX Python SDK.
1515
- **[Volume Profile Trading](https://github.com/TexasCoding/project-x-py/blob/main/notebooks/12_volume_profile.ipynb)** - Key level identification
1616

1717
### Technical Analysis
18-
- **[Indicator Showcase](https://github.com/TexasCoding/project-x-py/blob/main/notebooks/20_indicators.ipynb)** - All 58+ indicators demonstrated
18+
- **[Indicator Showcase](https://github.com/TexasCoding/project-x-py/blob/main/notebooks/20_indicators.ipynb)** - All 59+ indicators demonstrated
1919
- **[Pattern Recognition](https://github.com/TexasCoding/project-x-py/blob/main/notebooks/21_patterns.ipynb)** - FVG and Order Block detection
2020
- **[Multi-Timeframe Analysis](https://github.com/TexasCoding/project-x-py/blob/main/notebooks/22_mtf_analysis.ipynb)** - Confluence across timeframes
2121

docs/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
[![License](https://img.shields.io/github/license/TexasCoding/project-x-py.svg)](https://github.com/TexasCoding/project-x-py/blob/main/LICENSE)
66
[![Documentation Status](https://readthedocs.org/projects/project-x-py/badge/?version=latest)](https://project-x-py.readthedocs.io/en/latest/?badge=latest)
77

8-
**project-x-py** is a high-performance **async Python SDK** for the [ProjectX Trading Platform](https://www.projectx.com/) Gateway API. This library enables developers to build sophisticated trading strategies and applications by providing comprehensive async access to futures trading operations, real-time market data, Level 2 orderbook analysis, and a complete technical analysis suite with 58+ TA-Lib compatible indicators including pattern recognition.
8+
**project-x-py** is a high-performance **async Python SDK** for the [ProjectX Trading Platform](https://www.projectx.com/) Gateway API. This library enables developers to build sophisticated trading strategies and applications by providing comprehensive async access to futures trading operations, real-time market data, Level 2 orderbook analysis, and a complete technical analysis suite with 59+ TA-Lib compatible indicators including pattern recognition and chaos theory analysis.
99

10-
!!! note "Version 3.5.3 - Complete Documentation & Testing Improvements"
11-
**Latest Release**: Comprehensive documentation updates, complete test coverage for realtime_data_manager module, and modernized all code examples. Fixed type safety issues and achieved 100% test passing rate across the SDK. Previous releases introduced multi-instrument support enabling traders to manage multiple futures contracts simultaneously with pairs trading, cross-market arbitrage, and portfolio-level risk management. Full backward compatibility maintained.
10+
!!! note "Version 3.5.4 - Lorenz Formula Indicator & Test Suite Improvements"
11+
**Latest Release**: Introduces the innovative Lorenz Formula indicator applying chaos theory mathematics to market analysis, providing unique insights into market dynamics through volatility, trend strength, and volume patterns. Also includes comprehensive test suite reorganization for better maintainability and enhanced statistics module coverage. Full backward compatibility maintained with all existing APIs.
1212

1313
!!! note "Stable Production Release"
1414
Since v3.1.1, this project maintains strict semantic versioning with backward compatibility between minor versions. Breaking changes only occur in major version releases (4.0.0+). Deprecation warnings are provided for at least 2 minor versions before removal.
@@ -45,7 +45,7 @@ from project_x_py import TradingSuite
4545
from project_x_py.indicators import RSI, SMA, MACD
4646

4747
async def main():
48-
# V3.5: Multi-instrument TradingSuite for advanced strategies
48+
# V3.5.4: Multi-instrument TradingSuite with chaos theory indicators
4949
suite = await TradingSuite.create(
5050
instruments=["MNQ", "ES", "MGC"], # Multiple instruments
5151
timeframes=["1min", "5min"],

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)