ml4t-diagnostic 0.1.0a1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ml4t/diagnostic/AGENT.md +25 -0
- ml4t/diagnostic/__init__.py +166 -0
- ml4t/diagnostic/backends/__init__.py +10 -0
- ml4t/diagnostic/backends/adapter.py +192 -0
- ml4t/diagnostic/backends/polars_backend.py +899 -0
- ml4t/diagnostic/caching/__init__.py +40 -0
- ml4t/diagnostic/caching/cache.py +331 -0
- ml4t/diagnostic/caching/decorators.py +131 -0
- ml4t/diagnostic/caching/smart_cache.py +339 -0
- ml4t/diagnostic/config/AGENT.md +24 -0
- ml4t/diagnostic/config/README.md +267 -0
- ml4t/diagnostic/config/__init__.py +219 -0
- ml4t/diagnostic/config/barrier_config.py +277 -0
- ml4t/diagnostic/config/base.py +301 -0
- ml4t/diagnostic/config/event_config.py +148 -0
- ml4t/diagnostic/config/feature_config.py +404 -0
- ml4t/diagnostic/config/multi_signal_config.py +55 -0
- ml4t/diagnostic/config/portfolio_config.py +215 -0
- ml4t/diagnostic/config/report_config.py +391 -0
- ml4t/diagnostic/config/sharpe_config.py +202 -0
- ml4t/diagnostic/config/signal_config.py +206 -0
- ml4t/diagnostic/config/trade_analysis_config.py +310 -0
- ml4t/diagnostic/config/validation.py +279 -0
- ml4t/diagnostic/core/__init__.py +29 -0
- ml4t/diagnostic/core/numba_utils.py +315 -0
- ml4t/diagnostic/core/purging.py +372 -0
- ml4t/diagnostic/core/sampling.py +471 -0
- ml4t/diagnostic/errors/__init__.py +205 -0
- ml4t/diagnostic/evaluation/AGENT.md +26 -0
- ml4t/diagnostic/evaluation/__init__.py +437 -0
- ml4t/diagnostic/evaluation/autocorrelation.py +531 -0
- ml4t/diagnostic/evaluation/barrier_analysis.py +1050 -0
- ml4t/diagnostic/evaluation/binary_metrics.py +910 -0
- ml4t/diagnostic/evaluation/dashboard.py +715 -0
- ml4t/diagnostic/evaluation/diagnostic_plots.py +1037 -0
- ml4t/diagnostic/evaluation/distribution/__init__.py +499 -0
- ml4t/diagnostic/evaluation/distribution/moments.py +299 -0
- ml4t/diagnostic/evaluation/distribution/tails.py +777 -0
- ml4t/diagnostic/evaluation/distribution/tests.py +470 -0
- ml4t/diagnostic/evaluation/drift/__init__.py +139 -0
- ml4t/diagnostic/evaluation/drift/analysis.py +432 -0
- ml4t/diagnostic/evaluation/drift/domain_classifier.py +517 -0
- ml4t/diagnostic/evaluation/drift/population_stability_index.py +310 -0
- ml4t/diagnostic/evaluation/drift/wasserstein.py +388 -0
- ml4t/diagnostic/evaluation/event_analysis.py +647 -0
- ml4t/diagnostic/evaluation/excursion.py +390 -0
- ml4t/diagnostic/evaluation/feature_diagnostics.py +873 -0
- ml4t/diagnostic/evaluation/feature_outcome.py +666 -0
- ml4t/diagnostic/evaluation/framework.py +935 -0
- ml4t/diagnostic/evaluation/metric_registry.py +255 -0
- ml4t/diagnostic/evaluation/metrics/AGENT.md +23 -0
- ml4t/diagnostic/evaluation/metrics/__init__.py +133 -0
- ml4t/diagnostic/evaluation/metrics/basic.py +160 -0
- ml4t/diagnostic/evaluation/metrics/conditional_ic.py +469 -0
- ml4t/diagnostic/evaluation/metrics/feature_outcome.py +475 -0
- ml4t/diagnostic/evaluation/metrics/ic_statistics.py +446 -0
- ml4t/diagnostic/evaluation/metrics/importance_analysis.py +338 -0
- ml4t/diagnostic/evaluation/metrics/importance_classical.py +375 -0
- ml4t/diagnostic/evaluation/metrics/importance_mda.py +371 -0
- ml4t/diagnostic/evaluation/metrics/importance_shap.py +715 -0
- ml4t/diagnostic/evaluation/metrics/information_coefficient.py +527 -0
- ml4t/diagnostic/evaluation/metrics/interactions.py +772 -0
- ml4t/diagnostic/evaluation/metrics/monotonicity.py +226 -0
- ml4t/diagnostic/evaluation/metrics/risk_adjusted.py +324 -0
- ml4t/diagnostic/evaluation/multi_signal.py +550 -0
- ml4t/diagnostic/evaluation/portfolio_analysis/__init__.py +83 -0
- ml4t/diagnostic/evaluation/portfolio_analysis/analysis.py +734 -0
- ml4t/diagnostic/evaluation/portfolio_analysis/metrics.py +589 -0
- ml4t/diagnostic/evaluation/portfolio_analysis/results.py +334 -0
- ml4t/diagnostic/evaluation/report_generation.py +824 -0
- ml4t/diagnostic/evaluation/signal_selector.py +452 -0
- ml4t/diagnostic/evaluation/stat_registry.py +139 -0
- ml4t/diagnostic/evaluation/stationarity/__init__.py +97 -0
- ml4t/diagnostic/evaluation/stationarity/analysis.py +518 -0
- ml4t/diagnostic/evaluation/stationarity/augmented_dickey_fuller.py +296 -0
- ml4t/diagnostic/evaluation/stationarity/kpss_test.py +308 -0
- ml4t/diagnostic/evaluation/stationarity/phillips_perron.py +365 -0
- ml4t/diagnostic/evaluation/stats/AGENT.md +43 -0
- ml4t/diagnostic/evaluation/stats/__init__.py +191 -0
- ml4t/diagnostic/evaluation/stats/backtest_overfitting.py +219 -0
- ml4t/diagnostic/evaluation/stats/bootstrap.py +228 -0
- ml4t/diagnostic/evaluation/stats/deflated_sharpe_ratio.py +591 -0
- ml4t/diagnostic/evaluation/stats/false_discovery_rate.py +295 -0
- ml4t/diagnostic/evaluation/stats/hac_standard_errors.py +108 -0
- ml4t/diagnostic/evaluation/stats/minimum_track_record.py +408 -0
- ml4t/diagnostic/evaluation/stats/moments.py +164 -0
- ml4t/diagnostic/evaluation/stats/rademacher_adjustment.py +436 -0
- ml4t/diagnostic/evaluation/stats/reality_check.py +155 -0
- ml4t/diagnostic/evaluation/stats/sharpe_inference.py +219 -0
- ml4t/diagnostic/evaluation/themes.py +330 -0
- ml4t/diagnostic/evaluation/threshold_analysis.py +957 -0
- ml4t/diagnostic/evaluation/trade_analysis.py +1136 -0
- ml4t/diagnostic/evaluation/trade_dashboard/__init__.py +32 -0
- ml4t/diagnostic/evaluation/trade_dashboard/app.py +315 -0
- ml4t/diagnostic/evaluation/trade_dashboard/export/__init__.py +18 -0
- ml4t/diagnostic/evaluation/trade_dashboard/export/csv.py +82 -0
- ml4t/diagnostic/evaluation/trade_dashboard/export/html.py +276 -0
- ml4t/diagnostic/evaluation/trade_dashboard/io.py +166 -0
- ml4t/diagnostic/evaluation/trade_dashboard/normalize.py +304 -0
- ml4t/diagnostic/evaluation/trade_dashboard/stats.py +386 -0
- ml4t/diagnostic/evaluation/trade_dashboard/style.py +79 -0
- ml4t/diagnostic/evaluation/trade_dashboard/tabs/__init__.py +21 -0
- ml4t/diagnostic/evaluation/trade_dashboard/tabs/patterns.py +354 -0
- ml4t/diagnostic/evaluation/trade_dashboard/tabs/shap_analysis.py +280 -0
- ml4t/diagnostic/evaluation/trade_dashboard/tabs/stat_validation.py +186 -0
- ml4t/diagnostic/evaluation/trade_dashboard/tabs/worst_trades.py +236 -0
- ml4t/diagnostic/evaluation/trade_dashboard/types.py +129 -0
- ml4t/diagnostic/evaluation/trade_shap/__init__.py +102 -0
- ml4t/diagnostic/evaluation/trade_shap/alignment.py +188 -0
- ml4t/diagnostic/evaluation/trade_shap/characterize.py +413 -0
- ml4t/diagnostic/evaluation/trade_shap/cluster.py +302 -0
- ml4t/diagnostic/evaluation/trade_shap/explain.py +208 -0
- ml4t/diagnostic/evaluation/trade_shap/hypotheses/__init__.py +23 -0
- ml4t/diagnostic/evaluation/trade_shap/hypotheses/generator.py +290 -0
- ml4t/diagnostic/evaluation/trade_shap/hypotheses/matcher.py +251 -0
- ml4t/diagnostic/evaluation/trade_shap/hypotheses/templates.yaml +467 -0
- ml4t/diagnostic/evaluation/trade_shap/models.py +386 -0
- ml4t/diagnostic/evaluation/trade_shap/normalize.py +116 -0
- ml4t/diagnostic/evaluation/trade_shap/pipeline.py +263 -0
- ml4t/diagnostic/evaluation/trade_shap_dashboard.py +283 -0
- ml4t/diagnostic/evaluation/trade_shap_diagnostics.py +588 -0
- ml4t/diagnostic/evaluation/validated_cv.py +535 -0
- ml4t/diagnostic/evaluation/visualization.py +1050 -0
- ml4t/diagnostic/evaluation/volatility/__init__.py +45 -0
- ml4t/diagnostic/evaluation/volatility/analysis.py +351 -0
- ml4t/diagnostic/evaluation/volatility/arch.py +258 -0
- ml4t/diagnostic/evaluation/volatility/garch.py +460 -0
- ml4t/diagnostic/integration/__init__.py +48 -0
- ml4t/diagnostic/integration/backtest_contract.py +671 -0
- ml4t/diagnostic/integration/data_contract.py +316 -0
- ml4t/diagnostic/integration/engineer_contract.py +226 -0
- ml4t/diagnostic/logging/__init__.py +77 -0
- ml4t/diagnostic/logging/logger.py +245 -0
- ml4t/diagnostic/logging/performance.py +234 -0
- ml4t/diagnostic/logging/progress.py +234 -0
- ml4t/diagnostic/logging/wandb.py +412 -0
- ml4t/diagnostic/metrics/__init__.py +9 -0
- ml4t/diagnostic/metrics/percentiles.py +128 -0
- ml4t/diagnostic/py.typed +1 -0
- ml4t/diagnostic/reporting/__init__.py +43 -0
- ml4t/diagnostic/reporting/base.py +130 -0
- ml4t/diagnostic/reporting/html_renderer.py +275 -0
- ml4t/diagnostic/reporting/json_renderer.py +51 -0
- ml4t/diagnostic/reporting/markdown_renderer.py +117 -0
- ml4t/diagnostic/results/AGENT.md +24 -0
- ml4t/diagnostic/results/__init__.py +105 -0
- ml4t/diagnostic/results/barrier_results/__init__.py +36 -0
- ml4t/diagnostic/results/barrier_results/hit_rate.py +304 -0
- ml4t/diagnostic/results/barrier_results/precision_recall.py +266 -0
- ml4t/diagnostic/results/barrier_results/profit_factor.py +297 -0
- ml4t/diagnostic/results/barrier_results/tearsheet.py +397 -0
- ml4t/diagnostic/results/barrier_results/time_to_target.py +305 -0
- ml4t/diagnostic/results/barrier_results/validation.py +38 -0
- ml4t/diagnostic/results/base.py +177 -0
- ml4t/diagnostic/results/event_results.py +349 -0
- ml4t/diagnostic/results/feature_results.py +787 -0
- ml4t/diagnostic/results/multi_signal_results.py +431 -0
- ml4t/diagnostic/results/portfolio_results.py +281 -0
- ml4t/diagnostic/results/sharpe_results.py +448 -0
- ml4t/diagnostic/results/signal_results/__init__.py +74 -0
- ml4t/diagnostic/results/signal_results/ic.py +581 -0
- ml4t/diagnostic/results/signal_results/irtc.py +110 -0
- ml4t/diagnostic/results/signal_results/quantile.py +392 -0
- ml4t/diagnostic/results/signal_results/tearsheet.py +456 -0
- ml4t/diagnostic/results/signal_results/turnover.py +213 -0
- ml4t/diagnostic/results/signal_results/validation.py +147 -0
- ml4t/diagnostic/signal/AGENT.md +17 -0
- ml4t/diagnostic/signal/__init__.py +69 -0
- ml4t/diagnostic/signal/_report.py +152 -0
- ml4t/diagnostic/signal/_utils.py +261 -0
- ml4t/diagnostic/signal/core.py +275 -0
- ml4t/diagnostic/signal/quantile.py +148 -0
- ml4t/diagnostic/signal/result.py +214 -0
- ml4t/diagnostic/signal/signal_ic.py +129 -0
- ml4t/diagnostic/signal/turnover.py +182 -0
- ml4t/diagnostic/splitters/AGENT.md +19 -0
- ml4t/diagnostic/splitters/__init__.py +36 -0
- ml4t/diagnostic/splitters/base.py +501 -0
- ml4t/diagnostic/splitters/calendar.py +421 -0
- ml4t/diagnostic/splitters/calendar_config.py +91 -0
- ml4t/diagnostic/splitters/combinatorial.py +1064 -0
- ml4t/diagnostic/splitters/config.py +322 -0
- ml4t/diagnostic/splitters/cpcv/__init__.py +57 -0
- ml4t/diagnostic/splitters/cpcv/combinations.py +119 -0
- ml4t/diagnostic/splitters/cpcv/partitioning.py +263 -0
- ml4t/diagnostic/splitters/cpcv/purge_engine.py +379 -0
- ml4t/diagnostic/splitters/cpcv/windows.py +190 -0
- ml4t/diagnostic/splitters/group_isolation.py +329 -0
- ml4t/diagnostic/splitters/persistence.py +316 -0
- ml4t/diagnostic/splitters/utils.py +207 -0
- ml4t/diagnostic/splitters/walk_forward.py +757 -0
- ml4t/diagnostic/utils/__init__.py +42 -0
- ml4t/diagnostic/utils/config.py +542 -0
- ml4t/diagnostic/utils/dependencies.py +318 -0
- ml4t/diagnostic/utils/sessions.py +127 -0
- ml4t/diagnostic/validation/__init__.py +54 -0
- ml4t/diagnostic/validation/dataframe.py +274 -0
- ml4t/diagnostic/validation/returns.py +280 -0
- ml4t/diagnostic/validation/timeseries.py +299 -0
- ml4t/diagnostic/visualization/AGENT.md +19 -0
- ml4t/diagnostic/visualization/__init__.py +223 -0
- ml4t/diagnostic/visualization/backtest/__init__.py +98 -0
- ml4t/diagnostic/visualization/backtest/cost_attribution.py +762 -0
- ml4t/diagnostic/visualization/backtest/executive_summary.py +895 -0
- ml4t/diagnostic/visualization/backtest/interactive_controls.py +673 -0
- ml4t/diagnostic/visualization/backtest/statistical_validity.py +874 -0
- ml4t/diagnostic/visualization/backtest/tearsheet.py +565 -0
- ml4t/diagnostic/visualization/backtest/template_system.py +373 -0
- ml4t/diagnostic/visualization/backtest/trade_plots.py +1172 -0
- ml4t/diagnostic/visualization/barrier_plots.py +782 -0
- ml4t/diagnostic/visualization/core.py +1060 -0
- ml4t/diagnostic/visualization/dashboards/__init__.py +36 -0
- ml4t/diagnostic/visualization/dashboards/base.py +582 -0
- ml4t/diagnostic/visualization/dashboards/importance.py +801 -0
- ml4t/diagnostic/visualization/dashboards/interaction.py +263 -0
- ml4t/diagnostic/visualization/dashboards.py +43 -0
- ml4t/diagnostic/visualization/data_extraction/__init__.py +48 -0
- ml4t/diagnostic/visualization/data_extraction/importance.py +649 -0
- ml4t/diagnostic/visualization/data_extraction/interaction.py +504 -0
- ml4t/diagnostic/visualization/data_extraction/types.py +113 -0
- ml4t/diagnostic/visualization/data_extraction/validation.py +66 -0
- ml4t/diagnostic/visualization/feature_plots.py +888 -0
- ml4t/diagnostic/visualization/interaction_plots.py +618 -0
- ml4t/diagnostic/visualization/portfolio/__init__.py +41 -0
- ml4t/diagnostic/visualization/portfolio/dashboard.py +514 -0
- ml4t/diagnostic/visualization/portfolio/drawdown_plots.py +341 -0
- ml4t/diagnostic/visualization/portfolio/returns_plots.py +487 -0
- ml4t/diagnostic/visualization/portfolio/risk_plots.py +301 -0
- ml4t/diagnostic/visualization/report_generation.py +1343 -0
- ml4t/diagnostic/visualization/signal/__init__.py +103 -0
- ml4t/diagnostic/visualization/signal/dashboard.py +911 -0
- ml4t/diagnostic/visualization/signal/event_plots.py +514 -0
- ml4t/diagnostic/visualization/signal/ic_plots.py +635 -0
- ml4t/diagnostic/visualization/signal/multi_signal_dashboard.py +974 -0
- ml4t/diagnostic/visualization/signal/multi_signal_plots.py +603 -0
- ml4t/diagnostic/visualization/signal/quantile_plots.py +625 -0
- ml4t/diagnostic/visualization/signal/turnover_plots.py +400 -0
- ml4t/diagnostic/visualization/trade_shap/__init__.py +90 -0
- ml4t_diagnostic-0.1.0a1.dist-info/METADATA +1044 -0
- ml4t_diagnostic-0.1.0a1.dist-info/RECORD +242 -0
- ml4t_diagnostic-0.1.0a1.dist-info/WHEEL +4 -0
- ml4t_diagnostic-0.1.0a1.dist-info/licenses/LICENSE +21 -0
|
@@ -0,0 +1,242 @@
|
|
|
1
|
+
ml4t/diagnostic/AGENT.md,sha256=la4PppAQaSK5NrdDzLUalzhqRm6Gxdzr8A5Dxh8M9pI,756
|
|
2
|
+
ml4t/diagnostic/__init__.py,sha256=Y3-MhLWXyvJFzLzyq01Ap3r_Rwy8_f1skSFYnxP1aUc,4491
|
|
3
|
+
ml4t/diagnostic/py.typed,sha256=qww23I-O7yv_Kf5Wu2UW3r8K1Vd12UDESBl5tmzRSI0,60
|
|
4
|
+
ml4t/diagnostic/backends/__init__.py,sha256=4V4FS_OcwUkb7ouFjjey9bFgYaK3v21yCnxW_eRs7Bc,348
|
|
5
|
+
ml4t/diagnostic/backends/adapter.py,sha256=YFKRacjCpjB0mUmJp293TWZVRglZqYeClt94I5aLt-4,6381
|
|
6
|
+
ml4t/diagnostic/backends/polars_backend.py,sha256=P1X6ewYc6dLbdwNo9oH12B09MGZnu59gbStJ2cwOAoc,29042
|
|
7
|
+
ml4t/diagnostic/caching/__init__.py,sha256=skpAxKhpta0LFhRDup9Q-rticbdMaU2g_i_8W0swN6o,1155
|
|
8
|
+
ml4t/diagnostic/caching/cache.py,sha256=TWADLG1-riTezvfB-nuo1B-qf_otgn0l2tmI-fRiRwc,9803
|
|
9
|
+
ml4t/diagnostic/caching/decorators.py,sha256=FTDyH1Eiit70ODCL0QdroEsPNK6Xr2h0VoaIydKd-Go,3982
|
|
10
|
+
ml4t/diagnostic/caching/smart_cache.py,sha256=Vnx5rjSVA8XRtKYFgke2r3ky9ALUlr1NHbw-BfqnkKQ,10128
|
|
11
|
+
ml4t/diagnostic/config/AGENT.md,sha256=XgbH4q-YMOPaVRoNvEEt5Qjh0PdOWOu24nDRwijiwsI,630
|
|
12
|
+
ml4t/diagnostic/config/README.md,sha256=k8Dt1uRdiwQhVFZAVEjhxrz776qCAsEzic8gBfmJkdY,6671
|
|
13
|
+
ml4t/diagnostic/config/__init__.py,sha256=N823CkA5RC_d8eWR_ofVmYmVZ_wAQy6l7QBxVV3Dxq0,5993
|
|
14
|
+
ml4t/diagnostic/config/barrier_config.py,sha256=zv9k9r31NNbUo07CBTIXECss_7eseGM6Z3_Oz6JtMAo,8707
|
|
15
|
+
ml4t/diagnostic/config/base.py,sha256=JcAMEMsC5aHAIu8fiBh9Gi1roG0b1z-VcAAqvXXF1us,9822
|
|
16
|
+
ml4t/diagnostic/config/event_config.py,sha256=fFvNcEGbUEXSTrNy1QLMft2IVJACggN7jWvFSFIs4mE,4533
|
|
17
|
+
ml4t/diagnostic/config/feature_config.py,sha256=RpG3yi07As8qUM-mXa-GK76_LrQbMMtl0GaYNOZFxPw,17539
|
|
18
|
+
ml4t/diagnostic/config/multi_signal_config.py,sha256=oirk1gK7IuCt0WUNbDs-aAS7DC8sQ-e3HWVC_-q7sWY,2118
|
|
19
|
+
ml4t/diagnostic/config/portfolio_config.py,sha256=bP7YvitP4gsWuS65qcfhtYD6Gm8XD0JoYG4X6KbNKdw,8214
|
|
20
|
+
ml4t/diagnostic/config/report_config.py,sha256=WMGC2NyZVuIMoX-SJG4h_9qr89z2agvtjtdGjEOVlDQ,14264
|
|
21
|
+
ml4t/diagnostic/config/sharpe_config.py,sha256=J_xN5wQfEgJST-XHE-3tlMV9zIzABKJMmDaGxJZsKNI,7332
|
|
22
|
+
ml4t/diagnostic/config/signal_config.py,sha256=vKkeR6AE05imT6S8vmsqHcX-uxbm5Otjv_say0x1BW8,8781
|
|
23
|
+
ml4t/diagnostic/config/trade_analysis_config.py,sha256=BB3Lhg_MScvOraIPaL2H_iUjjLRHU5s47_bamci-YQU,11908
|
|
24
|
+
ml4t/diagnostic/config/validation.py,sha256=1iM4djSZbmWPLjqgOGyFIFWZHvSLRP1KMSU5vVdQf20,6395
|
|
25
|
+
ml4t/diagnostic/core/__init__.py,sha256=KWwdwnMpOHnR4nRA98gPpglhlCgj0xjG_c2z8l-_G6Y,765
|
|
26
|
+
ml4t/diagnostic/core/numba_utils.py,sha256=n5I9eVKU8CxMbxny_mYX8Fian5266-EPvELx6Nhoo3I,8139
|
|
27
|
+
ml4t/diagnostic/core/purging.py,sha256=SLYhly_fk-v0SIgnmdjdrytP4Yi_ZBwwhU2Y3YDPOyg,13208
|
|
28
|
+
ml4t/diagnostic/core/sampling.py,sha256=27WqWPe0D3S4xmhtCZyqPg7qapxitjj77YTVL-sHSaA,15495
|
|
29
|
+
ml4t/diagnostic/errors/__init__.py,sha256=ljjz9WpyvI-AYqDBHQ2j4PM3D-JrVzCly0sHTSQ-SvI,5567
|
|
30
|
+
ml4t/diagnostic/evaluation/AGENT.md,sha256=FzEIsPo2u7w2tOojReFy-GeyRfHaFwCXSlVAxEo_J0Q,787
|
|
31
|
+
ml4t/diagnostic/evaluation/__init__.py,sha256=KuXjrruaw9xL9KcNCBoS5mdrdG_UzY3H1NIDmTJG7xM,11368
|
|
32
|
+
ml4t/diagnostic/evaluation/autocorrelation.py,sha256=EZv9XRNenma__k0pGYMI5LY4hVyJ_ZoS4ihMC0WIhF4,18383
|
|
33
|
+
ml4t/diagnostic/evaluation/barrier_analysis.py,sha256=WI3Xt1rZ3VsUOtap-3melb_xu1UOpd13zkPwSawhS7A,37580
|
|
34
|
+
ml4t/diagnostic/evaluation/binary_metrics.py,sha256=bsYtOOLBmtLMvOAuoyVfv4XhiyAP4WxH3cugyUxxKCo,26788
|
|
35
|
+
ml4t/diagnostic/evaluation/dashboard.py,sha256=HJm2fK0thIMYYafTbcbKP7Ryep8TbcAwszFcI8uJ76E,23679
|
|
36
|
+
ml4t/diagnostic/evaluation/diagnostic_plots.py,sha256=RwYE03XwK78AdyM6rRzYjNAYRvK0EpErhU30dhv7v7o,30834
|
|
37
|
+
ml4t/diagnostic/evaluation/event_analysis.py,sha256=4M9EcYDvKPNDqyqfSBN000UKR6gUYq7c88UsAAYVszM,21325
|
|
38
|
+
ml4t/diagnostic/evaluation/excursion.py,sha256=hoHVv7oKYU0IhjXuUKU2CWpIBZhhlDm7X3UhplFJREg,13728
|
|
39
|
+
ml4t/diagnostic/evaluation/feature_diagnostics.py,sha256=d5ZOd0zHjD835-yKPxqJUJ2_0oBiie_ULZM28RAHe1M,32777
|
|
40
|
+
ml4t/diagnostic/evaluation/feature_outcome.py,sha256=6zhV8eINKRF1rPiYA1PSGP1q2rKmzmP62csuE5aDauM,25834
|
|
41
|
+
ml4t/diagnostic/evaluation/framework.py,sha256=W_3p1bb8n09QwRn1T2Sv1Ew7dITSFS3_rtqLLV-FW9Q,35848
|
|
42
|
+
ml4t/diagnostic/evaluation/metric_registry.py,sha256=DRBfYvpT9IJ7xWVAqaw2xb9WJiLeWXwbDX3hgCgBiKo,7727
|
|
43
|
+
ml4t/diagnostic/evaluation/multi_signal.py,sha256=XXG1Rtbm1DcfRS3UaUd1RF8CpWccroNooiGfTOxEbuc,19925
|
|
44
|
+
ml4t/diagnostic/evaluation/report_generation.py,sha256=OrG3G4WbGulWP6iHb8kSz83GMX8Uu4v2Vil_uWgg-6s,28178
|
|
45
|
+
ml4t/diagnostic/evaluation/signal_selector.py,sha256=PMiq210cAxl98n9soQO7x0VQSxgcA8Z1Rmabno5CDkU,15855
|
|
46
|
+
ml4t/diagnostic/evaluation/stat_registry.py,sha256=Yax3ldwSfoK_Gp0D8NXCn_9ziU3r_SCEvnQfTMy0_68,4067
|
|
47
|
+
ml4t/diagnostic/evaluation/themes.py,sha256=zawO72OVR0In069tZQRRAxFAmnQWbvcxja2qMkHBvzA,9528
|
|
48
|
+
ml4t/diagnostic/evaluation/threshold_analysis.py,sha256=gfJ38pYHJbgRuFZC2S4uJ_0tvbljmSVu09aB3-5RBYk,30917
|
|
49
|
+
ml4t/diagnostic/evaluation/trade_analysis.py,sha256=i_b5JIrZAzLKmyDl1CkAgTEnaUKGyCGycZK_JOmD-lc,41564
|
|
50
|
+
ml4t/diagnostic/evaluation/trade_shap_dashboard.py,sha256=VG82tcVV2_0nQLcxiVRZhiarqXkJJmm0iybzfIVeBA8,8813
|
|
51
|
+
ml4t/diagnostic/evaluation/trade_shap_diagnostics.py,sha256=ZHhIrb-6YbjP8Pk544pelbjab_uJRHzQyJGUOk7MfdQ,21855
|
|
52
|
+
ml4t/diagnostic/evaluation/validated_cv.py,sha256=bsqTHoANveq3vo_bhzGb9u28_vEc9Q1juc0PmSZRduo,16821
|
|
53
|
+
ml4t/diagnostic/evaluation/visualization.py,sha256=b9HZ0h-1qNygIJ6wUumLJ0dKjb8J8no8lr_rRuvNwvQ,33927
|
|
54
|
+
ml4t/diagnostic/evaluation/distribution/__init__.py,sha256=Kvvg74UU_TwQn_TJv5Ho213gckys4kp7LSg5fBZBB1o,19941
|
|
55
|
+
ml4t/diagnostic/evaluation/distribution/moments.py,sha256=4B5uSUC8Rb6QvYsw9GMmCAZvcbXDsafHhtpFn40xwQs,11314
|
|
56
|
+
ml4t/diagnostic/evaluation/distribution/tails.py,sha256=PH6idTlTWLxUX7tD9UpBxdJC2BXpKDXX5H_wW-tYDNU,29095
|
|
57
|
+
ml4t/diagnostic/evaluation/distribution/tests.py,sha256=pvpl8LvL1qWfnpTlV3xTg-BUWJ0mPdqVm4mTM7woreA,15973
|
|
58
|
+
ml4t/diagnostic/evaluation/drift/__init__.py,sha256=vXdSr4-z_A5uwH6BmuiYN30lxCSk_5kGTKvcQqH4Ytc,5350
|
|
59
|
+
ml4t/diagnostic/evaluation/drift/analysis.py,sha256=QWCPGW1DYe9nTC_WvMjt0JGC4zo0CpLzOKK0ndHvYuA,16851
|
|
60
|
+
ml4t/diagnostic/evaluation/drift/domain_classifier.py,sha256=LKmZ-2OGVc98vshbPIuzauJ28xzZ7-KKY8wBVtbu8Tk,17319
|
|
61
|
+
ml4t/diagnostic/evaluation/drift/population_stability_index.py,sha256=puN9fmaxfyEM03tjaebQLuOvXLn-KNcMLSCsJ_Clb5Y,11303
|
|
62
|
+
ml4t/diagnostic/evaluation/drift/wasserstein.py,sha256=iAw4xwlxAsWc2X4ktxf4PnwIo_Tc0_YW_lQTJ6oOhmU,13721
|
|
63
|
+
ml4t/diagnostic/evaluation/metrics/AGENT.md,sha256=FZrju_4QOFxRBoVuI6Qd5y57K8kYthp3qMt03E3g8Ps,844
|
|
64
|
+
ml4t/diagnostic/evaluation/metrics/__init__.py,sha256=vm7sYZOsj14uGUHpU8C9w0rOXPeo5wd4HCgxUCBsdbo,3820
|
|
65
|
+
ml4t/diagnostic/evaluation/metrics/basic.py,sha256=yuLYT4zafRXTxeao4d7sTKATIQ5m9rU0ujegz1O3keI,5165
|
|
66
|
+
ml4t/diagnostic/evaluation/metrics/conditional_ic.py,sha256=_7jfPum88OnkFLSBGO9QoT98I92F3k4lpPnELqSj8tM,20374
|
|
67
|
+
ml4t/diagnostic/evaluation/metrics/feature_outcome.py,sha256=G_SdXkMyw7414hK2AUYKQ29n3pKBx7X1d8dlEQZchAA,18406
|
|
68
|
+
ml4t/diagnostic/evaluation/metrics/ic_statistics.py,sha256=wM9rT51EGuU7dfUayjKYMd2Px0BDVkKPFtTVJR0-HFw,15626
|
|
69
|
+
ml4t/diagnostic/evaluation/metrics/importance_analysis.py,sha256=xE0iqsQtRQW1ew4rMiChu1QcYBO3J6k6oj9HoDt1wTE,12274
|
|
70
|
+
ml4t/diagnostic/evaluation/metrics/importance_classical.py,sha256=TGrwigF-8cKE7PKKZzc004myWZ7m87bam5vXV6MOF4I,14132
|
|
71
|
+
ml4t/diagnostic/evaluation/metrics/importance_mda.py,sha256=bw0UmJrcsitGHgvZ0ApKWlJuwh1_x-tXWzSAwQN5iXI,14694
|
|
72
|
+
ml4t/diagnostic/evaluation/metrics/importance_shap.py,sha256=W220jeuxlhZmSoeU03KpeLJuliEYZBNIjgAP86Gm7PQ,26493
|
|
73
|
+
ml4t/diagnostic/evaluation/metrics/information_coefficient.py,sha256=RDaIkQTZCKwZpqx-qtn82oU_CQWyj3tKfyOSw39jvRk,18257
|
|
74
|
+
ml4t/diagnostic/evaluation/metrics/interactions.py,sha256=TWjmVQS_NTlC3YCwZDs5GvP8t_Ray0th2n4RFkBbXRc,29656
|
|
75
|
+
ml4t/diagnostic/evaluation/metrics/monotonicity.py,sha256=miI56g17hlGec_Wt2E1xZD6MFRnNhap4pEG4TT4Df2M,8357
|
|
76
|
+
ml4t/diagnostic/evaluation/metrics/risk_adjusted.py,sha256=3EXT8f0ZgzkvX_BgFgXIR7pJRrv9BCQleo8nXhOarGY,10543
|
|
77
|
+
ml4t/diagnostic/evaluation/portfolio_analysis/__init__.py,sha256=jr1EZ_rCZOjdtD5YzkPP8hrlg986liq5D1ZRZXg0DDM,2117
|
|
78
|
+
ml4t/diagnostic/evaluation/portfolio_analysis/analysis.py,sha256=eqUxWASQQRzOSyk0dzYbvwAGifEDMmytxJcqm2ywS2E,23399
|
|
79
|
+
ml4t/diagnostic/evaluation/portfolio_analysis/metrics.py,sha256=MMv4PQRAVpfxiBCljtAJ4OoXSrnZsYzBNXKJQeUHSEI,15752
|
|
80
|
+
ml4t/diagnostic/evaluation/portfolio_analysis/results.py,sha256=lzOtx66VQgN616z6SZYKU1R7nYPAcrxnvDe9Qt-GZ-8,10609
|
|
81
|
+
ml4t/diagnostic/evaluation/stationarity/__init__.py,sha256=BDb-adkAHXcRGYsVpHm26nMWNNZGKNvSe-euQgURRgA,3738
|
|
82
|
+
ml4t/diagnostic/evaluation/stationarity/analysis.py,sha256=N_MOV-Mmq-uRvS7MIzOh6hUG8wuEmmZxLbkfqCGuE7g,19177
|
|
83
|
+
ml4t/diagnostic/evaluation/stationarity/augmented_dickey_fuller.py,sha256=29C3II-GMELhPd3IPVboil7iBT2YdK4kTKo6_4Mcp3Y,9844
|
|
84
|
+
ml4t/diagnostic/evaluation/stationarity/kpss_test.py,sha256=tlmv80CNZQGk-lMJta0_z8lvhbgWCgfmvt_Qjj_7_SY,10931
|
|
85
|
+
ml4t/diagnostic/evaluation/stationarity/phillips_perron.py,sha256=uz15tTzNCZEk7SEfBSJzdP0QVrx41Owuabh4yJSLKsw,12984
|
|
86
|
+
ml4t/diagnostic/evaluation/stats/AGENT.md,sha256=KtCZu-hzzetmPrn7ex_LYQeOdK_6_qWhGK0VYIdYzpo,1647
|
|
87
|
+
ml4t/diagnostic/evaluation/stats/__init__.py,sha256=ys5jTf83sdOVEeKK-yc-IFm5YFVEit95LCvF7Mw5tT8,6641
|
|
88
|
+
ml4t/diagnostic/evaluation/stats/backtest_overfitting.py,sha256=yl5Ggrx3C-8R1e7ictgmzKbUwi80f65RLunpP9QfryU,7364
|
|
89
|
+
ml4t/diagnostic/evaluation/stats/bootstrap.py,sha256=GXLoo8nVnjW8SpgdEvB-SCTzwedNv20YyBAyg6SN-h4,7574
|
|
90
|
+
ml4t/diagnostic/evaluation/stats/deflated_sharpe_ratio.py,sha256=M19C_Uth6YLDBTyvkgheemvnnckFUfSe2qadWUEgLSo,20102
|
|
91
|
+
ml4t/diagnostic/evaluation/stats/false_discovery_rate.py,sha256=9PlDflysFSD5ZeVmnykdB7bRWwVrc6tcjY5dT_ulPjE,9689
|
|
92
|
+
ml4t/diagnostic/evaluation/stats/hac_standard_errors.py,sha256=uc6NUElyXFWSyhXpxo6tNK_bY4GwBEvFWEGTHWmzYq8,3491
|
|
93
|
+
ml4t/diagnostic/evaluation/stats/minimum_track_record.py,sha256=J2QlWbNm51S1-cLsxC7zYQyctYd617v75aWM_QHU1HM,12935
|
|
94
|
+
ml4t/diagnostic/evaluation/stats/moments.py,sha256=0QSSqAM_5DQrex7lyeG0-vE8tKLu5PbUrqmIdv--GCg,4135
|
|
95
|
+
ml4t/diagnostic/evaluation/stats/rademacher_adjustment.py,sha256=8k40vAp_rqWtI2geczcICJrh9XX9x8rNxR6F9M_cvUo,14542
|
|
96
|
+
ml4t/diagnostic/evaluation/stats/reality_check.py,sha256=yL38m2h21fy0sbNp4DyWEdo9rIZwSHowmuegUoKft8g,5370
|
|
97
|
+
ml4t/diagnostic/evaluation/stats/sharpe_inference.py,sha256=k2ssHrmTuYo2PMUwO7QgAb94wkg8Qy5lyBBhhUKOVRc,6314
|
|
98
|
+
ml4t/diagnostic/evaluation/trade_dashboard/__init__.py,sha256=MrtmynerPcbf-oE4G8IpdGkrBDThjNCXFV8UTI0QFC8,955
|
|
99
|
+
ml4t/diagnostic/evaluation/trade_dashboard/app.py,sha256=pzHmGf0RRr-HoOwMzZRB-h0IQvb02JjsDPwkEXUPRH8,10487
|
|
100
|
+
ml4t/diagnostic/evaluation/trade_dashboard/io.py,sha256=_Ov22TSHwgxDHogzd48AJY8n00fPijgzj0uY9FRIJ30,5358
|
|
101
|
+
ml4t/diagnostic/evaluation/trade_dashboard/normalize.py,sha256=FsMRz7mtd01MW9kooZrq021Thb1OrxLdPYYFPfvFct8,10070
|
|
102
|
+
ml4t/diagnostic/evaluation/trade_dashboard/stats.py,sha256=0Kjxsa63DDmsIbLHOK78XhNw91iQU92XF5kvFGdfStU,10967
|
|
103
|
+
ml4t/diagnostic/evaluation/trade_dashboard/style.py,sha256=BOdtSfnGj8g4UNQ4qxeC1WMZizMXFTJK6QXlOjBuB2k,1480
|
|
104
|
+
ml4t/diagnostic/evaluation/trade_dashboard/types.py,sha256=S6LMh4I2rQ5IM9WJF8kYVANIXgZ9KY-jnXlwCGUvi6Y,3657
|
|
105
|
+
ml4t/diagnostic/evaluation/trade_dashboard/export/__init__.py,sha256=vm7xY8FQkL93xDG0c9Nqd8s4P8VxJNgaeQXDhmevyVo,431
|
|
106
|
+
ml4t/diagnostic/evaluation/trade_dashboard/export/csv.py,sha256=Vy2JP9GbTXYQTHjJ4eZpiVIkPus6thonG5j97NA9yfY,1849
|
|
107
|
+
ml4t/diagnostic/evaluation/trade_dashboard/export/html.py,sha256=k7yXy2Jpn4Wdir2v8yIQYUHO12wMbSZToVmmflBLLSg,8300
|
|
108
|
+
ml4t/diagnostic/evaluation/trade_dashboard/tabs/__init__.py,sha256=UXpld8-P1k8h9d2mzN_Wpivw7oUAC9cwvBAwyAx7EE0,439
|
|
109
|
+
ml4t/diagnostic/evaluation/trade_dashboard/tabs/patterns.py,sha256=noludKyq5SCv-GPb173euUCCyJ2Zi7s_mLxI5P_g2S4,11307
|
|
110
|
+
ml4t/diagnostic/evaluation/trade_dashboard/tabs/shap_analysis.py,sha256=FAen8K6WZ_MkPrbYqWilUM40ESRrMEgjC1HD-I42LvA,8563
|
|
111
|
+
ml4t/diagnostic/evaluation/trade_dashboard/tabs/stat_validation.py,sha256=lR7bmfLnTrIdcXaFR_pEk6BjqLacps2XKqLoRZzSZlo,5358
|
|
112
|
+
ml4t/diagnostic/evaluation/trade_dashboard/tabs/worst_trades.py,sha256=V0GVfdjqMR96KzAs6gwdX0RDkLn9ba-eWcpBbGBn9r0,7399
|
|
113
|
+
ml4t/diagnostic/evaluation/trade_shap/__init__.py,sha256=PUcZClw_Q5gZyjAAdhWplxQrZ3yID1SDCHp4IyM0MOM,2632
|
|
114
|
+
ml4t/diagnostic/evaluation/trade_shap/alignment.py,sha256=TC84usndV1pLadjPT1gruAbrNzDFcDkJpG9khz4zE2c,6432
|
|
115
|
+
ml4t/diagnostic/evaluation/trade_shap/characterize.py,sha256=Svgdby8-Rt1KzGbXuHGtJfouWs3rWA6TOn1PZJAaFj8,14414
|
|
116
|
+
ml4t/diagnostic/evaluation/trade_shap/cluster.py,sha256=HPKSWtn_-51kb-HKzEojc7khdXbI7z9kjjN7jdyWDtc,9872
|
|
117
|
+
ml4t/diagnostic/evaluation/trade_shap/explain.py,sha256=fTHUqj7pYJUSSK-qEj4DGXovO6nL9YSD5xPWBMsRAIU,7952
|
|
118
|
+
ml4t/diagnostic/evaluation/trade_shap/models.py,sha256=bC2t-zmdHMLs89hwBBphKJAsA7gG_IJrnEbHSALzfqE,15861
|
|
119
|
+
ml4t/diagnostic/evaluation/trade_shap/normalize.py,sha256=q42fGBRyTlQhATae-DII9raoYGNk9p0tntzz4svfMSA,3446
|
|
120
|
+
ml4t/diagnostic/evaluation/trade_shap/pipeline.py,sha256=SmE5mICx6Gfem9vd5jVwZ7oQs3VdUr7quH82VT4xt4w,9310
|
|
121
|
+
ml4t/diagnostic/evaluation/trade_shap/hypotheses/__init__.py,sha256=JWcV-q1RbOmDjtIg0I-7DEeTHefaDf7ooLMjVekmmtU,584
|
|
122
|
+
ml4t/diagnostic/evaluation/trade_shap/hypotheses/generator.py,sha256=02ifMRdhRYmoKuJRG4ZeOF7Oqik9JZYmtx2kHzP-vGc,10089
|
|
123
|
+
ml4t/diagnostic/evaluation/trade_shap/hypotheses/matcher.py,sha256=8X3G0aO74zCa_yg_yZzTHzJr03iFAv82fCBpFrxYAi4,8115
|
|
124
|
+
ml4t/diagnostic/evaluation/trade_shap/hypotheses/templates.yaml,sha256=x6Qt8bGXJEBGJ_ugXHsp0TCAfHg351irz2zXyR75RCY,17456
|
|
125
|
+
ml4t/diagnostic/evaluation/volatility/__init__.py,sha256=xDrSpDvdTwAwwq9aojpoOx8v9xB_l1S9PqrCm798baA,1604
|
|
126
|
+
ml4t/diagnostic/evaluation/volatility/analysis.py,sha256=3dBraftyGlI4AoZjfoOwoa66YALyc0aIYWxtpeVvBfA,14354
|
|
127
|
+
ml4t/diagnostic/evaluation/volatility/arch.py,sha256=ioUMtXnMrcpiS8duUg3vIWm0KYrfD904RkYby62LaHo,9300
|
|
128
|
+
ml4t/diagnostic/evaluation/volatility/garch.py,sha256=35uafz54xVf7riBhVOYAGk4yWOdJLeMnnEk-FLxdMac,16390
|
|
129
|
+
ml4t/diagnostic/integration/__init__.py,sha256=P2zL2g2jU2f835RETuw7DA-VZ_WexORpZPnOcjUYlrA,1104
|
|
130
|
+
ml4t/diagnostic/integration/backtest_contract.py,sha256=OHY9-fpNCHpvsQt-iKCONys0oHwi7N63eELnLCmojRY,24645
|
|
131
|
+
ml4t/diagnostic/integration/data_contract.py,sha256=nciqgSfOxjETV7MVqBnKcW2vkChw1n6hi56zmhNF8ZI,12022
|
|
132
|
+
ml4t/diagnostic/integration/engineer_contract.py,sha256=ZqBr1NMavZ2OCplbgp8S1h55hmSKHkSk4QzLHKy4VfY,8258
|
|
133
|
+
ml4t/diagnostic/logging/__init__.py,sha256=jdjUEurObgF2oi61D9UIjEMLQZqMSGpPgEHjQtJNvoQ,1851
|
|
134
|
+
ml4t/diagnostic/logging/logger.py,sha256=LgDYcJBmxNxD7Xe2vTVowPuJk18AoxjAfke8eOgs9t8,6805
|
|
135
|
+
ml4t/diagnostic/logging/performance.py,sha256=Zmuzo43QU-Yu7cBzMpWIkf983UzTTEqMXHj8w1kdpwM,6062
|
|
136
|
+
ml4t/diagnostic/logging/progress.py,sha256=dQXkXoIkFASEieN_K0qog-uniJciXON_kNCmOCgSudQ,6180
|
|
137
|
+
ml4t/diagnostic/logging/wandb.py,sha256=pC_TnuwmSVjoSdEpuxcVGDKOQxdaKt4rGm6M1kOMzSI,11710
|
|
138
|
+
ml4t/diagnostic/metrics/__init__.py,sha256=aw6MWxc50pVKh0MWgoNrO-pdyZ4WIP45HJh9qgiVLZ0,247
|
|
139
|
+
ml4t/diagnostic/metrics/percentiles.py,sha256=h3ltNog-6dZ6SmxUZ6XJ_LIO7LjA73ZctmUuN1fZqmc,5208
|
|
140
|
+
ml4t/diagnostic/reporting/__init__.py,sha256=yr63G56_yvbueoPlYFG9HyugNdujSnPN3GLFjTpJRRo,1487
|
|
141
|
+
ml4t/diagnostic/reporting/base.py,sha256=e5cHcmFPOvETotValjOnMQ4EUuic-CdbayWzzMsv6TQ,3704
|
|
142
|
+
ml4t/diagnostic/reporting/html_renderer.py,sha256=na1SjfX6Xm7LTTL5pgBdC8hDUxOke3s6OChiMi2BFag,8321
|
|
143
|
+
ml4t/diagnostic/reporting/json_renderer.py,sha256=xdhLkRAwegDh3y7N2aYLmNQ35Fv1MLbHUssww0xX5Do,1527
|
|
144
|
+
ml4t/diagnostic/reporting/markdown_renderer.py,sha256=YhbVIgPHVgceSUYpVLEhKALgtnFInoJwfL3xcPVxf8I,4068
|
|
145
|
+
ml4t/diagnostic/results/AGENT.md,sha256=RHr4uVh3ibdATOAY0IxXsNXhqtnLwObpqiB09c6gC-8,665
|
|
146
|
+
ml4t/diagnostic/results/__init__.py,sha256=QcxUZUCLvUYnCdJQTyZACX2cu-vv9Z3yyjuyZdMRSzU,2600
|
|
147
|
+
ml4t/diagnostic/results/base.py,sha256=DOChFAnzVpF2Wmtx8zNFmgD0NFPQ3MB6pRUIA5yERKA,6156
|
|
148
|
+
ml4t/diagnostic/results/event_results.py,sha256=Fc41L06kwDhJ3uF8uMDQ2zOzaySE01xq4kvSIGTEKcE,11157
|
|
149
|
+
ml4t/diagnostic/results/feature_results.py,sha256=s2-xrwFCoHt8hndDotCQqTxNZtBUFBhP8icebgNj0lM,30436
|
|
150
|
+
ml4t/diagnostic/results/multi_signal_results.py,sha256=_SJmSeIyw8h6oN9bufUehhCu0FY1-QbqqyEBuAltfy4,14074
|
|
151
|
+
ml4t/diagnostic/results/portfolio_results.py,sha256=NStY6mIDsKFQIoAbVYwIt3gH6fquO0oncukN7DWFJi8,11132
|
|
152
|
+
ml4t/diagnostic/results/sharpe_results.py,sha256=KtMhK2UZzRhytrZHoPq0MB1vzgjYoKJp_YK_OuzGxvA,16867
|
|
153
|
+
ml4t/diagnostic/results/barrier_results/__init__.py,sha256=AbZzCP7opHvhbCpzBfvmYS00L8E2i5DZtw72M4e43cE,1321
|
|
154
|
+
ml4t/diagnostic/results/barrier_results/hit_rate.py,sha256=NBGIjWJgK5RNNGXJwpLMdzKYEvdhjJ6TTkEelWZOB3c,10608
|
|
155
|
+
ml4t/diagnostic/results/barrier_results/precision_recall.py,sha256=zzfMfkLpsBXocZAlpGn769How7fVoH1C5_k0PA-rNuY,9424
|
|
156
|
+
ml4t/diagnostic/results/barrier_results/profit_factor.py,sha256=XJn1FRyLndXqL0RI4-eaLMaERwDJpb4TNey-V47zGAw,10484
|
|
157
|
+
ml4t/diagnostic/results/barrier_results/tearsheet.py,sha256=Qslal0k7t7mLTFDN_5ezR0AVx7_UMzl1A5042vrIUUE,13806
|
|
158
|
+
ml4t/diagnostic/results/barrier_results/time_to_target.py,sha256=cbxBdkTc_R6CcFFxEoz7SxpzZgMGkfX3HQgj9e224bQ,10860
|
|
159
|
+
ml4t/diagnostic/results/barrier_results/validation.py,sha256=192wSkBTQIEZ7yv0_enPLhwgkNsYN06hKtRj2elIsH8,1119
|
|
160
|
+
ml4t/diagnostic/results/signal_results/__init__.py,sha256=IuPcuXye2jfhBEvNaX2I0zCs5QbJHb_5cNlcFjAXHsg,1923
|
|
161
|
+
ml4t/diagnostic/results/signal_results/ic.py,sha256=tR8NdI6H_83kdS63LYbBH_ISMjzPAHWy-f-_OlqVeng,19362
|
|
162
|
+
ml4t/diagnostic/results/signal_results/irtc.py,sha256=9cV5_OsTPeaz-2N2cZXWVnABKfbzSNYHaq65USnFPZ8,3472
|
|
163
|
+
ml4t/diagnostic/results/signal_results/quantile.py,sha256=a7cMbZ-7HwErMCLDSOJDlBiRZ6wuueRt0PNpBu1_YpE,14313
|
|
164
|
+
ml4t/diagnostic/results/signal_results/tearsheet.py,sha256=J7J_XzzEv0F2kdNkL6KylNTS8LNtvDHG-dpuimKvqYI,15585
|
|
165
|
+
ml4t/diagnostic/results/signal_results/turnover.py,sha256=KDT0kxscB3uDGIYvKtV4LzoaHip_Ic6I1-ss324pF1M,7851
|
|
166
|
+
ml4t/diagnostic/results/signal_results/validation.py,sha256=AKJF2owUkz0ArPDHZAY7U7FBZVb91uAMEZgvzLPl80k,4272
|
|
167
|
+
ml4t/diagnostic/signal/AGENT.md,sha256=lzhWSivHFSDS6qjceEwhck0KGvfKxZNTcckXHGzW0e4,441
|
|
168
|
+
ml4t/diagnostic/signal/__init__.py,sha256=uVAD7ojFOfygdBAztc1W1E2ONjGgQmqnfOTcsXFZGJ4,1954
|
|
169
|
+
ml4t/diagnostic/signal/_report.py,sha256=O8G4umESxL3wYN2fw9lZ-ikMI7GV96Lk7sD77DIGBxs,4262
|
|
170
|
+
ml4t/diagnostic/signal/_utils.py,sha256=gwMovHBD4ypdqEbN0DplsfA-1eVlI1SBnOndE5b_pyM,7924
|
|
171
|
+
ml4t/diagnostic/signal/core.py,sha256=okwAk23blipeyEvtCNr7RI3pzqHimYPxRBPK5E6_FpI,8597
|
|
172
|
+
ml4t/diagnostic/signal/quantile.py,sha256=8m-kEPTASXKGSjmOxksZNi8XphToZlwDZr_9hhrmkaI,3907
|
|
173
|
+
ml4t/diagnostic/signal/result.py,sha256=SocILWcJFgkfikTJUKwOxBNVyf2pabdk5woE2wMhn7M,7024
|
|
174
|
+
ml4t/diagnostic/signal/signal_ic.py,sha256=6Dtngyg7UV8y4ALDCVh2D6HDBe3Y7fqCbbqgIXUXWIg,3261
|
|
175
|
+
ml4t/diagnostic/signal/turnover.py,sha256=qSA6xxMJ9tiare1I-JUQNLTNfbRjR_LVoMKvea8YJl8,5285
|
|
176
|
+
ml4t/diagnostic/splitters/AGENT.md,sha256=wKW35gMlx5cxqMB_Ztke_GFsi9s5T4_51RXHakv1CYY,560
|
|
177
|
+
ml4t/diagnostic/splitters/__init__.py,sha256=NBqy5s8OvfTys2GhVR438fgKdMre-tpyVTi6t12Xo84,999
|
|
178
|
+
ml4t/diagnostic/splitters/base.py,sha256=x8IfTriD1-3txtr7Myg2MTqCuel5fMW7QVCeaMqfm_8,18833
|
|
179
|
+
ml4t/diagnostic/splitters/calendar.py,sha256=sxcgLS2zCZ3wvi76YWQfn6Q0EmcBZI3TdAi12OTpByQ,15705
|
|
180
|
+
ml4t/diagnostic/splitters/calendar_config.py,sha256=a-_5_QjgnP_Rd0H82cEl7TScRmXw46AMX_-rzk5n-jA,3062
|
|
181
|
+
ml4t/diagnostic/splitters/combinatorial.py,sha256=EqjZuPBHCpsNKqAV8a7x-od74ljdX_OnDx8vMKMJE8k,41434
|
|
182
|
+
ml4t/diagnostic/splitters/config.py,sha256=xSrrmR4lSHhlX8-DMhWQbDo3Blge7JQRlDiqlH17NSA,12040
|
|
183
|
+
ml4t/diagnostic/splitters/group_isolation.py,sha256=E0Vh0cxyUcpzT8BJMvWet6TBYgxfRaH1lT9dDSUIj-E,9880
|
|
184
|
+
ml4t/diagnostic/splitters/persistence.py,sha256=Hhr4wAXAppN_ygtuSVpw4DgIudEAnivMJ9M_yLm7QZE,9849
|
|
185
|
+
ml4t/diagnostic/splitters/utils.py,sha256=iRQ0Zh56mOar-AQCINGTeAtKLO45rDSCoDujAeOQnkY,6867
|
|
186
|
+
ml4t/diagnostic/splitters/walk_forward.py,sha256=VO4ZrQ6C9lp4BtxmChWhYX7VQM-FFWGjWM0ihdnhycs,31594
|
|
187
|
+
ml4t/diagnostic/splitters/cpcv/__init__.py,sha256=R_mylHz7hWZjtlYSCDmJKNQVwLtoZUSWA-3c_8PReqo,1595
|
|
188
|
+
ml4t/diagnostic/splitters/cpcv/combinations.py,sha256=F02DZ06DpgJHT4SuKX__RBMI5zV-u5Tp_WwUhdGbuRg,3694
|
|
189
|
+
ml4t/diagnostic/splitters/cpcv/partitioning.py,sha256=kqRaS0ctzlKB4aaR4vmwE4GAQcowkJUR2wPitEM5qa0,7986
|
|
190
|
+
ml4t/diagnostic/splitters/cpcv/purge_engine.py,sha256=Z01BXSxSPyhayLrC6XF9qxnGMTfYO0b88c6cxC1MyFA,13394
|
|
191
|
+
ml4t/diagnostic/splitters/cpcv/windows.py,sha256=JIaA2GPPoy8f9uQnHEF0YY6lVQDvRau-p4PBNPE3840,6313
|
|
192
|
+
ml4t/diagnostic/utils/__init__.py,sha256=pQC5pjG1oVjWO5JaIUPTGbptyg9MVFQo1RDl9Legbao,954
|
|
193
|
+
ml4t/diagnostic/utils/config.py,sha256=XEU_WSHyfVWL_JyOXHd7eFZwwufyMVodkuhjaZ4NzVI,17028
|
|
194
|
+
ml4t/diagnostic/utils/dependencies.py,sha256=Y9upEMGSN-o95Mg5tWYalubnBCYZySd1qClCpUZE2yI,10182
|
|
195
|
+
ml4t/diagnostic/utils/sessions.py,sha256=2fEpw9AVbefg1xfLRd87XL4Qj0EZ4-FDO4BZJWX7ttc,4169
|
|
196
|
+
ml4t/diagnostic/validation/__init__.py,sha256=JvK-1kiVfLZCARmxoMLxu1E_Cv5emkI4YrQS_UPSBKg,1369
|
|
197
|
+
ml4t/diagnostic/validation/dataframe.py,sha256=6nVaX6T0EyVDKZd7tQmZ0C1cDf0TCdkSVjlgT0oA5Z8,7621
|
|
198
|
+
ml4t/diagnostic/validation/returns.py,sha256=B75sXXBQosMBd0POEjTt-qmxv28AJoayI2f4KjJiPio,8214
|
|
199
|
+
ml4t/diagnostic/validation/timeseries.py,sha256=CaTX49cKzEooMJDwp5Z6a1bGUuvInEkY4xsVST1e778,8662
|
|
200
|
+
ml4t/diagnostic/visualization/AGENT.md,sha256=3IijU1CTKnqRN0V1Uul0iR8HX-vsYgK_5YwdZmCpOAM,595
|
|
201
|
+
ml4t/diagnostic/visualization/__init__.py,sha256=__0bT9lOP031yrU-RXQqfxy2aOR8TuNiijMwZrlMzZk,6288
|
|
202
|
+
ml4t/diagnostic/visualization/barrier_plots.py,sha256=Hlq1MObIoDbEqom_R9AAM-eE9s_ie27cG6pSd_ugvpk,25829
|
|
203
|
+
ml4t/diagnostic/visualization/core.py,sha256=UQo-VB7lfmPGF8x4rnnTIeOvuaPlnv4nvGtlrVsFVlk,27482
|
|
204
|
+
ml4t/diagnostic/visualization/dashboards.py,sha256=cMx2pTlA4jm-1cvwhJ3SKw2sQU-HcMZL5WJon7kG-I4,1373
|
|
205
|
+
ml4t/diagnostic/visualization/feature_plots.py,sha256=-HIMAiw8uY5CfV5xZY8C26g7xc1NhWnn8_SiKUx0lQc,29574
|
|
206
|
+
ml4t/diagnostic/visualization/interaction_plots.py,sha256=CrYHBn1frhrYJj3Qx6PcnUtmA5df0no3MlyKBEM_IVg,20687
|
|
207
|
+
ml4t/diagnostic/visualization/report_generation.py,sha256=NTv6pSzKCbLNBZSuwmi477Oq-g9_fVQizpWgaEoEv34,44459
|
|
208
|
+
ml4t/diagnostic/visualization/backtest/__init__.py,sha256=WGI8wwgn0e_ZkCQSVerzcY8RxrZFrjcf710fxCoeP2k,2685
|
|
209
|
+
ml4t/diagnostic/visualization/backtest/cost_attribution.py,sha256=kO8uXklAEA8hal-eQhFbDQjIxTE0vWBawJyz55mXvNI,22330
|
|
210
|
+
ml4t/diagnostic/visualization/backtest/executive_summary.py,sha256=0kgt4ayUTOoTC7zxVLQNCuKRHq75aVMW6PRTb3J_00g,26518
|
|
211
|
+
ml4t/diagnostic/visualization/backtest/interactive_controls.py,sha256=EqqnOMx5ALq4Y8SqzDkthfLCmpIfY6xizRHGqPf7INo,19850
|
|
212
|
+
ml4t/diagnostic/visualization/backtest/statistical_validity.py,sha256=LPU6AqZyIVnA2Tw6_JUUXMqbzowUHb73iugkyaskJGA,27557
|
|
213
|
+
ml4t/diagnostic/visualization/backtest/tearsheet.py,sha256=aCI45UztSkkvEcMKM94pJiQS9izh_1jhhvlKP_7YcTk,18105
|
|
214
|
+
ml4t/diagnostic/visualization/backtest/template_system.py,sha256=hEEw91Z98fl2rcc0yulmn9k7h3gT4sCW0V7wbXIC1y0,13179
|
|
215
|
+
ml4t/diagnostic/visualization/backtest/trade_plots.py,sha256=GBoFopJ3GVpl5A6PMwE3Se0U7_zkCsxLJwpi87aoaRI,37134
|
|
216
|
+
ml4t/diagnostic/visualization/dashboards/__init__.py,sha256=eA6VlynopGe65qaR4Egy-cHJZmbXBGdI7NLSfNuS_nw,1339
|
|
217
|
+
ml4t/diagnostic/visualization/dashboards/base.py,sha256=MKjmr-ihTpJjs-BGTeP8OaiUWL2mFbK6HRUd6wMdn1c,18363
|
|
218
|
+
ml4t/diagnostic/visualization/dashboards/importance.py,sha256=l08h2bAJp-l3-UCiCJY_3e92XnegOGweR21901AN3mk,31871
|
|
219
|
+
ml4t/diagnostic/visualization/dashboards/interaction.py,sha256=SKPTkvbM7QI-W2zb3Di5BKGPrBM5KhdHPtSSxK_lsdY,9629
|
|
220
|
+
ml4t/diagnostic/visualization/data_extraction/__init__.py,sha256=R-Evk3Clq2EecPtH0xy5CFQz_EN5kTFTWVp4XlGasZ0,1480
|
|
221
|
+
ml4t/diagnostic/visualization/data_extraction/importance.py,sha256=11tzb1XaPE8GSpmdDvBqvk8jA4uD5UweHZeA_3A4WUk,24591
|
|
222
|
+
ml4t/diagnostic/visualization/data_extraction/interaction.py,sha256=CcFpNZkHDBlX-JS5TumjZGUV5CtWa8Hhb7tDoL-bhR8,18548
|
|
223
|
+
ml4t/diagnostic/visualization/data_extraction/types.py,sha256=v3jGsh_ahcP8B74dWEWga_LU8gJ_ubuXwt7wAwpq4t0,4749
|
|
224
|
+
ml4t/diagnostic/visualization/data_extraction/validation.py,sha256=rtSahicRxjytmJlQFUX4jmUoIkGQsQFGzBrXgPyHUdQ,1945
|
|
225
|
+
ml4t/diagnostic/visualization/portfolio/__init__.py,sha256=xTyPGOKXpFuFBXO7rVhE_k41XJJ7E03VJIbFNen2yJo,987
|
|
226
|
+
ml4t/diagnostic/visualization/portfolio/dashboard.py,sha256=uk-G_tAlexnrw4SimImLA2mL29JcNEecf5FKmj_VxEw,13868
|
|
227
|
+
ml4t/diagnostic/visualization/portfolio/drawdown_plots.py,sha256=ZjwkHXnKVvOfUeep_J9iqiac-Gvox6eXRKLJX9UdAX8,9680
|
|
228
|
+
ml4t/diagnostic/visualization/portfolio/returns_plots.py,sha256=3HpSSPLlS97K6j1vLbNAVTrl4RiGU3lQ5v9P11PngTg,12945
|
|
229
|
+
ml4t/diagnostic/visualization/portfolio/risk_plots.py,sha256=KH_pTRh4cI9NDfHRWenfgieVhnMb2GNuEaH2-0037zs,8257
|
|
230
|
+
ml4t/diagnostic/visualization/signal/__init__.py,sha256=SBtYy66XLu7KZYj05kaTJnsY4UqEpByJ0--MMLrDsmo,3188
|
|
231
|
+
ml4t/diagnostic/visualization/signal/dashboard.py,sha256=bi18rweZq7gjYGSR3p0L0CRXNIOtwtWv6n6ihycjnK8,35086
|
|
232
|
+
ml4t/diagnostic/visualization/signal/event_plots.py,sha256=8sJGkujrl0P7zWXNGxY97mC8KCI-IEKg-jDUBRIQpwI,14320
|
|
233
|
+
ml4t/diagnostic/visualization/signal/ic_plots.py,sha256=zbZU-rXNH5Jf_wpx_0d1W6Ja1MHjgQbZyXk0VAUl5W0,18071
|
|
234
|
+
ml4t/diagnostic/visualization/signal/multi_signal_dashboard.py,sha256=QZRmByP2bOdzxFVeG2jDEkPTEZlmgFlAT6mmqpMEn30,34010
|
|
235
|
+
ml4t/diagnostic/visualization/signal/multi_signal_plots.py,sha256=Oo_WC7NhxwZUQvkRxaXncYJNmpU5QQnHXUdjGYRbUa0,18772
|
|
236
|
+
ml4t/diagnostic/visualization/signal/quantile_plots.py,sha256=voPRUl9PHjA8BiUC1LMaexn5YZOuL3ffz51KZCOXTNI,20118
|
|
237
|
+
ml4t/diagnostic/visualization/signal/turnover_plots.py,sha256=vF940vyU-i_LRPTGNZ94GX4KvlQ2mn8qNl3otgnPqJI,11895
|
|
238
|
+
ml4t/diagnostic/visualization/trade_shap/__init__.py,sha256=GMgHPOA7ekLEkBGJHeTyDL9aIaP9FdGSSz0iChIUdHw,2963
|
|
239
|
+
ml4t_diagnostic-0.1.0a1.dist-info/METADATA,sha256=eRp_Sg25YGdp6uIcdLoyXBpn706BCjBsBnFkFDci7v4,38704
|
|
240
|
+
ml4t_diagnostic-0.1.0a1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
241
|
+
ml4t_diagnostic-0.1.0a1.dist-info/licenses/LICENSE,sha256=LQTzAmC4gppF-86_APU1iz8VXJpa0ZUd7WkC94A4-So,1065
|
|
242
|
+
ml4t_diagnostic-0.1.0a1.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 QuantLab
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|