Skip to content

Commit

Permalink
fix: coinbase sell product precision
Browse files Browse the repository at this point in the history
  • Loading branch information
daneisburgh committed Jan 14, 2024
1 parent 75639a9 commit ac9c54e
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion invaas/coinbase/coinbase_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,15 @@ def __buy_product(self, product_id: str, available_cash: float):

def __sell_product(self, product_id: str, owned_crypto: float):
crypto_id = self.__get_crypto_id(product_id)
sell_amount = self.floor_value(value=owned_crypto, precision=8)

if product_id in ["BTC-USD", "ETH-USD"]:
precision = 8
elif product_id in ["DOT-USD", "SOL-USD"]:
precision = 3
elif product_id in ["ATOM-USD"]:
precision = 2

sell_amount = self.floor_value(value=owned_crypto, precision=precision)
self.logger.info(f"Sell amount: {sell_amount}")

if sell_amount == 0:
Expand Down

0 comments on commit ac9c54e

Please sign in to comment.