@yuants/vendor-okx 0.23.23 → 0.23.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (103) hide show
  1. package/dist/account.js +11 -9
  2. package/dist/account.js.map +1 -1
  3. package/dist/api-service.js +29 -0
  4. package/dist/api-service.js.map +1 -0
  5. package/dist/api.js +445 -510
  6. package/dist/api.js.map +1 -1
  7. package/dist/index.js +5 -3
  8. package/dist/index.js.map +1 -1
  9. package/dist/interest_rate.js +4 -4
  10. package/dist/interest_rate.js.map +1 -1
  11. package/dist/loan-account.js +3 -2
  12. package/dist/loan-account.js.map +1 -1
  13. package/dist/market-order.js +1 -1
  14. package/dist/market-order.js.map +1 -1
  15. package/dist/ohlc.js +3 -3
  16. package/dist/ohlc.js.map +1 -1
  17. package/dist/order-actions.js +211 -0
  18. package/dist/order-actions.js.map +1 -0
  19. package/dist/order.js +3 -3
  20. package/dist/order.js.map +1 -1
  21. package/dist/product.js +4 -4
  22. package/dist/product.js.map +1 -1
  23. package/dist/public-api.js +146 -0
  24. package/dist/public-api.js.map +1 -0
  25. package/dist/quote.js +80 -11
  26. package/dist/quote.js.map +1 -1
  27. package/dist/services.js +3 -2
  28. package/dist/services.js.map +1 -1
  29. package/dist/strategy-account.js +5 -4
  30. package/dist/strategy-account.js.map +1 -1
  31. package/dist/trade.js +6 -5
  32. package/dist/trade.js.map +1 -1
  33. package/dist/transfer.js +279 -0
  34. package/dist/transfer.js.map +1 -0
  35. package/dist/websocket.js.map +1 -1
  36. package/lib/account.d.ts +2 -2
  37. package/lib/account.d.ts.map +1 -1
  38. package/lib/account.js +10 -8
  39. package/lib/account.js.map +1 -1
  40. package/lib/api-service.d.ts +2 -0
  41. package/lib/api-service.d.ts.map +1 -0
  42. package/lib/api-service.js +31 -0
  43. package/lib/api-service.js.map +1 -0
  44. package/lib/api.d.ts +1251 -1558
  45. package/lib/api.d.ts.map +1 -1
  46. package/lib/api.js +477 -514
  47. package/lib/api.js.map +1 -1
  48. package/lib/index.d.ts +5 -3
  49. package/lib/index.d.ts.map +1 -1
  50. package/lib/index.js +5 -3
  51. package/lib/index.js.map +1 -1
  52. package/lib/interest_rate.js +4 -4
  53. package/lib/interest_rate.js.map +1 -1
  54. package/lib/loan-account.js +2 -1
  55. package/lib/loan-account.js.map +1 -1
  56. package/lib/market-order.d.ts.map +1 -1
  57. package/lib/market-order.js +1 -1
  58. package/lib/market-order.js.map +1 -1
  59. package/lib/ohlc.js +3 -3
  60. package/lib/ohlc.js.map +1 -1
  61. package/lib/order-actions.d.ts +2 -0
  62. package/lib/order-actions.d.ts.map +1 -0
  63. package/lib/order-actions.js +213 -0
  64. package/lib/order-actions.js.map +1 -0
  65. package/lib/order.js +2 -2
  66. package/lib/order.js.map +1 -1
  67. package/lib/product.js +4 -4
  68. package/lib/product.js.map +1 -1
  69. package/lib/public-api.d.ts +359 -0
  70. package/lib/public-api.d.ts.map +1 -0
  71. package/lib/public-api.js +161 -0
  72. package/lib/public-api.js.map +1 -0
  73. package/lib/quote.d.ts +1 -1
  74. package/lib/quote.d.ts.map +1 -1
  75. package/lib/quote.js +78 -9
  76. package/lib/quote.js.map +1 -1
  77. package/lib/services.js +2 -1
  78. package/lib/services.js.map +1 -1
  79. package/lib/strategy-account.d.ts +2 -2
  80. package/lib/strategy-account.d.ts.map +1 -1
  81. package/lib/strategy-account.js +4 -3
  82. package/lib/strategy-account.js.map +1 -1
  83. package/lib/trade.js +6 -5
  84. package/lib/trade.js.map +1 -1
  85. package/lib/transfer.d.ts +2 -0
  86. package/lib/transfer.d.ts.map +1 -0
  87. package/lib/transfer.js +281 -0
  88. package/lib/transfer.js.map +1 -0
  89. package/lib/websocket.js.map +1 -1
  90. package/package.json +13 -12
  91. package/temp/package-deps.json +34 -31
  92. package/dist/legacy_index.js +0 -562
  93. package/dist/legacy_index.js.map +0 -1
  94. package/dist/logger.js +0 -91
  95. package/dist/logger.js.map +0 -1
  96. package/lib/legacy_index.d.ts +0 -2
  97. package/lib/legacy_index.d.ts.map +0 -1
  98. package/lib/legacy_index.js +0 -564
  99. package/lib/legacy_index.js.map +0 -1
  100. package/lib/logger.d.ts +0 -21
  101. package/lib/logger.d.ts.map +0 -1
  102. package/lib/logger.js +0 -98
  103. package/lib/logger.js.map +0 -1
