High-performance GPU-accelerated trading terminal built with C++20 and Qt 6.
A desktop workstation for visualizing market structure, order flow, and real-time data — powered by a custom rendering pipeline and a client/server architecture designed for speed.
High-density order book visualization with real-time updates and smooth interaction.
Integrated equity charting with insider transaction overlays and contextual signals.
Fast symbol discovery and routing into the charting system.
Sentinel is built around a single constraint:
dense market data should remain fluid, interactive, and interpretable under load
The system combines:
- GPU-first rendering (no per-frame allocations)
- Real-time streaming data pipelines
- Desktop workstation UI (Qt + QML + Scene Graph)
- Trading and simulation infrastructure
- GPU-accelerated heatmap (single-quad texture sampling)
- ~110+ FPS during pan/zoom with live axis updates
- Zero-allocation axis rendering
- Candle, hollow, and line chart modes
- Consistent viewport mapping across overlays
- High-density grid support
- Live heatmap chart
- Candle overlays aligned to heatmap mapping
- Stock chart workspace
- SEC insider signal overlays
- Watchlists with smart routing
- TradingView screener integration
- Order book / DOM ladder
- Paper trading infrastructure
- TP/SL bracket handling (server-backed)
- Replay and backtesting groundwork
- Shared simulation core
- Algo integration foundation
- Client/server split
- Custom stream protocol
- TLS / WSS transport support
- Config-driven runtime
- Deterministic render/data flow
The latest integration introduced a major expansion across rendering, trading, and system architecture.
Highlights:
- Unified chart rendering architecture
- Major
UnifiedGridRendererrefactor - Paper trading + simulation vertical slice
- Stock chart + SEC overlays
- Watchlist, screener, and DOM improvements
- Transport security (TLS / WSS)
TPO, Footprint, and Volume Profile are implemented at a foundational level but remain disabled in the UI until complete.
Download the latest build:
https://github.com/pattty847/Sentinel-Trading-Terminal/releases
setx QT_MSVC C:\Qt\6.9.3\msvc2022_64
setx VCPKG_ROOT C:\dev\vcpkg
git clone https://github.com/pattty847/Sentinel.git
cd Sentinel
cmake --preset windows-msvc
cmake --build --preset windows-msvc -jRun:
build/windows-msvc/apps/sentinel_gui/Release/sentinel_gui.exebrew install qt cmake ninja
export QT_MAC=/opt/homebrew/opt/qt
export VCPKG_ROOT=$HOME/vcpkg
git clone https://github.com/pattty847/Sentinel.git
cd Sentinel
cmake --preset mac-clang
cmake --build --preset mac-clang -jsudo apt install build-essential cmake ninja-build qt6-base-dev qt6-declarative-dev
export QT_LINUX=/usr/lib/qt6
export VCPKG_ROOT=$HOME/vcpkg
git clone https://github.com/pattty847/Sentinel.git
cd Sentinel
cmake --preset linux-gcc
cmake --build --preset linux-gcc -jStart server:
./build/linux-gcc/bin/sentinel-serverStart GUI:
./build/linux-gcc/apps/sentinel_gui/sentinel_guicp config/server_config.yaml config/.server_config.yaml
cp config/client_config.yaml config/.client_config.yamlExample:
heatmap:
timeframe: 1000
grid_width: 2048
grid_height: 1024
server:
default_symbols: BTC-USD
gui:
api_port: 17100libs/core/ Data layer (protocol, market data, simulation)
libs/gui/ Qt rendering + UI system
apps/ Client, server, tools
Single authoritative viewport shared across all rendering layers.
AGPL-3.0


