Closed foonsun closed 1 year ago
Crypt-Msg-Parse only support Trade and L2orderbook, any schedule of supporting other martket-types?
For now the crypto-msg-parser
library supports two message types Trade
and L2Event
.
What message type will you need ?
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.
For now the
crypto-msg-parser
library supports two message typesTrade
andL2Event
.What message type will you need ?
The L2Event struct is incremental orderbook event. incremental---->full orderbook is better.not the snapshot orderbook.
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.
Incremental orderbook messages and full snapshot messages use the same L2Event
structure , only the pub snapshot: bool
field is different
Hi Soulmachine,
crypto-client is important to trade in the exchanges.
Async Client is desired.
Any schedule?