Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion QPK_PIN
Original file line number Diff line number Diff line change
@@ -1 +1 @@
f1d2c323b2a96383acec83a07bbf1816938c4650
0af622ac9d47f7ef93f9379f9ded314c27a344ff
7 changes: 7 additions & 0 deletions src/quant_platform_kit.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ README.md
pyproject.toml
setup.py
src/quant_platform_kit/__init__.py
src/quant_platform_kit/position_sizing.py
src/quant_platform_kit/strategy_contracts.py
src/quant_platform_kit.egg-info/PKG-INFO
src/quant_platform_kit.egg-info/SOURCES.txt
Expand Down Expand Up @@ -99,6 +100,8 @@ src/quant_platform_kit/quantconnect/models.py
src/quant_platform_kit/risk/__init__.py
src/quant_platform_kit/risk/contracts.py
src/quant_platform_kit/risk/engine.py
src/quant_platform_kit/risk/gate.py
src/quant_platform_kit/risk/portfolio_diagnostics.py
src/quant_platform_kit/schwab/__init__.py
src/quant_platform_kit/schwab/auth.py
src/quant_platform_kit/schwab/execution.py
Expand Down Expand Up @@ -132,6 +135,7 @@ src/quant_platform_kit/strategy_lifecycle/shadow_validator.py
src/quant_platform_kit/strategy_lifecycle/strategy_health_score.py
src/quant_platform_kit/strategy_lifecycle/update_orchestrator.py
src/quant_platform_kit/strategy_lifecycle/update_policy.py
tests/test_backtest_orchestrator.py
tests/test_binance_account.py
tests/test_binance_client.py
tests/test_binance_execution.py
Expand Down Expand Up @@ -173,9 +177,12 @@ tests/test_notification_events.py
tests/test_notification_localization.py
tests/test_notification_redaction.py
tests/test_package_version.py
tests/test_portfolio_diagnostics.py
tests/test_position_sizing.py
tests/test_qsl_compat_metadata.py
tests/test_qsl_pin_manifests.py
tests/test_quantconnect.py
tests/test_risk_gate.py
tests/test_runtime_assembly.py
tests/test_runtime_config.py
tests/test_runtime_logging.py
Expand Down
47 changes: 47 additions & 0 deletions src/quant_platform_kit/notifications/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
"""Notification integrations."""

from .renderer_base import ( # noqa: F401 — shared renderer primitives
as_float_or_none,
build_timing_audit_lines,
build_tqqq_risk_control_lines,
compact_dashboard_lines,
effective_volatility_delever_threshold,
format_percent,
format_percentile,
format_sample_count,
format_signal_snapshot_line,
format_tqqq_volatility_delever_allocation_detail,
format_volatility_delever_threshold_detail,
is_compact_dashboard_audit_line,
is_truthy,
localize_price_source_label,
localize_timing_contract,
present,
relabel_dashboard_cash_labels,
resolve_execution,
split_detail_segment,
split_labeled_text,
translator_uses_zh,
)

from .cycle_channel import (
CYCLE_CHANNEL_DINGTALK,
CYCLE_CHANNEL_FEISHU,
Expand Down Expand Up @@ -86,6 +110,29 @@
)

__all__ = [
# renderer_base
"as_float_or_none",
"build_timing_audit_lines",
"build_tqqq_risk_control_lines",
"compact_dashboard_lines",
"effective_volatility_delever_threshold",
"format_percent",
"format_percentile",
"format_sample_count",
"format_signal_snapshot_line",
"format_tqqq_volatility_delever_allocation_detail",
"format_volatility_delever_threshold_detail",
"is_compact_dashboard_audit_line",
"is_truthy",
"localize_price_source_label",
"localize_timing_contract",
"present",
"relabel_dashboard_cash_labels",
"resolve_execution",
"split_detail_segment",
"split_labeled_text",
"translator_uses_zh",
# channels
"CYCLE_CHANNEL_DINGTALK",
"CYCLE_CHANNEL_FEISHU",
"CYCLE_CHANNEL_SERVERCHAN",
Expand Down
Loading
Loading