(self, amount, market: dict = None)
| 1286 | return self.parse_to_numeric(preciseString) |
| 1287 | |
| 1288 | def to_ev(self, amount, market: dict = None): |
| 1289 | if (amount is None) or (market is None): |
| 1290 | return amount |
| 1291 | return self.to_en(amount, market['valueScale']) |
| 1292 | |
| 1293 | def to_ep(self, price, market: Market = None): |
| 1294 | if (price is None) or (market is None): |
no test coverage detected