You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(orderbook): fix volume accumulation and enhance market structure analytics
- Fixed critical orderbook volume accumulation bug (updates now replace, not accumulate)
- Fixed OHLCV misinterpretation of GatewayQuote daily volume field
- Enhanced trade classification with pre-update bid/ask capture
- Added price level refresh history tracking for temporal analysis
- Refactored support/resistance, clusters, and liquidity detection to use history
- Improved iceberg detection with refresh pattern analysis
- Added comprehensive debug and test scripts
- Updated to version 1.1.4
BREAKING CHANGE: get_liquidity_levels now has different parameters and returns
persistent liquidity based on refresh patterns instead of current snapshot
Co-Authored-By: Claude <[email protected]>
Copy file name to clipboardExpand all lines: README.md
+15-6Lines changed: 15 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,14 +24,17 @@ This Python SDK acts as a bridge between your trading strategies and the Project
24
24
25
25
**IMPORTANT**: This project is under active development. New updates may introduce breaking changes without backward compatibility. During this development phase, we prioritize clean, modern code architecture over maintaining legacy implementations.
The OrderBook class provides institutional-grade orderbook analytics for real-time market depth analysis. It includes advanced features like iceberg order detection, market imbalance analysis, volume profiling, and dynamic support/resistance identification.
9
+
The OrderBook class provides institutional-grade orderbook analytics for real-time market depth analysis. It includes advanced features like iceberg order detection with price level history tracking, market imbalance analysis, volume profiling, and dynamic support/resistance identification based on temporal patterns.
10
+
11
+
**New in v1.1.4**: Enhanced analytics using price level refresh history for detecting persistent levels, iceberg orders, and market maker activity zones.
Copy file name to clipboardExpand all lines: pyproject.toml
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
[project]
2
2
name = "project-x-py"
3
-
version = "1.1.3"
3
+
version = "1.1.4"
4
4
description = "High-performance Python SDK for futures trading with real-time WebSocket data, technical indicators, order management, and market depth analysis"
0 commit comments