bitfinex-py icon indicating copy to clipboard operation
bitfinex-py copied to clipboard

A Python client for the Bitfinex API

Results 11 bitfinex-py issues
Sort by recently updated
recently updated
newest added

As Bitfinex is up after somedays so I think it will be nice to create issues again. As I try to run history() it returns following error: trade = TradeClient('BITFINEX_KEY','BITFINEX_SECRET')...

Hello, Want to know if this project will have some new upgrade ? Like Trailing Stop and new bitfinex api call ... Thanks.

TradeClient fix; added methods for history: -movements; -offers_history

Hello, I think it will be better in client.py to put on the line 21: TIMEOUT = (5.0, None) Like that there are a timeout of 5 seconds for the...

Hello, When installed by `pip` the client.py don't have the **TradeClient** class. Version 0.2.6 Thank you.

Getting string `'Invalid order: minimum size for BTC/USD is 0.005'` is not really helpful -- it's better to raise an exception.

There's no /ticker endpoint in the docs. https://docs.bitfinex.com/v1/reference#rest-public-ticker About floats -- please see the issue here: https://github.com/scottjbarr/bitfinex/issues/18

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...

Withdraw endpoint to TradeClient. Maybe it would be better to create `FundsClient` or `WithdrawClient` but it is only one endpoint so `TradeClient` is also a good place I suppose :)

Attempting to create a script for placing an order with the help of the example "basic.py" I keep getting the error: AttributeError: 'Client' object has no attribute 'place_order' from bitfinex.client...