ivolatility-backtesting 1.32__tar.gz → 1.34__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.
- {ivolatility_backtesting-1.32 → ivolatility_backtesting-1.34}/PKG-INFO +1 -1
- {ivolatility_backtesting-1.32 → ivolatility_backtesting-1.34}/ivolatility_backtesting/__init__.py +6 -2
- {ivolatility_backtesting-1.32 → ivolatility_backtesting-1.34}/ivolatility_backtesting.egg-info/PKG-INFO +1 -1
- {ivolatility_backtesting-1.32 → ivolatility_backtesting-1.34}/pyproject.toml +1 -1
- {ivolatility_backtesting-1.32 → ivolatility_backtesting-1.34}/LICENSE +0 -0
- {ivolatility_backtesting-1.32 → ivolatility_backtesting-1.34}/README.md +0 -0
- {ivolatility_backtesting-1.32 → ivolatility_backtesting-1.34}/ivolatility_backtesting/ivolatility_backtesting.py +0 -0
- {ivolatility_backtesting-1.32 → ivolatility_backtesting-1.34}/ivolatility_backtesting.egg-info/SOURCES.txt +0 -0
- {ivolatility_backtesting-1.32 → ivolatility_backtesting-1.34}/ivolatility_backtesting.egg-info/dependency_links.txt +0 -0
- {ivolatility_backtesting-1.32 → ivolatility_backtesting-1.34}/ivolatility_backtesting.egg-info/requires.txt +0 -0
- {ivolatility_backtesting-1.32 → ivolatility_backtesting-1.34}/ivolatility_backtesting.egg-info/top_level.txt +0 -0
- {ivolatility_backtesting-1.32 → ivolatility_backtesting-1.34}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ivolatility_backtesting
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.34
|
|
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
|
{ivolatility_backtesting-1.32 → ivolatility_backtesting-1.34}/ivolatility_backtesting/__init__.py
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from .ivolatility_backtesting import (
|
|
2
2
|
BacktestResults, BacktestAnalyzer, ResultsReporter,
|
|
3
3
|
ChartGenerator, ResultsExporter, run_backtest, run_backtest_with_stoploss,
|
|
4
|
-
init_api, api_call, APIHelper, APIManager,
|
|
4
|
+
init_api, api_call, APIHelper, APIManager, get_api_data, is_api_response_valid,
|
|
5
5
|
ResourceMonitor, create_progress_bar, update_progress, format_time,
|
|
6
6
|
StopLossManager, PositionManager, StopLossConfig,
|
|
7
7
|
calculate_stoploss_metrics, print_stoploss_section, create_stoploss_charts,
|
|
@@ -12,6 +12,7 @@ from .ivolatility_backtesting import (
|
|
|
12
12
|
STRATEGIES, StrategyRegistry, detect_strategy_type, format_params_string,
|
|
13
13
|
preload_data_universal, # NEW: Universal preloader V2
|
|
14
14
|
safe_get_greek, collect_garbage, # Helper functions
|
|
15
|
+
get_option_by_strike_exp, # NEW: Universal option lookup (works with any endpoint)
|
|
15
16
|
apply_optimization_preset, list_optimization_presets,
|
|
16
17
|
calculate_combinations_count, print_preset_info,
|
|
17
18
|
get_cache_config, UniversalCacheManager,
|
|
@@ -24,7 +25,7 @@ from .ivolatility_backtesting import (
|
|
|
24
25
|
__all__ = [
|
|
25
26
|
'BacktestResults', 'BacktestAnalyzer', 'ResultsReporter',
|
|
26
27
|
'ChartGenerator', 'ResultsExporter', 'run_backtest', 'run_backtest_with_stoploss',
|
|
27
|
-
'init_api', 'api_call', 'APIHelper', 'APIManager',
|
|
28
|
+
'init_api', 'api_call', 'APIHelper', 'APIManager', 'get_api_data', 'is_api_response_valid',
|
|
28
29
|
'ResourceMonitor', 'create_progress_bar', 'update_progress', 'format_time',
|
|
29
30
|
'StopLossManager', 'PositionManager', 'StopLossConfig',
|
|
30
31
|
'calculate_stoploss_metrics', 'print_stoploss_section', 'create_stoploss_charts',
|
|
@@ -35,11 +36,14 @@ __all__ = [
|
|
|
35
36
|
'STRATEGIES', 'StrategyRegistry', 'detect_strategy_type', 'format_params_string',
|
|
36
37
|
'preload_data_universal', # NEW: Universal preloader V2
|
|
37
38
|
'safe_get_greek', 'collect_garbage', # Helper functions
|
|
39
|
+
'get_option_by_strike_exp', # NEW: Universal option lookup (works with any endpoint)
|
|
38
40
|
'apply_optimization_preset', 'list_optimization_presets',
|
|
39
41
|
'calculate_combinations_count', 'print_preset_info',
|
|
40
42
|
'get_cache_config', 'UniversalCacheManager',
|
|
41
43
|
'_process_options_df',
|
|
44
|
+
# Indicator pre-calculation (v2.27.3+)
|
|
42
45
|
'precalculate_indicators_from_config', 'build_indicator_lookup',
|
|
43
46
|
'INDICATOR_REGISTRY', 'auto_calculate_lookback_period',
|
|
47
|
+
# IV Lean / Z-Score functions
|
|
44
48
|
'calculate_iv_lean_from_ivx', 'preload_ivx_zscore_cache'
|
|
45
49
|
]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ivolatility_backtesting
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.34
|
|
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
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "ivolatility_backtesting"
|
|
7
|
-
version = "1.
|
|
7
|
+
version = "1.34"
|
|
8
8
|
description = "A universal backtesting framework for financial strategies using the IVolatility API."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
authors = [
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|