cryptochassis

Results 12 comments of cryptochassis
trafficstars

Hi, kv-gits, thank you for reaching us. This issue is known to us: https://github.com/crypto-chassis/ccapi/issues/85. However, recently we're in the process of ramping up production of our proprietary market making currently...

I think it is CCAPI_ORDER_PRICE_INCREMENT that you want.

Based on my understanding of Binance's API, order prices should be round based on tick size rather than quoteAssetPrecision.

Noted. Thank you very much for providing the details. We are working on devising a best approach to solve it soon. WIP: https://github.com/crypto-chassis/ccapi/pull/395

That is quite challenging if not entirely impossible because we generate the Python bindings through something called SWIG (https://www.swig.org/). setTimer requires a callback as parameter, and that feature isn't supported...

We've found a workaround: not ideal at all, but can be used as a workaround. :) See: https://github.com/crypto-chassis/ccapi?tab=readme-ov-file#receive-subscription-events-at-periodic-intervals-including-when-the-market-depth-snapshot-hasnt-changed. That basically serves as a periodic "timer". Let me know if that...

@grisumbras Very sorry for the late reply. I completely missed your previous messages. Yes, we only need this special handling for parsing. Using basic_parser with a custom handler seems to...

We parse about millions of json messages per second and therefore skipping string to number conversion would probably have visible impact on our system's performance. We'd appreciate if there could...

We don't need the ability to modify the JSON values. At the time that we first started our library development in 2019 and published its first version, simdjson wasn't available....