(Object symbol, Object cost)
| 11686 | } |
| 11687 | |
| 11688 | public Object costToPrecision(Object symbol, Object cost) |
| 11689 | { |
| 11690 | if (Helpers.isTrue(Helpers.isEqual(cost, null))) |
| 11691 | { |
| 11692 | return null; |
| 11693 | } |
| 11694 | Object market = this.market(symbol); |
| 11695 | return this.decimalToPrecision(cost, TRUNCATE, this.safeString2(Helpers.GetValue(market, "precision"), "cost", "price"), this.precisionMode, this.paddingMode); |
| 11696 | } |
| 11697 | |
| 11698 | public Object priceToPrecision(Object symbol, Object price) |
| 11699 | { |
nothing calls this directly
no test coverage detected