We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d4c70c commit 3c45789Copy full SHA for 3c45789
backtesting/backtesting.py
@@ -77,14 +77,6 @@ def _check_params(self, params):
77
"can be optimized or run with.")
78
setattr(self, k, v)
79
return params
80
-
81
- def get_indicators_dataframe(self):
82
- """
83
- Compile all indicator arrays into a DataFrame with the same index as the strategy data.
84
85
86
- indicators_dict = {ind.name: ind for ind in self._indicators}
87
- return pd.DataFrame(indicators_dict, index=self._data.index)
88
89
def I(self, # noqa: E743
90
func: Callable, *args,
0 commit comments