(
self,
type: str,
symbol: str,
data: Dict,
)
| 129 | return res |
| 130 | |
| 131 | def add_recent_history( |
| 132 | self, |
| 133 | type: str, |
| 134 | symbol: str, |
| 135 | data: Dict, |
| 136 | ) -> None: |
| 137 | recent_history = self._get_recent_history(type, symbol) |
| 138 | recent_history.append(data) |
| 139 | print(f"Add recent history for {type} {symbol}.") |
| 140 | |
| 141 | def get_recent_history( |
| 142 | self, |
nothing calls this directly
no test coverage detected