- FastAPI + NiceGUI web application - QuantLib-based Black-Scholes pricing with Greeks - Protective put, laddered, and LEAPS strategies - Real-time WebSocket updates - TradingView-style charts via Lightweight-Charts - Docker containerization - GitLab CI/CD pipeline for VPS deployment - VPN-only access configuration
14 lines
357 B
Python
14 lines
357 B
Python
"""Reusable NiceGUI dashboard components for the Vault Dashboard."""
|
|
|
|
from .charts import CandlestickChart
|
|
from .greeks_table import GreeksTable
|
|
from .portfolio_view import PortfolioOverview
|
|
from .strategy_panel import StrategyComparisonPanel
|
|
|
|
__all__ = [
|
|
"CandlestickChart",
|
|
"GreeksTable",
|
|
"PortfolioOverview",
|
|
"StrategyComparisonPanel",
|
|
]
|