@@ -27,7 +27,10 @@ through Deribit's WebSocket API v2.
2727- 📊 ** Real-time Market Data** - Live ticker, order book, trades, and chart data streaming
2828- 📈 ** Advanced Subscriptions** - Chart data aggregation and user position change notifications
2929- 💰 ** Mass Quote System** - High-performance mass quoting with MMP (Market Maker Protection) groups
30- - 🔐 ** Authentication** - Secure API key and signature-based authentication
30+ - 🔐 ** Authentication** - Secure API key and signature-based authentication with typed responses
31+ - 📝 ** Trading Operations** - Full order lifecycle: buy, sell, cancel, edit orders
32+ - 💼 ** Account Management** - Position queries, account summaries, order history
33+ - 🔄 ** Session Management** - Heartbeat control, client identification, cancel-on-disconnect
3134- 🛡️ ** Error Handling** - Comprehensive error types with detailed recovery mechanisms
3235- ⚡ ** Async/Await** - Full async support with tokio runtime for high concurrency
3336- 🔄 ** Callback System** - Flexible message processing with primary and error callbacks
@@ -137,11 +140,31 @@ let response = client.mass_quote(request).await?;
137140### Examples
138141
139142The crate includes comprehensive examples demonstrating:
143+
144+ #### Core Examples
140145- ** ` basic_client.rs ` ** - Basic connection, subscription, and message handling
141146- ** ` callback_example.rs ` ** - Advanced callback system with error handling
142147- ** ` advanced_subscriptions.rs ` ** - Chart data and position change subscriptions
148+
149+ #### Trading & Account Management (v0.2.0)
150+ - ** ` trading_operations.rs ` ** - Buy, sell, cancel, edit orders
151+ - ** ` account_operations.rs ` ** - Get positions, account summary, order history
152+ - ** ` position_management.rs ` ** - Close positions, move positions between subaccounts
153+
154+ #### Session Management (v0.2.0)
155+ - ** ` session_management.rs ` ** - Hello, heartbeat, typed responses (AuthResponse, HelloResponse, TestResponse)
156+ - ** ` cancel_on_disconnect.rs ` ** - Enable/disable/get cancel-on-disconnect status
157+ - ** ` unsubscribe_all.rs ` ** - Public and private unsubscribe_all operations
158+
159+ #### Market Data Subscriptions
160+ - ** ` new_channels_subscription.rs ` ** - Grouped order book, incremental ticker, trades by kind
161+ - ** ` perpetual_subscription.rs ` ** - Perpetual funding rate subscriptions
162+ - ** ` quote_subscription.rs ` ** - Quote data subscriptions
163+ - ** ` price_index_subscription.rs ` ** - Price index subscriptions
164+
165+ #### Mass Quoting
143166- ** ` mass_quote_basic.rs ` ** - Basic mass quoting with MMP group setup
144- - ** ` mass_quote_advanced.rs ` ** - Advanced mass quoting with multiple MMP groups and monitoring
167+ - ** ` mass_quote_advanced.rs ` ** - Advanced mass quoting with multiple MMP groups
145168- ** ` mass_quote_options.rs ` ** - Options-specific mass quoting with delta management
146169
147170### Architecture
0 commit comments