gaardiolor

Results 57 comments of gaardiolor

Would realy like this to be implemented too, using float all my calculations go wrong. Now I have to cast al floats to decimals, and back to float again when...

python module simplejson supports decimal import / exports. Easy workaround: ``` import ccxt import simplejson as json e = ccxt.bittrex() decimal_order_book = json.loads(json.dumps(e.fetch_order_book('ETH/BTC')), use_decimal=True) ``` @kroitor this should be pretty...

OK, totally trust your judgement of course, I'm pretty new to programming. Awesome piece of work this library.

I also have a similar issue; `entry['response']['content']['text']` is missing for `Content-Type: application/json;charset=utf-8` . Works in 0.6.0 .

Hmm, it seems to not be bound to a specific Content-Type. I have seen examples of 0.6.1 having `['response']['content']['text']` for `Content-Type: application/json;charset=utf-8` But definately 0.6.0 is more reliable. For one...

I just had the same, when creating a new dashboard, going to Settings, JSON Model, and pasting the JSON. It works when going to the Dashboard dropdown (top-left) and click...

Thanks. My goal is to use this exchange in freqtrade though.. freqtrade needs fetch_ticker & fetch_tickers . Hyperliquid `metaAndAssetCtxs` and `spotMetaAndAssetCtxs` provide volume, which could be used for fetch_tickers. Most...

ok, thanks for the support! Headsup, a DEX requires a different form of authentication. In ccxt, where a CEX needs `apiKey` and `secret`, a DEX needs `walletAddress` and `privateKey`. So...

Hi @xmatthias, thanks! I did some searching. Turns out they have just started spot trading, only 2 symbols are supported now on the exchange. From what I read this will...

I've done some initial tests with `pytest --longrun tests/exchange_online/test_ccxt_compat.py` . conftest.py: ``` EXCHANGES = { "hyperliquid": { "orderbook_max_entries": 20, "pair": "PURR/USDC", "stake_currency": "USDC", "hasQuoteVolume": False, "timeframe": "1h", "futures": True, "futures_pair":...