@@ -101,121 +101,140 @@ export class SimpleMarketMaking {
101
101
throw new Error ( 'Unable to determine reference price' ) ;
102
102
}
103
103
104
- // Create pricing and sizing proposals
105
- const pricingProposal = this . createPricingProposal ( refPrice ) ;
106
- const sizingProposal = this . createSizingProposal ( ) ;
104
+ // Create pricing proposal
105
+ const pricingProposal = await this . createPricingProposal ( refPrice ) ;
106
+ const sizingProposal = await this . createSizingProposal ( ) ;
107
107
108
- // Combine into order proposal
108
+ // Create order proposal
109
109
return {
110
- actions : ORDER_PROPOSAL_ACTION_CREATE_ORDERS | ORDER_PROPOSAL_ACTION_CANCEL_ORDERS ,
110
+ actions : ORDER_PROPOSAL_ACTION_CREATE_ORDERS ,
111
111
cancelOrderIds : Array . from ( this . activeOrders . keys ( ) ) ,
112
- buyOrderPrices : pricingProposal . buyPrices ,
113
- sellOrderPrices : pricingProposal . sellPrices ,
114
- buyOrderSizes : sizingProposal . buySizes ,
115
- sellOrderSizes : sizingProposal . sellSizes ,
116
- buyOrderType : OrderType . LIMIT ,
117
- sellOrderType : OrderType . LIMIT
112
+ buyOrderType : 'limit' as OrderType ,
113
+ sellOrderType : 'limit' as OrderType ,
114
+ buyOrderPrices : pricingProposal . buyOrderPrices ,
115
+ buyOrderSizes : sizingProposal . buyOrderSizes ,
116
+ sellOrderPrices : pricingProposal . sellOrderPrices ,
117
+ sellOrderSizes : sizingProposal . sellOrderSizes
118
118
} ;
119
119
}
120
120
121
- private async getRefPrice ( marketData : MarketData ) : Promise < number | null > {
122
- return marketData . price || marketData . lastPrice || null ;
121
+ private async getRefPrice ( marketData : MarketData ) : Promise < number > {
122
+ switch ( this . config . params . priceSource ) {
123
+ case 'current_market' :
124
+ return marketData . price ;
125
+ case 'external_market' :
126
+ // TODO: Implement external market price source
127
+ return marketData . price ;
128
+ case 'custom_api' :
129
+ // TODO: Implement custom API price source
130
+ return marketData . price ;
131
+ default :
132
+ return marketData . price ;
133
+ }
123
134
}
124
135
125
- private createPricingProposal ( refPrice : number ) : PricingProposal {
126
- const { bidSpread, askSpread, orderLevels } = this . config . params ;
127
- const buyPrices : number [ ] = [ ] ;
128
- const sellPrices : number [ ] = [ ] ;
136
+ private async createPricingProposal ( refPrice : number ) : Promise < PricingProposal > {
137
+ const { spreadBasis, priceOffset } = this . config . params ;
129
138
130
- for ( let i = 0 ; i < orderLevels ; i ++ ) {
131
- const levelSpreadMultiplier = 1 + ( i * 0.5 ) ; // Increase spread by 50% for each level
132
- const buyPrice = refPrice * ( 1 - ( bidSpread * levelSpreadMultiplier ) ) ;
133
- const sellPrice = refPrice * ( 1 + ( askSpread * levelSpreadMultiplier ) ) ;
134
-
135
- buyPrices . push ( buyPrice ) ;
136
- sellPrices . push ( sellPrice ) ;
137
- }
139
+ // Calculate buy and sell prices based on spreads
140
+ const buyPrice = refPrice * ( 1 - spreadBasis ) - priceOffset ;
141
+ const sellPrice = refPrice * ( 1 + spreadBasis ) + priceOffset ;
138
142
139
- return { buyPrices, sellPrices } ;
143
+ return {
144
+ buyOrderPrices : [ buyPrice ] ,
145
+ sellOrderPrices : [ sellPrice ]
146
+ } ;
140
147
}
141
148
142
- private createSizingProposal ( ) : SizingProposal {
143
- const { orderAmount, orderLevels } = this . config . params ;
144
- const targetBaseRatio = this . config . params . inventoryTarget || 0.5 ;
145
- const skewRatios = this . calculateInventorySkew ( targetBaseRatio ) ;
146
-
147
- const buySizes : number [ ] = [ ] ;
148
- const sellSizes : number [ ] = [ ] ;
149
+ private async createSizingProposal ( ) : Promise < SizingProposal > {
150
+ const { orderAmount } = this . config . params ;
151
+ const currentPosition = this . baseBalance ;
152
+ const targetPosition = 0 ; // Default target position
149
153
150
- for ( let i = 0 ; i < orderLevels ; i ++ ) {
151
- const levelSizeMultiplier = 1 - ( i * 0.2 ) ; // Decrease size by 20% for each level
152
- const baseSize = orderAmount * levelSizeMultiplier ;
153
-
154
- buySizes . push ( baseSize * skewRatios . buyRatio ) ;
155
- sellSizes . push ( baseSize * skewRatios . sellRatio ) ;
156
- }
154
+ // Calculate inventory skew ratios
155
+ const skewRatios = this . calculateInventorySkewRatios ( currentPosition , targetPosition ) ;
157
156
158
- return { buySizes, sellSizes } ;
157
+ return {
158
+ buyOrderSizes : [ orderAmount * ( skewRatios ?. buyRatio || 1 ) ] ,
159
+ sellOrderSizes : [ orderAmount * ( skewRatios ?. sellRatio || 1 ) ]
160
+ } ;
159
161
}
160
162
161
- private calculateInventorySkew ( targetBaseRatio : number ) : InventorySkewRatios {
162
- const totalValue = this . baseBalance + ( this . quoteBalance / this . config . params . refPrice ) ;
163
- const currentBaseRatio = this . baseBalance / totalValue ;
164
-
165
- // Calculate skew based on difference from target ratio
166
- const skewMultiplier = Math . min ( Math . abs ( currentBaseRatio - targetBaseRatio ) * 2 , 1 ) ;
167
-
168
- if ( currentBaseRatio < targetBaseRatio ) {
169
- // Need more base asset, increase buy orders
163
+ private calculateInventorySkewRatios ( currentPosition : number , targetPosition : number ) : { buyRatio : number ; sellRatio : number } {
164
+ if ( currentPosition === targetPosition ) {
165
+ return {
166
+ buyRatio : 1 ,
167
+ sellRatio : 1
168
+ } ;
169
+ } else if ( currentPosition < targetPosition ) {
170
+ const skew = 1 + Math . min ( 1 , ( targetPosition - currentPosition ) / targetPosition ) ;
170
171
return {
171
- buyRatio : 1 + skewMultiplier ,
172
- sellRatio : 1 - skewMultiplier
172
+ buyRatio : skew ,
173
+ sellRatio : 2 - skew
173
174
} ;
174
175
} else {
175
- // Need more quote asset, increase sell orders
176
+ const skew = 1 + Math . min ( 1 , ( currentPosition - targetPosition ) / targetPosition ) ;
176
177
return {
177
- buyRatio : 1 - skewMultiplier ,
178
- sellRatio : 1 + skewMultiplier
178
+ buyRatio : 2 - skew ,
179
+ sellRatio : skew
179
180
} ;
180
181
}
181
182
}
182
183
183
184
private async createOrders ( proposal : OrderProposal ) : Promise < void > {
184
- const orders : OrderParams [ ] = [ ] ;
185
+ const orders : Array < {
186
+ symbol : string ;
187
+ side : 'buy' | 'sell' ;
188
+ amount : number ;
189
+ price : number ;
190
+ exchange : string ;
191
+ type : OrderType ;
192
+ timestamp : number ;
193
+ } > = [ ] ;
185
194
186
195
// Create buy orders
187
196
for ( let i = 0 ; i < proposal . buyOrderPrices . length ; i ++ ) {
188
- orders . push ( {
189
- exchange : this . config . exchange ,
190
- symbol : this . config . tradingPair ,
191
- side : 'buy' ,
192
- type : proposal . buyOrderType ,
193
- amount : proposal . buyOrderSizes [ i ] ,
194
- price : proposal . buyOrderPrices [ i ] ,
195
- timestamp : Date . now ( )
196
- } ) ;
197
+ const price = proposal . buyOrderPrices [ i ] ;
198
+ if ( typeof price === 'number' ) {
199
+ const order = {
200
+ exchange : this . config . exchange ,
201
+ symbol : this . config . tradingPair ,
202
+ side : 'buy' as const ,
203
+ type : proposal . buyOrderType ,
204
+ amount : proposal . buyOrderSizes [ i ] ,
205
+ price,
206
+ timestamp : Date . now ( )
207
+ } ;
208
+ orders . push ( order ) ;
209
+ }
197
210
}
198
211
199
212
// Create sell orders
200
213
for ( let i = 0 ; i < proposal . sellOrderPrices . length ; i ++ ) {
201
- orders . push ( {
202
- exchange : this . config . exchange ,
203
- symbol : this . config . tradingPair ,
204
- side : 'sell' ,
205
- type : proposal . sellOrderType ,
206
- amount : proposal . sellOrderSizes [ i ] ,
207
- price : proposal . sellOrderPrices [ i ] ,
208
- timestamp : Date . now ( )
209
- } ) ;
214
+ const price = proposal . sellOrderPrices [ i ] ;
215
+ if ( typeof price === 'number' ) {
216
+ const order = {
217
+ exchange : this . config . exchange ,
218
+ symbol : this . config . tradingPair ,
219
+ side : 'sell' as const ,
220
+ type : proposal . sellOrderType ,
221
+ amount : proposal . sellOrderSizes [ i ] ,
222
+ price,
223
+ timestamp : Date . now ( )
224
+ } ;
225
+ orders . push ( order ) ;
226
+ }
210
227
}
211
228
212
- // Place orders
229
+ // Place the orders
213
230
for ( const order of orders ) {
214
231
try {
215
232
const orderId = await this . plugin . placeOrder ( order ) ;
216
- this . activeOrders . set ( orderId , order ) ;
233
+ if ( orderId ) {
234
+ this . activeOrders . set ( orderId , order ) ;
235
+ }
217
236
} catch ( error ) {
218
- console . error ( `Failed to place ${ order . side } order:` , error ) ;
237
+ console . error ( 'Error placing order:' , error ) ;
219
238
}
220
239
}
221
240
}
0 commit comments