(self, side: Str)
| 2061 | }) |
| 2062 | |
| 2063 | def parse_position_side(self, side: Str) -> Str: |
| 2064 | sides = { |
| 2065 | 'BUY': 'long', |
| 2066 | 'SELL': 'short', |
| 2067 | } |
| 2068 | return self.safe_string(sides, side, side) |
| 2069 | |
| 2070 | def fetch_position_history(self, symbol: str, since: Int = None, limit: Int = None, params={}) -> List[Position]: |
| 2071 | """ |
no test coverage detected