(self, instrument, field, start_index, end_index, freq)
| 735 | self.backend = backend |
| 736 | |
| 737 | def feature(self, instrument, field, start_index, end_index, freq): |
| 738 | # validate |
| 739 | field = str(field)[1:] |
| 740 | instrument = code_to_fname(instrument) |
| 741 | return self.backend_obj(instrument=instrument, field=field, freq=freq)[start_index : end_index + 1] |
| 742 | |
| 743 | |
| 744 | class LocalPITProvider(PITProvider): |
nothing calls this directly
no test coverage detected