ivolatility-backtesting 1.31__tar.gz → 1.32__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ivolatility_backtesting
3
- Version: 1.31
3
+ Version: 1.32
4
4
  Summary: A universal backtesting framework for financial strategies using the IVolatility API.
5
5
  Author-email: IVolatility <support@ivolatility.com>
6
6
  Project-URL: Homepage, https://ivolatility.com
@@ -70,5 +70,3 @@ print(f"Sharpe Ratio: {analyzer.metrics['sharpe']:.2f}")
70
70
  - matplotlib >= 3.5.0
71
71
  - seaborn >= 0.11.0
72
72
  - ivolatility >= 1.8.2
73
-
74
- ## Test CI
@@ -44,5 +44,3 @@ print(f"Sharpe Ratio: {analyzer.metrics['sharpe']:.2f}")
44
44
  - matplotlib >= 3.5.0
45
45
  - seaborn >= 0.11.0
46
46
  - ivolatility >= 1.8.2
47
-
48
- ## Test CI
@@ -17,7 +17,8 @@ from .ivolatility_backtesting import (
17
17
  get_cache_config, UniversalCacheManager,
18
18
  _process_options_df,
19
19
  precalculate_indicators_from_config, build_indicator_lookup,
20
- INDICATOR_REGISTRY, auto_calculate_lookback_period
20
+ INDICATOR_REGISTRY, auto_calculate_lookback_period,
21
+ calculate_iv_lean_from_ivx, preload_ivx_zscore_cache
21
22
  )
22
23
 
23
24
  __all__ = [
@@ -39,5 +40,6 @@ __all__ = [
39
40
  'get_cache_config', 'UniversalCacheManager',
40
41
  '_process_options_df',
41
42
  'precalculate_indicators_from_config', 'build_indicator_lookup',
42
- 'INDICATOR_REGISTRY', 'auto_calculate_lookback_period'
43
+ 'INDICATOR_REGISTRY', 'auto_calculate_lookback_period',
44
+ 'calculate_iv_lean_from_ivx', 'preload_ivx_zscore_cache'
43
45
  ]