|
| 1 | +# Hummingbot Plugin for Eliza |
| 2 | + |
| 3 | +A powerful plugin that integrates Hummingbot's market making capabilities with Eliza trading agents. This plugin enables Eliza to perform automated market making and trading operations using Hummingbot's infrastructure. |
| 4 | + |
| 5 | +## Features |
| 6 | + |
| 7 | +- Real-time market data streaming via WebSocket |
| 8 | +- Simple market making strategy with configurable parameters |
| 9 | +- Inventory skew management |
| 10 | +- Order lifecycle management (create, cancel, track) |
| 11 | +- Rate limiting and error handling |
| 12 | +- Automatic reconnection and recovery |
| 13 | +- Multi-level order book support |
| 14 | + |
| 15 | +## Installation |
| 16 | + |
| 17 | +```bash |
| 18 | +npm install @eliza/plugin-hummingbot |
| 19 | +``` |
| 20 | + |
| 21 | +## Usage in Eliza Character |
| 22 | + |
| 23 | +Add the plugin to your character configuration: |
| 24 | + |
| 25 | +```json |
| 26 | +{ |
| 27 | + "plugins": ["@eliza/plugin-hummingbot"], |
| 28 | + "settings": { |
| 29 | + "HUMMINGBOT_CONFIG": { |
| 30 | + "instance": { |
| 31 | + "url": "http://localhost:15888", |
| 32 | + "wsUrl": "ws://localhost:8060", |
| 33 | + "apiKey": "your-hummingbot-api-key", |
| 34 | + "instanceId": "eli-agent" |
| 35 | + }, |
| 36 | + "defaultStrategy": { |
| 37 | + "exchange": "binance", |
| 38 | + "tradingPair": "BTC-USDT", |
| 39 | + "orderAmount": 0.001, |
| 40 | + "orderLevels": 2, |
| 41 | + "maxOrderAge": 1800, |
| 42 | + "inventorySkewEnabled": true, |
| 43 | + "inventoryTargetBase": 50, |
| 44 | + "bidSpread": 0.2, |
| 45 | + "askSpread": 0.2, |
| 46 | + "minSpread": 0.1, |
| 47 | + "maxSpread": 0.5, |
| 48 | + "priceSource": "current_market", |
| 49 | + "orderRefreshTime": 60 |
| 50 | + } |
| 51 | + } |
| 52 | + } |
| 53 | +} |
| 54 | +``` |
| 55 | + |
| 56 | +> **Note:** The `url` and `apiKey` fields in the instance configuration are required. The plugin will throw an error if either of these values is missing or undefined. |
| 57 | +
|
| 58 | +## Quick Start |
| 59 | + |
| 60 | +```typescript |
| 61 | +import { HummingbotPlugin } from '@eliza/plugin-hummingbot'; |
| 62 | +import { SimpleMarketMaking } from '@eliza/plugin-hummingbot/strategies'; |
| 63 | + |
| 64 | +// Initialize the plugin |
| 65 | +const plugin = new HummingbotPlugin({ |
| 66 | + instance: { |
| 67 | + url: 'http://localhost:15888', // Default Hummingbot REST API port |
| 68 | + wsUrl: 'ws://localhost:8060', // Default Hummingbot WebSocket port |
| 69 | + apiKey: 'your-api-key', |
| 70 | + instanceId: 'instance-1' |
| 71 | + } |
| 72 | +}); |
| 73 | + |
| 74 | +// Initialize plugin |
| 75 | +await plugin.init(); |
| 76 | + |
| 77 | +// Configure market making strategy |
| 78 | +const config = { |
| 79 | + exchange: "binance", |
| 80 | + tradingPair: "BTC-USDT", |
| 81 | + orderAmount: 0.001, // Base order size in BTC |
| 82 | + orderLevels: 2, // Number of orders on each side |
| 83 | + maxOrderAge: 1800, // Maximum order age in seconds |
| 84 | + inventorySkewEnabled: true, |
| 85 | + inventoryTargetBase: 50, // Target base asset percentage |
| 86 | + inventoryRangeMultiplier: 1.5, |
| 87 | + bidSpread: 0.2, // 0.2% spread for bids |
| 88 | + askSpread: 0.2, // 0.2% spread for asks |
| 89 | + minSpread: 0.1, // Minimum allowed spread |
| 90 | + maxSpread: 0.5, // Maximum allowed spread |
| 91 | + priceSource: 'current_market', |
| 92 | + minimumSpreadEnabled: true, |
| 93 | + pingPongEnabled: false, |
| 94 | + orderRefreshTime: 60 // Refresh orders every 60 seconds |
| 95 | +}; |
| 96 | + |
| 97 | +// Create and start the strategy |
| 98 | +const strategy = new SimpleMarketMaking(plugin, config); |
| 99 | +const stopStrategy = await strategy.start(); |
| 100 | + |
| 101 | +// Handle shutdown gracefully |
| 102 | +process.on('SIGINT', async () => { |
| 103 | + console.log('Shutting down strategy...'); |
| 104 | + await stopStrategy(); |
| 105 | + process.exit(0); |
| 106 | +}); |
| 107 | +``` |
| 108 | + |
| 109 | +## Configuration Guide |
| 110 | + |
| 111 | +### Plugin Configuration |
| 112 | + |
| 113 | +| Parameter | Type | Description | Required | |
| 114 | +|-----------|--------|-------------|----------| |
| 115 | +| url | string | Hummingbot REST API URL | Yes | |
| 116 | +| wsUrl | string | Hummingbot WebSocket URL | Yes | |
| 117 | +| apiKey | string | API key for authentication | Yes | |
| 118 | +| instanceId| string | Unique identifier for the instance | Yes | |
| 119 | + |
| 120 | +### Market Making Strategy Configuration |
| 121 | + |
| 122 | +| Parameter | Type | Description | Required | Default | |
| 123 | +|-----------|------|-------------|----------|---------| |
| 124 | +| exchange | string | Exchange to trade on | Yes | - | |
| 125 | +| tradingPair | string | Trading pair (e.g., "BTC-USDT") | Yes | - | |
| 126 | +| orderAmount | number | Base order size | Yes | - | |
| 127 | +| orderLevels | number | Number of orders on each side | No | 1 | |
| 128 | +| maxOrderAge | number | Maximum order age in seconds | No | 1800 | |
| 129 | +| inventorySkewEnabled | boolean | Enable inventory skew | No | false | |
| 130 | +| inventoryTargetBase | number | Target base asset % | No | 50 | |
| 131 | +| bidSpread | number | Bid spread percentage | Yes | - | |
| 132 | +| askSpread | number | Ask spread percentage | Yes | - | |
| 133 | +| minSpread | number | Minimum spread percentage | No | 0.1 | |
| 134 | +| maxSpread | number | Maximum spread percentage | No | 0.5 | |
| 135 | +| priceSource | string | Price source for orders | No | 'current_market' | |
| 136 | +| orderRefreshTime | number | Order refresh interval (seconds) | No | 60 | |
| 137 | + |
| 138 | +## API Reference |
| 139 | + |
| 140 | +### HummingbotPlugin |
| 141 | + |
| 142 | +#### Methods |
| 143 | + |
| 144 | +- `init(): Promise<void>` - Initialize the plugin |
| 145 | +- `subscribeToMarketData(exchange: string, symbol: string, callback: (data: MarketData) => void): Promise<() => void>` - Subscribe to market data |
| 146 | +- `placeOrder(params: OrderParams): Promise<string>` - Place a new order |
| 147 | +- `cancelOrder(exchange: string, orderId: string): Promise<boolean>` - Cancel an order |
| 148 | +- `getOrderStatus(exchange: string, orderId: string): Promise<any>` - Get order status |
| 149 | + |
| 150 | +### SimpleMarketMaking Strategy |
| 151 | + |
| 152 | +#### Methods |
| 153 | + |
| 154 | +- `start(): Promise<() => void>` - Start the market making strategy |
| 155 | +- `updateBalances(): Promise<void>` - Update portfolio balances |
| 156 | +- `cancelAllOrders(): Promise<void>` - Cancel all active orders |
| 157 | + |
| 158 | +## Error Handling |
| 159 | + |
| 160 | +The plugin implements comprehensive error handling: |
| 161 | + |
| 162 | +- Rate limit handling with automatic retries |
| 163 | +- WebSocket connection management with automatic reconnection |
| 164 | +- Order validation and error reporting |
| 165 | +- Balance checking before order placement |
| 166 | + |
| 167 | +## Prerequisites |
| 168 | + |
| 169 | +- Running Hummingbot instance |
| 170 | +- Valid API credentials |
| 171 | +- Sufficient balance on the target exchange |
0 commit comments