- 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
22 lines
387 B
Python
22 lines
387 B
Python
"""Core domain and pricing utilities."""
|
|
|
|
from .calculations import (
|
|
loan_to_value,
|
|
ltv_scenarios,
|
|
margin_call_price,
|
|
net_equity,
|
|
option_payoff,
|
|
portfolio_net_equity,
|
|
strategy_payoff,
|
|
)
|
|
|
|
__all__ = [
|
|
"loan_to_value",
|
|
"ltv_scenarios",
|
|
"margin_call_price",
|
|
"net_equity",
|
|
"option_payoff",
|
|
"portfolio_net_equity",
|
|
"strategy_payoff",
|
|
]
|