@@ -1,562 +0,0 @@
1
- import { Terminal } from '@yuants/protocol';
2
- import { addAccountTransferAddress } from '@yuants/transfer';
3
- import { decodePath, encodePath, formatTime, roundToStep } from '@yuants/utils';
4
- import { defer, filter, firstValueFrom, from, map, mergeMap, repeat, retry, shareReplay } from 'rxjs';
5
- import { accountConfig$, tradingAccountId$ } from './account';
6
- import { client } from './api';
7
- import { productService } from './product';
8
- import { spotMarketTickers$ } from './quote';
9
- const terminal = Terminal.fromNodeEnv();
10
- console.info(formatTime(Date.now()), 'Terminal', terminal.terminalInfo.terminal_id);
11
- const resOfAssetCurrencies = defer(() => client.getAssetCurrencies()).pipe(repeat({ delay: 3600000 }), retry({ delay: 10000 }), shareReplay(1));
12
- resOfAssetCurrencies.subscribe(); // make it hot
13
- const memoizeMap = (fn) => {
14
- const cache = {};
15
- return ((...params) => { var _a; var _b; return ((_a = cache[_b = encodePath(params)]) !== null && _a !== void 0 ? _a : (cache[_b] = fn(...params))); });
16
- };
17
- const fundingRate$ = memoizeMap((product_id) => defer(() => client.getFundingRate({ instId: decodePath(product_id)[1] })).pipe(mergeMap((x) => x.data), repeat({ delay: 5000 }), retry({ delay: 5000 }), shareReplay(1)));
18
- const interestRateLoanQuota$ = defer(() => client.getInterestRateLoanQuota()).pipe(repeat({ delay: 60000 }), retry({ delay: 60000 }), shareReplay(1));
19
- const interestRateByCurrency$ = memoizeMap((currency) => interestRateLoanQuota$.pipe(mergeMap((x) => from(x.data || []).pipe(mergeMap((x) => x.basic), filter((x) => x.ccy === currency), map((x) => +x.rate))), shareReplay(1)));
20
- // provideTicks(terminal, 'OKX', (product_id) => {
21
- // const [instType, instId] = decodePath(product_id);
22
- // if (instType === 'SWAP') {
23
- // return defer(async () => {
24
- // const products = await firstValueFrom(usdtSwapProducts$);
25
- // const theProduct = products.find((x) => x.product_id === product_id);
26
- // if (!theProduct) throw `No Found ProductID ${product_id}`;
27
- // const theTicker$ = swapMarketTickers$.pipe(
28
- // map((x) => x[instId]),
29
- // shareReplay(1),
30
- // );
31
- // return [of(theProduct), theTicker$, fundingRate$(product_id), swapOpenInterest$] as const;
32
- // }).pipe(
33
- // catchError(() => EMPTY),
34
- // mergeMap((x) =>
35
- // combineLatest(x).pipe(
36
- // map(([theProduct, ticker, fundingRate, swapOpenInterest]): ITick => {
37
- // return {
38
- // datasource_id: 'OKX',
39
- // product_id,
40
- // updated_at: Date.now(),
41
- // settlement_scheduled_at: +fundingRate.fundingTime,
42
- // price: +ticker.last,
43
- // ask: +ticker.askPx,
44
- // bid: +ticker.bidPx,
45
- // volume: +ticker.lastSz,
46
- // interest_rate_for_long: -+fundingRate.fundingRate,
47
- // interest_rate_for_short: +fundingRate.fundingRate,
48
- // open_interest: swapOpenInterest.get(instId),
49
- // };
50
- // }),
51
- // ),
52
- // ),
53
- // );
54
- // }
55
- // if (instType === 'MARGIN') {
56
- // return defer(async () => {
57
- // const products = await firstValueFrom(marginProducts$);
58
- // const theProduct = products.find((x) => x.product_id === product_id);
59
- // if (!theProduct) throw `No Found ProductID ${product_id}`;
60
- // const theTicker$ = spotMarketTickers$.pipe(
61
- // map((x) => x[instId]),
62
- // shareReplay(1),
63
- // );
64
- // return [
65
- // of(theProduct),
66
- // theTicker$,
67
- // interestRateByCurrency$(theProduct.base_currency!),
68
- // interestRateByCurrency$(theProduct.quote_currency!),
69
- // ] as const;
70
- // }).pipe(
71
- // catchError(() => EMPTY),
72
- // mergeMap((x) =>
73
- // combineLatest(x).pipe(
74
- // map(
75
- // ([theProduct, ticker, interestRateForBase, interestRateForQuote]): ITick => ({
76
- // datasource_id: 'OKX',
77
- // product_id,
78
- // updated_at: Date.now(),
79
- // price: +ticker.last,
80
- // volume: +ticker.lastSz,
81
- // // 在下一个整点扣除利息 See 如何计算利息 https://www.okx.com/zh-hans/help/how-to-calculate-borrowing-interest
82
- // settlement_scheduled_at: new Date().setMinutes(0, 0, 0) + 3600_000,
83
- // interest_rate_for_long: -interestRateForQuote / 24,
84
- // interest_rate_for_short: -interestRateForBase / 24,
85
- // }),
86
- // ),
87
- // ),
88
- // ),
89
- // );
90
- // }
91
- // return EMPTY;
92
- // });
93
- defer(async () => {
94
- const account_config = await firstValueFrom(accountConfig$);
95
- console.info(formatTime(Date.now()), 'AccountConfig', JSON.stringify(account_config));
96
- const { mainUid, uid } = account_config.data[0];
97
- const isMainAccount = mainUid === uid;
98
- const TRADING_ACCOUNT_ID = `okx/${uid}/trading`;
99
- const FUNDING_ACCOUNT_ID = `okx/${uid}/funding/USDT`;
100
- const EARNING_ACCOUNT_ID = `okx/${uid}/earning/USDT`;
101
- // BLOCK_CHAIN: only available for main account
102
- if (isMainAccount) {
103
- const depositAddressRes = await client.getAssetDepositAddress({ ccy: 'USDT' });
104
- console.info(formatTime(Date.now()), 'DepositAddress', JSON.stringify(depositAddressRes.data));
105
- const addresses = depositAddressRes.data.filter((v) => v.chain === 'USDT-TRC20' && v.to === '6');
106
- for (const address of addresses) {
107
- addAccountTransferAddress({
108
- terminal,
109
- account_id: FUNDING_ACCOUNT_ID,
110
- network_id: 'TRC20',
111
- currency: 'USDT',
112
- address: address.addr,
113
- onApply: {
114
- INIT: async (order) => {
115
- var _a, _b;
116
- if (!order.current_amount ||
117
- order.current_amount < 3 // 最小提币额度
118
- ) {
119
- return { state: 'ERROR', message: 'Amount too small' };
120
- }
121
- const res = await firstValueFrom(resOfAssetCurrencies);
122
- const theRes = (_a = res.data) === null || _a === void 0 ? void 0 : _a.find((x) => x.ccy === 'USDT' && x.chain === 'USDT-TRC20');
123
- const _fee = theRes === null || theRes === void 0 ? void 0 : theRes.minFee;
124
- if (!_fee)
125
- return { state: 'ERROR', message: 'Currency Info not found, cannot get fee' };
126
- const fee = +_fee;
127
- const amt = Math.floor(order.current_amount - fee);
128
- const transferResult = await client.postAssetWithdrawal({
129
- amt: `${amt}`,
130
- ccy: 'USDT',
131
- chain: 'USDT-TRC20',
132
- fee: `${fee}`,
133
- dest: '4',
134
- toAddr: order.current_rx_address,
135
- });
136
- if (transferResult.code !== '0') {
137
- return { state: 'INIT', message: transferResult.msg };
138
- }
139
- const wdId = (_b = transferResult.data[0]) === null || _b === void 0 ? void 0 : _b.wdId;
140
- return { state: 'AWAIT_TX_ID', context: wdId };
141
- },
142
- AWAIT_TX_ID: async (transferOrder) => {
143
- var _a, _b;
144
- const wdId = transferOrder.current_tx_context;
145
- const withdrawalHistory = await client.getAssetWithdrawalHistory({ wdId });
146
- const txId = (_b = (_a = withdrawalHistory.data) === null || _a === void 0 ? void 0 : _a[0]) === null || _b === void 0 ? void 0 : _b.txId;
147
- if (!txId) {
148
- return { state: 'AWAIT_TX_ID', context: wdId };
149
- }
150
- return { state: 'COMPLETE', transaction_id: txId };
151
- },
152
- },
153
- onEval: async (transferOrder) => {
154
- const checkResult = await client.getAssetDepositHistory({
155
- ccy: 'USDT',
156
- txId: transferOrder.current_transaction_id,
157
- type: '4',
158
- });
159
- if (checkResult.code !== '0') {
160
- return {
161
- state: 'INIT',
162
- };
163
- }
164
- if (checkResult.data[0].state !== '2') {
165
- return { state: 'PENDING' };
166
- }
167
- const received_amount = +checkResult.data[0].amt;
168
- return { state: 'COMPLETE', received_amount };
169
- },
170
- });
171
- }
172
- }
173
- // Funding-Trading
174
- {
175
- const FUNDING_TRADING_NETWORK_ID = `OKX/${uid}/Funding-Trading`;
176
- addAccountTransferAddress({
177
- terminal,
178
- account_id: FUNDING_ACCOUNT_ID,
179
- network_id: FUNDING_TRADING_NETWORK_ID,
180
- currency: 'USDT',
181
- address: 'funding',
182
- onApply: {
183
- INIT: async (order) => {
184
- const transferResult = await client.postAssetTransfer({
185
- type: '0',
186
- ccy: 'USDT',
187
- amt: `${order.current_amount}`,
188
- from: '6',
189
- to: '18',
190
- });
191
- if (transferResult.code !== '0') {
192
- return { state: 'INIT', message: transferResult.msg };
193
- }
194
- const transaction_id = transferResult.data[0].transId;
195
- return { state: 'COMPLETE', transaction_id };
196
- },
197
- },
198
- onEval: async (transferOrder) => {
199
- return { state: 'COMPLETE', received_amount: transferOrder.current_amount };
200
- },
201
- });
202
- addAccountTransferAddress({
203
- terminal,
204
- account_id: TRADING_ACCOUNT_ID,
205
- network_id: FUNDING_TRADING_NETWORK_ID,
206
- currency: 'USDT',
207
- address: 'trading',
208
- onApply: {
209
- INIT: async (order) => {
210
- const transferResult = await client.postAssetTransfer({
211
- type: '0',
212
- ccy: order.currency,
213
- amt: `${order.current_amount}`,
214
- from: '18',
215
- to: '6',
216
- });
217
- if (transferResult.code !== '0') {
218
- return { state: 'INIT', message: transferResult.msg };
219
- }
220
- const transaction_id = transferResult.data[0].transId;
221
- return { state: 'COMPLETE', transaction_id };
222
- },
223
- },
224
- onEval: async (transferOrder) => {
225
- return { state: 'COMPLETE', received_amount: transferOrder.current_amount };
226
- },
227
- });
228
- }
229
- // Funding-Earning
230
- {
231
- const FUNDING_EARNING_NETWORK_ID = `OKX/${uid}/Funding-Earning`;
232
- addAccountTransferAddress({
233
- terminal,
234
- account_id: FUNDING_ACCOUNT_ID,
235
- network_id: FUNDING_EARNING_NETWORK_ID,
236
- currency: 'USDT',
237
- address: 'funding',
238
- onApply: {
239
- INIT: async (order) => {
240
- const transferResult = await client.postFinanceSavingsPurchaseRedempt({
241
- ccy: 'USDT',
242
- amt: `${order.current_amount}`,
243
- side: 'purchase',
244
- rate: '0.01',
245
- });
246
- if (transferResult.code !== '0') {
247
- return { state: 'INIT', message: transferResult.msg };
248
- }
249
- return { state: 'COMPLETE', transaction_id: 'ok' };
250
- },
251
- },
252
- onEval: async (transferOrder) => {
253
- return { state: 'COMPLETE', received_amount: transferOrder.current_amount };
254
- },
255
- });
256
- addAccountTransferAddress({
257
- terminal,
258
- account_id: EARNING_ACCOUNT_ID,
259
- network_id: FUNDING_EARNING_NETWORK_ID,
260
- currency: 'USDT',
261
- address: 'earning',
262
- onApply: {
263
- INIT: async (order) => {
264
- const transferResult = await client.postFinanceSavingsPurchaseRedempt({
265
- ccy: 'USDT',
266
- amt: `${order.current_amount}`,
267
- side: 'redempt',
268
- rate: '0.01',
269
- });
270
- if (transferResult.code !== '0') {
271
- return { state: 'INIT', message: transferResult.msg };
272
- }
273
- return { state: 'COMPLETE', transaction_id: 'ok' };
274
- },
275
- },
276
- onEval: async (transferOrder) => {
277
- return { state: 'COMPLETE', received_amount: transferOrder.current_amount };
278
- },
279
- });
280
- }
281
- // SubAccount
282
- {
283
- const getSubAccountNetworkId = (subUid) => `OKX/${mainUid}/SubAccount/${subUid}`;
284
- if (isMainAccount) {
285
- const subAcctsRes = await client.getSubAccountList();
286
- for (const item of subAcctsRes.data || []) {
287
- addAccountTransferAddress({
288
- terminal,
289
- account_id: FUNDING_ACCOUNT_ID,
290
- network_id: getSubAccountNetworkId(item.uid),
291
- currency: 'USDT',
292
- address: 'main',
293
- onApply: {
294
- INIT: async (order) => {
295
- const transferResult = await client.postAssetTransfer({
296
- type: '1',
297
- ccy: 'USDT',
298
- amt: `${order.current_amount}`,
299
- from: '6',
300
- to: '6',
301
- subAcct: item.subAcct,
302
- });
303
- if (transferResult.code !== '0') {
304
- return { state: 'INIT', message: transferResult.msg };
305
- }
306
- const transaction_id = transferResult.data[0].transId;
307
- return { state: 'COMPLETE', transaction_id };
308
- },
309
- },
310
- onEval: async (order) => {
311
- // ISSUE: OKX API Issue: transId is incorrect or transId does not match with ‘ type’
312
- // const checkResult = await client.getAssetTransferState({ transId: order.current_transaction_id });
313
- // const received_amount = checkResult?.data?.[0]?.amt;
314
- // if (!received_amount) {
315
- // return { state: 'INIT', message: checkResult.msg };
316
- // }
317
- // return { state: 'COMPLETE', received_amount: +received_amount };
318
- return { state: 'COMPLETE', received_amount: order.current_amount };
319
- },
320
- });
321
- }
322
- }
323
- // SubAccount API
324
- else {
325
- addAccountTransferAddress({
326
- terminal,
327
- account_id: FUNDING_ACCOUNT_ID,
328
- network_id: getSubAccountNetworkId(uid),
329
- currency: 'USDT',
330
- address: 'sub',
331
- onApply: {
332
- INIT: async (order) => {
333
- const transferResult = await client.postAssetTransfer({
334
- type: '3',
335
- ccy: 'USDT',
336
- amt: `${order.current_amount}`,
337
- from: '6',
338
- to: '6',
339
- });
340
- if (transferResult.code !== '0') {
341
- return { state: 'INIT', message: transferResult.msg };
342
- }
343
- const transaction_id = transferResult.data[0].transId;
344
- return { state: 'COMPLETE', transaction_id };
345
- },
346
- },
347
- onEval: async (order) => {
348
- // ISSUE: OKX API Issue: transId is incorrect or transId does not match with ‘ type’
349
- // const checkResult = await client.getAssetTransferState({ transId: order.current_transaction_id });
350
- // const received_amount = checkResult?.data?.[0]?.amt;
351
- // if (!received_amount) {
352
- // return { state: 'INIT', message: checkResult.msg };
353
- // }
354
- // return { state: 'COMPLETE', received_amount: +received_amount };
355
- return { state: 'COMPLETE', received_amount: order.current_amount };
356
- },
357
- });
358
- }
359
- }
360
- }).subscribe();
361
- defer(async () => {
362
- const tradingAccountId = await firstValueFrom(tradingAccountId$);
363
- terminal.server.provideService('SubmitOrder', {
364
- required: ['account_id'],
365
- properties: {
366
- account_id: { const: tradingAccountId },
367
- },
368
- }, async (msg) => {
369
- var _a, _b, _c;
370
- console.info(formatTime(Date.now()), 'SubmitOrder', JSON.stringify(msg));
371
- const order = msg.req;
372
- const [instType, instId] = decodePath(order.product_id);
373
- const mapOrderDirectionToSide = (direction) => {
374
- switch (direction) {
375
- case 'OPEN_LONG':
376
- case 'CLOSE_SHORT':
377
- return 'buy';
378
- case 'OPEN_SHORT':
379
- case 'CLOSE_LONG':
380
- return 'sell';
381
- }
382
- throw new Error(`Unknown direction: ${direction}`);
383
- };
384
- const mapOrderDirectionToPosSide = (direction) => {
385
- switch (direction) {
386
- case 'OPEN_LONG':
387
- case 'CLOSE_LONG':
388
- return 'long';
389
- case 'CLOSE_SHORT':
390
- case 'OPEN_SHORT':
391
- return 'short';
392
- }
393
- throw new Error(`Unknown direction: ${direction}`);
394
- };
395
- const mapOrderTypeToOrdType = (order_type) => {
396
- switch (order_type) {
397
- case 'LIMIT':
398
- return 'limit';
399
- case 'MARKET':
400
- return 'market';
401
- case 'MAKER':
402
- return 'post_only';
403
- }
404
- throw new Error(`Unknown order type: ${order_type}`);
405
- };
406
- // 交易数量,表示要购买或者出售的数量。
407
- // 当币币/币币杠杆以限价买入和卖出时,指交易货币数量。
408
- // 当币币杠杆以市价买入时,指计价货币的数量。
409
- // 当币币杠杆以市价卖出时,指交易货币的数量。
410
- // 对于币币市价单,单位由 tgtCcy 决定
411
- // 当交割、永续、期权买入和卖出时,指合约张数。
412
- const mapOrderVolumeToSz = async (order) => {
413
- if (instType === 'SWAP') {
414
- return order.volume;
415
- }
416
- if (instType === 'MARGIN') {
417
- if (order.order_type === 'LIMIT') {
418
- return order.volume;
419
- }
420
- if (order.order_type === 'MAKER') {
421
- return order.volume;
422
- }
423
- if (order.order_type === 'MARKET') {
424
- if (order.order_direction === 'OPEN_SHORT' || order.order_direction === 'CLOSE_LONG') {
425
- return order.volume;
426
- }
427
- //
428
- const price = await firstValueFrom(spotMarketTickers$.pipe(map((x) => mapOrderDirectionToPosSide(order.order_direction) === 'long'
429
- ? +x[instId].askPx
430
- : +x[instId].bidPx)));
431
- if (!price) {
432
- throw new Error(`invalid tick: ${price}`);
433
- }
434
- console.info(formatTime(Date.now()), 'SubmitOrder', 'price', price);
435
- const theProduct = await firstValueFrom(productService.mapProductIdToProduct$.pipe(map((x) => x.get(order.product_id))));
436
- if (!theProduct) {
437
- throw new Error(`Unknown product: ${order.position_id}`);
438
- }
439
- return roundToStep(order.volume * price, theProduct.volume_step);
440
- }
441
- return 0;
442
- }
443
- if (instType === 'SPOT') {
444
- return order.volume;
445
- }
446
- throw new Error(`Unknown instType: ${instType}`);
447
- };
448
- const params = {
449
- instId,
450
- tdMode: instType === 'SPOT' ? 'cash' : 'cross',
451
- side: mapOrderDirectionToSide(order.order_direction),
452
- posSide: instType === 'MARGIN' || instType === 'SPOT'
453
- ? 'net'
454
- : mapOrderDirectionToPosSide(order.order_direction),
455
- ordType: mapOrderTypeToOrdType(order.order_type),
456
- sz: (await mapOrderVolumeToSz(order)).toString(),
457
- tgtCcy: instType === 'SPOT' && order.order_type === 'MARKET' ? 'base_ccy' : undefined,
458
- reduceOnly: instType === 'MARGIN' && ['CLOSE_LONG', 'CLOSE_SHORT'].includes((_a = order.order_direction) !== null && _a !== void 0 ? _a : '')
459
- ? 'true'
460
- : undefined,
461
- px: order.order_type === 'LIMIT' || order.order_type === 'MAKER' ? order.price.toString() : undefined,
462
- ccy: instType === 'MARGIN' ? 'USDT' : undefined,
463
- };
464
- console.info(formatTime(Date.now()), 'SubmitOrder', 'params', JSON.stringify(params));
465
- const res = await client.postTradeOrder(params);
466
- if (res.code === '0' && ((_c = (_b = res.data) === null || _b === void 0 ? void 0 : _b[0]) === null || _c === void 0 ? void 0 : _c.ordId)) {
467
- return {
468
- res: {
469
- code: 0,
470
- message: 'OK',
471
- data: {
472
- order_id: res.data[0].ordId,
473
- },
474
- },
475
- };
476
- }
477
- return { res: { code: +res.code, message: res.msg } };
478
- });
479
- terminal.server.provideService('ModifyOrder', {
480
- required: ['account_id'],
481
- properties: {
482
- account_id: { const: tradingAccountId },
483
- },
484
- }, async (msg) => {
485
- console.info(formatTime(Date.now()), 'ModifyOrder', JSON.stringify(msg));
486
- const order = msg.req;
487
- const [instType, instId] = decodePath(order.product_id);
488
- const params = {
489
- instId,
490
- ordId: order.order_id, // 使用现有订单ID
491
- };
492
- // 如果需要修改价格
493
- if (order.price !== undefined) {
494
- params.newPx = order.price.toString();
495
- }
496
- // 如果需要修改数量
497
- if (order.volume !== undefined) {
498
- // 处理数量修改,类似于 SubmitOrder 中的逻辑
499
- if (instType === 'SWAP') {
500
- params.newSz = order.volume.toString();
501
- }
502
- else if (instType === 'SPOT') {
503
- params.newSz = order.volume.toString();
504
- }
505
- else if (instType === 'MARGIN') {
506
- if (order.order_type === 'LIMIT') {
507
- params.newSz = order.volume.toString();
508
- }
509
- if (order.order_type === 'MAKER') {
510
- params.newSz = order.volume.toString();
511
- }
512
- if (order.order_type === 'MARKET') {
513
- // 对于市价单,可能需要根据当前价格计算新的数量
514
- const price = await firstValueFrom(spotMarketTickers$.pipe(map((x) => order.order_direction === 'OPEN_LONG' || order.order_direction === 'CLOSE_SHORT'
515
- ? +x[instId].askPx
516
- : +x[instId].bidPx)));
517
- if (!price) {
518
- throw new Error(`invalid tick: ${price}`);
519
- }
520
- console.info(formatTime(Date.now()), 'ModifyOrder', 'price', price);
521
- const theProduct = await firstValueFrom(productService.mapProductIdToProduct$.pipe(map((x) => x.get(order.product_id))));
522
- if (!theProduct) {
523
- throw new Error(`Unknown product: ${order.position_id}`);
524
- }
525
- params.newSz = roundToStep(order.volume * price, theProduct.volume_step).toString();
526
- }
527
- }
528
- else {
529
- throw new Error(`Unknown instType: ${instType}`);
530
- }
531
- }
532
- console.info(formatTime(Date.now()), 'ModifyOrder', 'params', JSON.stringify(params));
533
- const res = await client.postTradeAmendOrder(params);
534
- if (res.code !== '0') {
535
- return {
536
- res: {
537
- code: +res.code,
538
- message: res.msg,
539
- },
540
- };
541
- }
542
- return { res: { code: 0, message: 'OK' } };
543
- });
544
- terminal.server.provideService('CancelOrder', {
545
- required: ['account_id'],
546
- properties: {
547
- account_id: { const: tradingAccountId },
548
- },
549
- }, (msg) => defer(async () => {
550
- const order = msg.req;
551
- const [instType, instId] = decodePath(order.product_id);
552
- const res = await client.postTradeCancelOrder({
553
- instId,
554
- ordId: order.order_id,
555
- });
556
- if (res.code !== '0') {
557
- return { res: { code: +res.code, message: res.msg } };
558
- }
559
- return { res: { code: 0, message: 'OK' } };
560
- }));
561
- }).subscribe();
562
- //# sourceMappingURL=legacy_index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"legacy_index.js","sourceRoot":"","sources":["../src/legacy_index.ts"],"names":[],"mappings":"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","sourcesContent":["import { IOrder } from '@yuants/data-order';\nimport { Terminal } from '@yuants/protocol';\nimport { addAccountTransferAddress } from '@yuants/transfer';\nimport { decodePath, encodePath, formatTime, roundToStep } from '@yuants/utils';\nimport { defer, filter, firstValueFrom, from, map, mergeMap, repeat, retry, shareReplay } from 'rxjs';\nimport { accountConfig$, tradingAccountId$ } from './account';\nimport { client } from './api';\nimport { productService } from './product';\nimport { spotMarketTickers$ } from './quote';\n\nconst terminal = Terminal.fromNodeEnv();\n\nconsole.info(formatTime(Date.now()), 'Terminal', terminal.terminalInfo.terminal_id);\n\nconst resOfAssetCurrencies = defer(() => client.getAssetCurrencies()).pipe(\n repeat({ delay: 3600_000 }),\n retry({ delay: 10_000 }),\n shareReplay(1),\n);\n\nresOfAssetCurrencies.subscribe(); // make it hot\n\nconst memoizeMap = <T extends (...params: any[]) => any>(fn: T): T => {\n const cache: Record<string, any> = {};\n return ((...params: any[]) => (cache[encodePath(params)] ??= fn(...params))) as T;\n};\n\nconst fundingRate$ = memoizeMap((product_id: string) =>\n defer(() => client.getFundingRate({ instId: decodePath(product_id)[1] })).pipe(\n mergeMap((x) => x.data),\n repeat({ delay: 5000 }),\n retry({ delay: 5000 }),\n shareReplay(1),\n ),\n);\n\nconst interestRateLoanQuota$ = defer(() => client.getInterestRateLoanQuota()).pipe(\n repeat({ delay: 60_000 }),\n retry({ delay: 60_000 }),\n shareReplay(1),\n);\n\nconst interestRateByCurrency$ = memoizeMap((currency: string) =>\n interestRateLoanQuota$.pipe(\n mergeMap((x) =>\n from(x.data || []).pipe(\n mergeMap((x) => x.basic),\n filter((x) => x.ccy === currency),\n map((x) => +x.rate),\n ),\n ),\n shareReplay(1),\n ),\n);\n\n// provideTicks(terminal, 'OKX', (product_id) => {\n// const [instType, instId] = decodePath(product_id);\n// if (instType === 'SWAP') {\n// return defer(async () => {\n// const products = await firstValueFrom(usdtSwapProducts$);\n// const theProduct = products.find((x) => x.product_id === product_id);\n// if (!theProduct) throw `No Found ProductID ${product_id}`;\n// const theTicker$ = swapMarketTickers$.pipe(\n// map((x) => x[instId]),\n// shareReplay(1),\n// );\n// return [of(theProduct), theTicker$, fundingRate$(product_id), swapOpenInterest$] as const;\n// }).pipe(\n// catchError(() => EMPTY),\n// mergeMap((x) =>\n// combineLatest(x).pipe(\n// map(([theProduct, ticker, fundingRate, swapOpenInterest]): ITick => {\n// return {\n// datasource_id: 'OKX',\n// product_id,\n// updated_at: Date.now(),\n// settlement_scheduled_at: +fundingRate.fundingTime,\n// price: +ticker.last,\n// ask: +ticker.askPx,\n// bid: +ticker.bidPx,\n// volume: +ticker.lastSz,\n// interest_rate_for_long: -+fundingRate.fundingRate,\n// interest_rate_for_short: +fundingRate.fundingRate,\n// open_interest: swapOpenInterest.get(instId),\n// };\n// }),\n// ),\n// ),\n// );\n// }\n// if (instType === 'MARGIN') {\n// return defer(async () => {\n// const products = await firstValueFrom(marginProducts$);\n// const theProduct = products.find((x) => x.product_id === product_id);\n// if (!theProduct) throw `No Found ProductID ${product_id}`;\n// const theTicker$ = spotMarketTickers$.pipe(\n// map((x) => x[instId]),\n// shareReplay(1),\n// );\n// return [\n// of(theProduct),\n// theTicker$,\n// interestRateByCurrency$(theProduct.base_currency!),\n// interestRateByCurrency$(theProduct.quote_currency!),\n// ] as const;\n// }).pipe(\n// catchError(() => EMPTY),\n// mergeMap((x) =>\n// combineLatest(x).pipe(\n// map(\n// ([theProduct, ticker, interestRateForBase, interestRateForQuote]): ITick => ({\n// datasource_id: 'OKX',\n// product_id,\n// updated_at: Date.now(),\n// price: +ticker.last,\n// volume: +ticker.lastSz,\n// // 在下一个整点扣除利息 See 如何计算利息 https://www.okx.com/zh-hans/help/how-to-calculate-borrowing-interest\n// settlement_scheduled_at: new Date().setMinutes(0, 0, 0) + 3600_000,\n// interest_rate_for_long: -interestRateForQuote / 24,\n// interest_rate_for_short: -interestRateForBase / 24,\n// }),\n// ),\n// ),\n// ),\n// );\n// }\n// return EMPTY;\n// });\n\ndefer(async () => {\n const account_config = await firstValueFrom(accountConfig$);\n console.info(formatTime(Date.now()), 'AccountConfig', JSON.stringify(account_config));\n const { mainUid, uid } = account_config.data[0];\n const isMainAccount = mainUid === uid;\n\n const TRADING_ACCOUNT_ID = `okx/${uid}/trading`;\n const FUNDING_ACCOUNT_ID = `okx/${uid}/funding/USDT`;\n const EARNING_ACCOUNT_ID = `okx/${uid}/earning/USDT`;\n\n // BLOCK_CHAIN: only available for main account\n if (isMainAccount) {\n const depositAddressRes = await client.getAssetDepositAddress({ ccy: 'USDT' });\n console.info(formatTime(Date.now()), 'DepositAddress', JSON.stringify(depositAddressRes.data));\n const addresses = depositAddressRes.data.filter((v) => v.chain === 'USDT-TRC20' && v.to === '6');\n for (const address of addresses) {\n addAccountTransferAddress({\n terminal,\n account_id: FUNDING_ACCOUNT_ID,\n network_id: 'TRC20',\n currency: 'USDT',\n address: address.addr,\n onApply: {\n INIT: async (order) => {\n if (\n !order.current_amount ||\n order.current_amount < 3 // 最小提币额度\n ) {\n return { state: 'ERROR', message: 'Amount too small' };\n }\n const res = await firstValueFrom(resOfAssetCurrencies);\n const theRes = res.data?.find((x) => x.ccy === 'USDT' && x.chain === 'USDT-TRC20');\n const _fee = theRes?.minFee;\n if (!_fee) return { state: 'ERROR', message: 'Currency Info not found, cannot get fee' };\n const fee = +_fee;\n const amt = Math.floor(order.current_amount - fee);\n const transferResult = await client.postAssetWithdrawal({\n amt: `${amt}`,\n ccy: 'USDT',\n chain: 'USDT-TRC20',\n fee: `${fee}`,\n dest: '4', // 链上提币\n toAddr: order.current_rx_address!,\n });\n if (transferResult.code !== '0') {\n return { state: 'INIT', message: transferResult.msg };\n }\n const wdId = transferResult.data[0]?.wdId;\n return { state: 'AWAIT_TX_ID', context: wdId };\n },\n AWAIT_TX_ID: async (transferOrder) => {\n const wdId = transferOrder.current_tx_context;\n const withdrawalHistory = await client.getAssetWithdrawalHistory({ wdId });\n const txId = withdrawalHistory.data?.[0]?.txId;\n if (!txId) {\n return { state: 'AWAIT_TX_ID', context: wdId };\n }\n return { state: 'COMPLETE', transaction_id: txId };\n },\n },\n onEval: async (transferOrder) => {\n const checkResult = await client.getAssetDepositHistory({\n ccy: 'USDT',\n txId: transferOrder.current_transaction_id,\n type: '4',\n });\n\n if (checkResult.code !== '0') {\n return {\n state: 'INIT',\n };\n }\n\n if (checkResult.data[0].state !== '2') {\n return { state: 'PENDING' };\n }\n const received_amount = +checkResult.data[0].amt;\n return { state: 'COMPLETE', received_amount };\n },\n });\n }\n }\n\n // Funding-Trading\n {\n const FUNDING_TRADING_NETWORK_ID = `OKX/${uid}/Funding-Trading`;\n addAccountTransferAddress({\n terminal,\n account_id: FUNDING_ACCOUNT_ID,\n network_id: FUNDING_TRADING_NETWORK_ID,\n currency: 'USDT',\n address: 'funding',\n onApply: {\n INIT: async (order) => {\n const transferResult = await client.postAssetTransfer({\n type: '0',\n ccy: 'USDT',\n amt: `${order.current_amount}`,\n from: '6',\n to: '18',\n });\n if (transferResult.code !== '0') {\n return { state: 'INIT', message: transferResult.msg };\n }\n const transaction_id = transferResult.data[0].transId;\n return { state: 'COMPLETE', transaction_id };\n },\n },\n onEval: async (transferOrder) => {\n return { state: 'COMPLETE', received_amount: transferOrder.current_amount };\n },\n });\n addAccountTransferAddress({\n terminal,\n account_id: TRADING_ACCOUNT_ID,\n network_id: FUNDING_TRADING_NETWORK_ID,\n currency: 'USDT',\n address: 'trading',\n onApply: {\n INIT: async (order) => {\n const transferResult = await client.postAssetTransfer({\n type: '0',\n ccy: order.currency,\n amt: `${order.current_amount}`,\n from: '18',\n to: '6',\n });\n if (transferResult.code !== '0') {\n return { state: 'INIT', message: transferResult.msg };\n }\n const transaction_id = transferResult.data[0].transId;\n return { state: 'COMPLETE', transaction_id };\n },\n },\n onEval: async (transferOrder) => {\n return { state: 'COMPLETE', received_amount: transferOrder.current_amount };\n },\n });\n }\n // Funding-Earning\n {\n const FUNDING_EARNING_NETWORK_ID = `OKX/${uid}/Funding-Earning`;\n addAccountTransferAddress({\n terminal,\n account_id: FUNDING_ACCOUNT_ID,\n network_id: FUNDING_EARNING_NETWORK_ID,\n currency: 'USDT',\n address: 'funding',\n onApply: {\n INIT: async (order) => {\n const transferResult = await client.postFinanceSavingsPurchaseRedempt({\n ccy: 'USDT',\n amt: `${order.current_amount}`,\n side: 'purchase',\n rate: '0.01',\n });\n if (transferResult.code !== '0') {\n return { state: 'INIT', message: transferResult.msg };\n }\n return { state: 'COMPLETE', transaction_id: 'ok' };\n },\n },\n onEval: async (transferOrder) => {\n return { state: 'COMPLETE', received_amount: transferOrder.current_amount };\n },\n });\n addAccountTransferAddress({\n terminal,\n account_id: EARNING_ACCOUNT_ID,\n network_id: FUNDING_EARNING_NETWORK_ID,\n currency: 'USDT',\n address: 'earning',\n onApply: {\n INIT: async (order) => {\n const transferResult = await client.postFinanceSavingsPurchaseRedempt({\n ccy: 'USDT',\n amt: `${order.current_amount}`,\n side: 'redempt',\n rate: '0.01',\n });\n if (transferResult.code !== '0') {\n return { state: 'INIT', message: transferResult.msg };\n }\n return { state: 'COMPLETE', transaction_id: 'ok' };\n },\n },\n onEval: async (transferOrder) => {\n return { state: 'COMPLETE', received_amount: transferOrder.current_amount };\n },\n });\n }\n\n // SubAccount\n {\n const getSubAccountNetworkId = (subUid: string) => `OKX/${mainUid}/SubAccount/${subUid}`;\n if (isMainAccount) {\n const subAcctsRes = await client.getSubAccountList();\n for (const item of subAcctsRes.data || []) {\n addAccountTransferAddress({\n terminal,\n account_id: FUNDING_ACCOUNT_ID,\n network_id: getSubAccountNetworkId(item.uid),\n currency: 'USDT',\n address: 'main',\n onApply: {\n INIT: async (order) => {\n const transferResult = await client.postAssetTransfer({\n type: '1',\n ccy: 'USDT',\n amt: `${order.current_amount}`,\n from: '6',\n to: '6',\n subAcct: item.subAcct,\n });\n if (transferResult.code !== '0') {\n return { state: 'INIT', message: transferResult.msg };\n }\n const transaction_id = transferResult.data[0].transId;\n return { state: 'COMPLETE', transaction_id };\n },\n },\n onEval: async (order) => {\n // ISSUE: OKX API Issue: transId is incorrect or transId does not match with ‘ type’\n // const checkResult = await client.getAssetTransferState({ transId: order.current_transaction_id });\n // const received_amount = checkResult?.data?.[0]?.amt;\n // if (!received_amount) {\n // return { state: 'INIT', message: checkResult.msg };\n // }\n // return { state: 'COMPLETE', received_amount: +received_amount };\n\n return { state: 'COMPLETE', received_amount: order.current_amount };\n },\n });\n }\n }\n // SubAccount API\n else {\n addAccountTransferAddress({\n terminal,\n account_id: FUNDING_ACCOUNT_ID,\n network_id: getSubAccountNetworkId(uid),\n currency: 'USDT',\n address: 'sub',\n onApply: {\n INIT: async (order) => {\n const transferResult = await client.postAssetTransfer({\n type: '3',\n ccy: 'USDT',\n amt: `${order.current_amount}`,\n from: '6',\n to: '6',\n });\n if (transferResult.code !== '0') {\n return { state: 'INIT', message: transferResult.msg };\n }\n const transaction_id = transferResult.data[0].transId;\n return { state: 'COMPLETE', transaction_id };\n },\n },\n onEval: async (order) => {\n // ISSUE: OKX API Issue: transId is incorrect or transId does not match with ‘ type’\n // const checkResult = await client.getAssetTransferState({ transId: order.current_transaction_id });\n // const received_amount = checkResult?.data?.[0]?.amt;\n // if (!received_amount) {\n // return { state: 'INIT', message: checkResult.msg };\n // }\n // return { state: 'COMPLETE', received_amount: +received_amount };\n return { state: 'COMPLETE', received_amount: order.current_amount };\n },\n });\n }\n }\n}).subscribe();\n\ndefer(async () => {\n const tradingAccountId = await firstValueFrom(tradingAccountId$);\n terminal.server.provideService<IOrder, { order_id?: string }>(\n 'SubmitOrder',\n {\n required: ['account_id'],\n properties: {\n account_id: { const: tradingAccountId },\n },\n },\n async (msg) => {\n console.info(formatTime(Date.now()), 'SubmitOrder', JSON.stringify(msg));\n const order = msg.req;\n const [instType, instId] = decodePath(order.product_id);\n\n const mapOrderDirectionToSide = (direction?: string) => {\n switch (direction) {\n case 'OPEN_LONG':\n case 'CLOSE_SHORT':\n return 'buy';\n case 'OPEN_SHORT':\n case 'CLOSE_LONG':\n return 'sell';\n }\n throw new Error(`Unknown direction: ${direction}`);\n };\n const mapOrderDirectionToPosSide = (direction?: string) => {\n switch (direction) {\n case 'OPEN_LONG':\n case 'CLOSE_LONG':\n return 'long';\n case 'CLOSE_SHORT':\n case 'OPEN_SHORT':\n return 'short';\n }\n throw new Error(`Unknown direction: ${direction}`);\n };\n const mapOrderTypeToOrdType = (order_type?: string) => {\n switch (order_type) {\n case 'LIMIT':\n return 'limit';\n case 'MARKET':\n return 'market';\n case 'MAKER':\n return 'post_only';\n }\n throw new Error(`Unknown order type: ${order_type}`);\n };\n\n // 交易数量,表示要购买或者出售的数量。\n // 当币币/币币杠杆以限价买入和卖出时,指交易货币数量。\n // 当币币杠杆以市价买入时,指计价货币的数量。\n // 当币币杠杆以市价卖出时,指交易货币的数量。\n // 对于币币市价单,单位由 tgtCcy 决定\n // 当交割、永续、期权买入和卖出时,指合约张数。\n const mapOrderVolumeToSz = async (order: IOrder) => {\n if (instType === 'SWAP') {\n return order.volume;\n }\n if (instType === 'MARGIN') {\n if (order.order_type === 'LIMIT') {\n return order.volume;\n }\n if (order.order_type === 'MAKER') {\n return order.volume;\n }\n if (order.order_type === 'MARKET') {\n if (order.order_direction === 'OPEN_SHORT' || order.order_direction === 'CLOSE_LONG') {\n return order.volume;\n }\n //\n const price = await firstValueFrom(\n spotMarketTickers$.pipe(\n map((x) =>\n mapOrderDirectionToPosSide(order.order_direction) === 'long'\n ? +x[instId].askPx\n : +x[instId].bidPx,\n ),\n ),\n );\n if (!price) {\n throw new Error(`invalid tick: ${price}`);\n }\n console.info(formatTime(Date.now()), 'SubmitOrder', 'price', price);\n const theProduct = await firstValueFrom(\n productService.mapProductIdToProduct$.pipe(map((x) => x.get(order.product_id))),\n );\n if (!theProduct) {\n throw new Error(`Unknown product: ${order.position_id}`);\n }\n return roundToStep(order.volume * price, theProduct.volume_step!);\n }\n\n return 0;\n }\n\n if (instType === 'SPOT') {\n return order.volume;\n }\n\n throw new Error(`Unknown instType: ${instType}`);\n };\n\n const params = {\n instId,\n tdMode: instType === 'SPOT' ? 'cash' : 'cross',\n side: mapOrderDirectionToSide(order.order_direction),\n posSide:\n instType === 'MARGIN' || instType === 'SPOT'\n ? 'net'\n : mapOrderDirectionToPosSide(order.order_direction),\n ordType: mapOrderTypeToOrdType(order.order_type),\n sz: (await mapOrderVolumeToSz(order)).toString(),\n tgtCcy: instType === 'SPOT' && order.order_type === 'MARKET' ? 'base_ccy' : undefined,\n reduceOnly:\n instType === 'MARGIN' && ['CLOSE_LONG', 'CLOSE_SHORT'].includes(order.order_direction ?? '')\n ? 'true'\n : undefined,\n px:\n order.order_type === 'LIMIT' || order.order_type === 'MAKER' ? order.price!.toString() : undefined,\n ccy: instType === 'MARGIN' ? 'USDT' : undefined,\n };\n console.info(formatTime(Date.now()), 'SubmitOrder', 'params', JSON.stringify(params));\n const res = await client.postTradeOrder(params);\n if (res.code === '0' && res.data?.[0]?.ordId) {\n return {\n res: {\n code: 0,\n message: 'OK',\n data: {\n order_id: res.data[0].ordId,\n },\n },\n };\n }\n return { res: { code: +res.code, message: res.msg } };\n },\n );\n\n terminal.server.provideService<IOrder>(\n 'ModifyOrder',\n {\n required: ['account_id'],\n properties: {\n account_id: { const: tradingAccountId },\n },\n },\n async (msg) => {\n console.info(formatTime(Date.now()), 'ModifyOrder', JSON.stringify(msg));\n const order = msg.req;\n const [instType, instId] = decodePath(order.product_id);\n\n const params: any = {\n instId,\n ordId: order.order_id, // 使用现有订单ID\n };\n\n // 如果需要修改价格\n if (order.price !== undefined) {\n params.newPx = order.price.toString();\n }\n\n // 如果需要修改数量\n if (order.volume !== undefined) {\n // 处理数量修改,类似于 SubmitOrder 中的逻辑\n if (instType === 'SWAP') {\n params.newSz = order.volume.toString();\n } else if (instType === 'SPOT') {\n params.newSz = order.volume.toString();\n } else if (instType === 'MARGIN') {\n if (order.order_type === 'LIMIT') {\n params.newSz = order.volume.toString();\n }\n if (order.order_type === 'MAKER') {\n params.newSz = order.volume.toString();\n }\n if (order.order_type === 'MARKET') {\n // 对于市价单,可能需要根据当前价格计算新的数量\n const price = await firstValueFrom(\n spotMarketTickers$.pipe(\n map((x) =>\n order.order_direction === 'OPEN_LONG' || order.order_direction === 'CLOSE_SHORT'\n ? +x[instId].askPx\n : +x[instId].bidPx,\n ),\n ),\n );\n if (!price) {\n throw new Error(`invalid tick: ${price}`);\n }\n console.info(formatTime(Date.now()), 'ModifyOrder', 'price', price);\n const theProduct = await firstValueFrom(\n productService.mapProductIdToProduct$.pipe(map((x) => x.get(order.product_id))),\n );\n if (!theProduct) {\n throw new Error(`Unknown product: ${order.position_id}`);\n }\n params.newSz = roundToStep(order.volume * price, theProduct.volume_step!).toString();\n }\n } else {\n throw new Error(`Unknown instType: ${instType}`);\n }\n }\n\n console.info(formatTime(Date.now()), 'ModifyOrder', 'params', JSON.stringify(params));\n\n const res = await client.postTradeAmendOrder(params);\n if (res.code !== '0') {\n return {\n res: {\n code: +res.code,\n message: res.msg,\n },\n };\n }\n\n return { res: { code: 0, message: 'OK' } };\n },\n );\n\n terminal.server.provideService<IOrder>(\n 'CancelOrder',\n {\n required: ['account_id'],\n properties: {\n account_id: { const: tradingAccountId },\n },\n },\n (msg) =>\n defer(async () => {\n const order = msg.req;\n const [instType, instId] = decodePath(order.product_id);\n const res = await client.postTradeCancelOrder({\n instId,\n ordId: order.order_id,\n });\n if (res.code !== '0') {\n return { res: { code: +res.code, message: res.msg } };\n }\n return { res: { code: 0, message: 'OK' } };\n }),\n );\n}).subscribe();\n"]}