(self, datetime_d: [str, pd.Timestamp])
| 142 | shutil.copytree(str(self.qlib_dir.resolve()), str(target_dir.resolve())) |
| 143 | |
| 144 | def _format_datetime(self, datetime_d: [str, pd.Timestamp]): |
| 145 | datetime_d = pd.Timestamp(datetime_d) |
| 146 | return datetime_d.strftime(self.calendar_format) |
| 147 | |
| 148 | def _get_date( |
| 149 | self, file_or_df: [Path, pd.DataFrame], *, is_begin_end: bool = False, as_set: bool = False |
no outgoing calls
no test coverage detected