scottjbarr / bitfinex-py

A Python client for the Bitfinex API
MIT License
134 stars 131 forks source link

Converting to float #18

Open Sajam opened 7 years ago

Sajam commented 7 years ago

Hello,

Converting to float is not good idea, floating point variables are inaccurate and accuracy is very important in financial world. I'd switch to Decimal or leave it string (so end user can decide whether to convert it to float or Decimal).

Thanks!