crypto-crawler / crypto-crawler-rs

A rock-solid cryptocurrency crawler library.
Apache License 2.0
230 stars 74 forks source link

The development schedule of crypto-client #7

Closed foonsun closed 1 year ago

foonsun commented 2 years ago

Hi Soulmachine,

crypto-client is important to trade in the exchanges.

Async Client is desired.

Any schedule?

foonsun commented 2 years ago

Crypt-Msg-Parse only support Trade and L2orderbook, any schedule of supporting other martket-types?

soulmachine commented 2 years ago

For now the crypto-msg-parser library supports two message types Trade and L2Event.

What message type will you need ?

soulmachine commented 2 years ago

The crypto-client is the library to place orders, it is still under development.

There is a similar library crypto-client written in TypeScript, but it will be replace by this Rust version.

foonsun commented 2 years ago

For now the crypto-msg-parser library supports two message types Trade and L2Event.

What message type will you need ?

The L2Event struct is incremental orderbook event. incremental---->full orderbook is better.not the snapshot orderbook.

foonsun commented 2 years ago

The crypto-client is the library to place orders, it is still under development.

There is a similar library crypto-client written in TypeScript, but it will be replace by this Rust version.

thanks for your great job.

soulmachine commented 2 years ago

Incremental orderbook messages and full snapshot messages use the same L2Event structure , only the pub snapshot: bool field is different