(self, instrument, start_index, end_index, *args)
| 204 | |
| 205 | @abc.abstractmethod |
| 206 | def _load_internal(self, instrument, start_index, end_index, *args) -> pd.Series: |
| 207 | raise NotImplementedError("This function must be implemented in your newly defined feature") |
| 208 | |
| 209 | @abc.abstractmethod |
| 210 | def get_longest_back_rolling(self): |