@yuants/vendor-binance 0.4.49 → 0.5.0
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.
- package/dist/api.js +249 -0
- package/dist/api.js.map +1 -0
- package/dist/cli.js +3 -0
- package/dist/cli.js.map +1 -0
- package/dist/extension.js +90 -0
- package/dist/extension.js.map +1 -0
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -0
- package/dist/interest_rate.js +54 -0
- package/dist/interest_rate.js.map +1 -0
- package/dist/legacy_index.js +327 -0
- package/dist/legacy_index.js.map +1 -0
- package/dist/product.js +40 -0
- package/dist/product.js.map +1 -0
- package/dist/terminal.js +7 -0
- package/dist/terminal.js.map +1 -0
- package/dist/vendor-binance.d.ts +1 -0
- package/lib/api.d.ts +555 -0
- package/lib/api.d.ts.map +1 -0
- package/lib/api.js +257 -0
- package/lib/api.js.map +1 -0
- package/lib/cli.d.ts +3 -0
- package/lib/cli.d.ts.map +1 -0
- package/lib/cli.js +5 -0
- package/lib/cli.js.map +1 -0
- package/lib/extension.d.ts +4 -0
- package/lib/extension.d.ts.map +1 -0
- package/lib/extension.js +92 -0
- package/lib/extension.js.map +1 -0
- package/lib/index.d.ts +4 -0
- package/lib/index.d.ts.map +1 -0
- package/lib/index.js +6 -0
- package/lib/index.js.map +1 -0
- package/lib/interest_rate.d.ts +2 -0
- package/lib/interest_rate.d.ts.map +1 -0
- package/lib/interest_rate.js +56 -0
- package/lib/interest_rate.js.map +1 -0
- package/lib/legacy_index.d.ts +2 -0
- package/lib/legacy_index.d.ts.map +1 -0
- package/lib/legacy_index.js +329 -0
- package/lib/legacy_index.js.map +1 -0
- package/lib/product.d.ts +2 -0
- package/lib/product.d.ts.map +1 -0
- package/lib/product.js +42 -0
- package/lib/product.js.map +1 -0
- package/lib/terminal.d.ts +3 -0
- package/lib/terminal.d.ts.map +1 -0
- package/lib/terminal.js +10 -0
- package/lib/terminal.js.map +1 -0
- package/package.json +5 -2
- package/temp/image-tag +1 -0
- package/temp/package-deps.json +33 -0
- package/temp/vendor-binance.api.json +177 -0
- package/temp/vendor-binance.api.md +9 -0
|
@@ -0,0 +1,327 @@
|
|
|
1
|
+
import { addAccountMarket, publishAccountInfo, } from '@yuants/data-account';
|
|
2
|
+
import { addAccountTransferAddress } from '@yuants/transfer';
|
|
3
|
+
import { decodePath, encodePath, formatTime } from '@yuants/utils';
|
|
4
|
+
import { defer, from, map, mergeMap, repeat, retry, shareReplay, tap, toArray } from 'rxjs';
|
|
5
|
+
import { client, isError } from './api';
|
|
6
|
+
import { terminal } from './terminal';
|
|
7
|
+
const memoizeMap = (fn) => {
|
|
8
|
+
const cache = {};
|
|
9
|
+
return ((...params) => { var _a; var _b; return ((_a = cache[_b = encodePath(params)]) !== null && _a !== void 0 ? _a : (cache[_b] = fn(...params))); });
|
|
10
|
+
};
|
|
11
|
+
const mapSymbolToFuturePremiumIndex$ = defer(() => client.getFuturePremiumIndex({})).pipe(repeat({ delay: 1000 }), retry({ delay: 30000 }), mergeMap((x) => from(x).pipe(map((v) => [v.symbol, v]), toArray(), map((v) => new Map(v)))), shareReplay(1));
|
|
12
|
+
const mapSymbolToFutureBookTicker$ = defer(() => client.getFutureBookTicker({})).pipe(repeat({ delay: 1000 }), retry({ delay: 30000 }), mergeMap((x) => from(x).pipe(map((v) => [v.symbol, v]), toArray(), map((v) => new Map(v)))), shareReplay(1));
|
|
13
|
+
const _mapSymbolToOpenInterest = {};
|
|
14
|
+
const getOpenInterest = async (symbol) => {
|
|
15
|
+
const expired_at = Date.now() - 600000; // 10min expired
|
|
16
|
+
const cache = _mapSymbolToOpenInterest[symbol];
|
|
17
|
+
if (cache) {
|
|
18
|
+
if (cache.updated_at > expired_at) {
|
|
19
|
+
return cache.value;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
const data = await client.getFutureOpenInterest({ symbol });
|
|
23
|
+
const value = +data.openInterest || 0;
|
|
24
|
+
_mapSymbolToOpenInterest[symbol] = { value, updated_at: Date.now() };
|
|
25
|
+
return value;
|
|
26
|
+
};
|
|
27
|
+
// provideTicks(terminal, 'binance', (product_id) => {
|
|
28
|
+
// const [instType, symbol] = decodePath(product_id);
|
|
29
|
+
// if (instType === 'usdt-future') {
|
|
30
|
+
// return combineLatest([mapSymbolToFuturePremiumIndex$, mapSymbolToFutureBookTicker$]).pipe(
|
|
31
|
+
// combineLatestWith(defer(() => getOpenInterest(symbol))),
|
|
32
|
+
// map(([[mapSymbolToFuturePremiumIndex, mapSymbolToFutureBookTicker], openInterestVolume]): ITick => {
|
|
33
|
+
// const premiumIndex = mapSymbolToFuturePremiumIndex.get(symbol);
|
|
34
|
+
// const bookTicker = mapSymbolToFutureBookTicker.get(symbol);
|
|
35
|
+
// if (!premiumIndex) {
|
|
36
|
+
// throw new Error(`Premium Index Not Found: ${symbol}`);
|
|
37
|
+
// }
|
|
38
|
+
// if (!bookTicker) {
|
|
39
|
+
// throw new Error(`Book Ticker Not Found: ${symbol}`);
|
|
40
|
+
// }
|
|
41
|
+
// return {
|
|
42
|
+
// datasource_id: 'binance',
|
|
43
|
+
// product_id,
|
|
44
|
+
// updated_at: Date.now(),
|
|
45
|
+
// price: +premiumIndex.markPrice,
|
|
46
|
+
// ask: +bookTicker.askPrice,
|
|
47
|
+
// bid: +bookTicker.bidPrice,
|
|
48
|
+
// interest_rate_for_long: -+premiumIndex.lastFundingRate,
|
|
49
|
+
// interest_rate_for_short: +premiumIndex.lastFundingRate,
|
|
50
|
+
// settlement_scheduled_at: premiumIndex.nextFundingTime,
|
|
51
|
+
// open_interest: openInterestVolume,
|
|
52
|
+
// };
|
|
53
|
+
// }),
|
|
54
|
+
// );
|
|
55
|
+
// }
|
|
56
|
+
// return EMPTY;
|
|
57
|
+
// });
|
|
58
|
+
(async () => {
|
|
59
|
+
const spotAccountInfo = await client.getSpotAccountInfo();
|
|
60
|
+
if (isError(spotAccountInfo)) {
|
|
61
|
+
throw new Error(spotAccountInfo.msg);
|
|
62
|
+
}
|
|
63
|
+
const uid = spotAccountInfo.uid;
|
|
64
|
+
const SPOT_ACCOUNT_ID = `binance/${uid}/spot/usdt`;
|
|
65
|
+
const UNIFIED_ACCOUNT_ID = `binance/${uid}/unified/usdt`;
|
|
66
|
+
{
|
|
67
|
+
// unified accountInfo
|
|
68
|
+
const unifiedAccountInfo$ = defer(async () => {
|
|
69
|
+
const accountResult = await client.getUnifiedAccountBalance();
|
|
70
|
+
if (isError(accountResult)) {
|
|
71
|
+
throw new Error(accountResult.msg);
|
|
72
|
+
}
|
|
73
|
+
const usdtAssets = accountResult.find((v) => v.asset === 'USDT');
|
|
74
|
+
if (!usdtAssets) {
|
|
75
|
+
throw new Error('USDT not found');
|
|
76
|
+
}
|
|
77
|
+
const umAccountResult = await client.getUnifiedUmAccount();
|
|
78
|
+
if (isError(umAccountResult)) {
|
|
79
|
+
throw new Error(umAccountResult.msg);
|
|
80
|
+
}
|
|
81
|
+
const usdtUmAssets = umAccountResult.assets.find((v) => v.asset === 'USDT');
|
|
82
|
+
if (!usdtUmAssets) {
|
|
83
|
+
throw new Error('um USDT not found');
|
|
84
|
+
}
|
|
85
|
+
const money = {
|
|
86
|
+
currency: 'USDT',
|
|
87
|
+
leverage: 1,
|
|
88
|
+
equity: +usdtAssets.totalWalletBalance + +usdtAssets.umUnrealizedPNL,
|
|
89
|
+
balance: +usdtAssets.totalWalletBalance,
|
|
90
|
+
profit: +usdtAssets.umUnrealizedPNL,
|
|
91
|
+
used: +usdtUmAssets.initialMargin,
|
|
92
|
+
free: +usdtAssets.totalWalletBalance + +usdtAssets.umUnrealizedPNL - +usdtUmAssets.initialMargin,
|
|
93
|
+
};
|
|
94
|
+
const positions = umAccountResult.positions
|
|
95
|
+
.filter((v) => +v.positionAmt !== 0)
|
|
96
|
+
.map((v) => {
|
|
97
|
+
return {
|
|
98
|
+
position_id: `${v.symbol}/${v.positionSide}`,
|
|
99
|
+
datasource_id: 'BINANCE',
|
|
100
|
+
product_id: encodePath('usdt-future', v.symbol),
|
|
101
|
+
direction: v.positionSide,
|
|
102
|
+
volume: +v.positionAmt,
|
|
103
|
+
free_volume: +v.positionAmt,
|
|
104
|
+
position_price: +v.entryPrice,
|
|
105
|
+
closable_price: +v.entryPrice + +v.unrealizedProfit / +v.positionAmt,
|
|
106
|
+
floating_profit: +v.unrealizedProfit,
|
|
107
|
+
valuation: +v.positionAmt * (+v.entryPrice + +v.unrealizedProfit / +v.positionAmt),
|
|
108
|
+
};
|
|
109
|
+
});
|
|
110
|
+
return {
|
|
111
|
+
updated_at: Date.now(),
|
|
112
|
+
account_id: UNIFIED_ACCOUNT_ID,
|
|
113
|
+
money,
|
|
114
|
+
currencies: [money],
|
|
115
|
+
positions,
|
|
116
|
+
orders: [],
|
|
117
|
+
};
|
|
118
|
+
}).pipe(tap({
|
|
119
|
+
error: (err) => {
|
|
120
|
+
console.error(formatTime(Date.now()), 'unifiedAccountInfo$', err);
|
|
121
|
+
},
|
|
122
|
+
}), retry({ delay: 5000 }), repeat({ delay: 1000 }));
|
|
123
|
+
publishAccountInfo(terminal, UNIFIED_ACCOUNT_ID, unifiedAccountInfo$);
|
|
124
|
+
addAccountMarket(terminal, { account_id: UNIFIED_ACCOUNT_ID, market_id: 'BINANCE/UNIFIED' });
|
|
125
|
+
}
|
|
126
|
+
{
|
|
127
|
+
// spot account info
|
|
128
|
+
const spotAccountInfo$ = defer(async () => {
|
|
129
|
+
const spotAccountResult = await client.getSpotAccountInfo({ omitZeroBalances: true });
|
|
130
|
+
if (isError(spotAccountResult)) {
|
|
131
|
+
throw new Error(spotAccountResult.msg);
|
|
132
|
+
}
|
|
133
|
+
const usdtAssets = spotAccountResult.balances.find((v) => v.asset === 'USDT');
|
|
134
|
+
const money = {
|
|
135
|
+
currency: 'USDT',
|
|
136
|
+
leverage: 1,
|
|
137
|
+
equity: +((usdtAssets === null || usdtAssets === void 0 ? void 0 : usdtAssets.free) || 0),
|
|
138
|
+
balance: +((usdtAssets === null || usdtAssets === void 0 ? void 0 : usdtAssets.free) || 0),
|
|
139
|
+
profit: 0,
|
|
140
|
+
used: 0,
|
|
141
|
+
free: +((usdtAssets === null || usdtAssets === void 0 ? void 0 : usdtAssets.free) || 0),
|
|
142
|
+
};
|
|
143
|
+
return {
|
|
144
|
+
updated_at: Date.now(),
|
|
145
|
+
account_id: SPOT_ACCOUNT_ID,
|
|
146
|
+
money,
|
|
147
|
+
currencies: [money],
|
|
148
|
+
positions: [],
|
|
149
|
+
orders: [],
|
|
150
|
+
};
|
|
151
|
+
}).pipe(tap({
|
|
152
|
+
error: (err) => {
|
|
153
|
+
console.error(formatTime(Date.now()), 'unifiedAccountInfo$', err);
|
|
154
|
+
},
|
|
155
|
+
}), retry({ delay: 5000 }), repeat({ delay: 1000 }));
|
|
156
|
+
publishAccountInfo(terminal, SPOT_ACCOUNT_ID, spotAccountInfo$);
|
|
157
|
+
addAccountMarket(terminal, { account_id: SPOT_ACCOUNT_ID, market_id: 'BINANCE/SPOT' });
|
|
158
|
+
}
|
|
159
|
+
// transfer
|
|
160
|
+
{
|
|
161
|
+
// spot -> unified
|
|
162
|
+
const SPOT_UNIFIED_NETWORK_ID = `binance/${uid}/spot/unified`;
|
|
163
|
+
addAccountTransferAddress({
|
|
164
|
+
terminal,
|
|
165
|
+
account_id: SPOT_ACCOUNT_ID,
|
|
166
|
+
network_id: SPOT_UNIFIED_NETWORK_ID,
|
|
167
|
+
currency: 'USDT',
|
|
168
|
+
address: `unified`,
|
|
169
|
+
onApply: {
|
|
170
|
+
INIT: async (order) => {
|
|
171
|
+
const transferResult = await client.postAssetTransfer({
|
|
172
|
+
type: 'MAIN_PORTFOLIO_MARGIN',
|
|
173
|
+
asset: 'USDT',
|
|
174
|
+
amount: order.current_amount,
|
|
175
|
+
});
|
|
176
|
+
if (isError(transferResult)) {
|
|
177
|
+
return { state: 'INIT', message: transferResult.msg };
|
|
178
|
+
}
|
|
179
|
+
return { state: 'COMPLETE', transaction_id: '' + transferResult.tranId };
|
|
180
|
+
},
|
|
181
|
+
},
|
|
182
|
+
onEval: async (order) => {
|
|
183
|
+
return { state: 'COMPLETE', received_amount: order.current_amount };
|
|
184
|
+
},
|
|
185
|
+
});
|
|
186
|
+
// unified -> spot
|
|
187
|
+
addAccountTransferAddress({
|
|
188
|
+
terminal,
|
|
189
|
+
account_id: UNIFIED_ACCOUNT_ID,
|
|
190
|
+
network_id: SPOT_UNIFIED_NETWORK_ID,
|
|
191
|
+
currency: 'USDT',
|
|
192
|
+
address: `spot`,
|
|
193
|
+
onApply: {
|
|
194
|
+
INIT: async (order) => {
|
|
195
|
+
const transferResult = await client.postAssetTransfer({
|
|
196
|
+
type: 'PORTFOLIO_MARGIN_MAIN',
|
|
197
|
+
asset: 'USDT',
|
|
198
|
+
amount: order.current_amount,
|
|
199
|
+
});
|
|
200
|
+
if (isError(transferResult)) {
|
|
201
|
+
return { state: 'INIT', message: transferResult.msg };
|
|
202
|
+
}
|
|
203
|
+
return { state: 'COMPLETE', transaction_id: '' + transferResult.tranId };
|
|
204
|
+
},
|
|
205
|
+
},
|
|
206
|
+
onEval: async (order) => {
|
|
207
|
+
return { state: 'COMPLETE', received_amount: order.current_amount };
|
|
208
|
+
},
|
|
209
|
+
});
|
|
210
|
+
const subAccountsResult = await client.getSubAccountList();
|
|
211
|
+
const isMain = !isError(subAccountsResult);
|
|
212
|
+
// main -> sub
|
|
213
|
+
// TODO...
|
|
214
|
+
// blockchain
|
|
215
|
+
if (isMain) {
|
|
216
|
+
const depositAddressResult = await client.getDepositAddress({ coin: 'USDT', network: 'TRX' });
|
|
217
|
+
addAccountTransferAddress({
|
|
218
|
+
terminal,
|
|
219
|
+
account_id: SPOT_ACCOUNT_ID,
|
|
220
|
+
network_id: 'TRC20',
|
|
221
|
+
currency: 'USDT',
|
|
222
|
+
address: depositAddressResult.address,
|
|
223
|
+
onApply: {
|
|
224
|
+
INIT: async (order) => {
|
|
225
|
+
const transferResult = await client.postWithdraw({
|
|
226
|
+
coin: 'USDT',
|
|
227
|
+
network: 'TRX',
|
|
228
|
+
address: order.current_rx_address,
|
|
229
|
+
amount: order.current_amount,
|
|
230
|
+
});
|
|
231
|
+
if (isError(transferResult)) {
|
|
232
|
+
return { state: 'ERROR', message: transferResult.msg };
|
|
233
|
+
}
|
|
234
|
+
const wdId = transferResult.id;
|
|
235
|
+
return { state: 'PENDING', context: wdId };
|
|
236
|
+
},
|
|
237
|
+
PENDING: async (order) => {
|
|
238
|
+
const wdId = order.current_tx_context;
|
|
239
|
+
const withdrawResult = await client.getWithdrawHistory({ coin: 'USDT' });
|
|
240
|
+
const record = withdrawResult === null || withdrawResult === void 0 ? void 0 : withdrawResult.find((v) => v.id === wdId);
|
|
241
|
+
const txId = record === null || record === void 0 ? void 0 : record.txId;
|
|
242
|
+
if (!txId) {
|
|
243
|
+
return { state: 'PENDING', context: wdId };
|
|
244
|
+
}
|
|
245
|
+
return { state: 'COMPLETE', transaction_id: txId };
|
|
246
|
+
},
|
|
247
|
+
},
|
|
248
|
+
onEval: async (order) => {
|
|
249
|
+
var _a;
|
|
250
|
+
const checkResult = await client.getDepositHistory({
|
|
251
|
+
coin: 'USDT',
|
|
252
|
+
txId: order.current_transaction_id,
|
|
253
|
+
});
|
|
254
|
+
if (((_a = checkResult === null || checkResult === void 0 ? void 0 : checkResult[0]) === null || _a === void 0 ? void 0 : _a.status) !== 1) {
|
|
255
|
+
return { state: 'PENDING' };
|
|
256
|
+
}
|
|
257
|
+
const received_amount = +checkResult[0].amount;
|
|
258
|
+
return { state: 'COMPLETE', received_amount };
|
|
259
|
+
},
|
|
260
|
+
});
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
// order related
|
|
264
|
+
{
|
|
265
|
+
terminal.provideService('SubmitOrder', {
|
|
266
|
+
required: ['account_id'],
|
|
267
|
+
properties: {
|
|
268
|
+
account_id: { const: UNIFIED_ACCOUNT_ID },
|
|
269
|
+
},
|
|
270
|
+
}, async (msg) => {
|
|
271
|
+
console.info(formatTime(Date.now()), 'SubmitOrder', msg.req);
|
|
272
|
+
const order = msg.req;
|
|
273
|
+
const [instType, symbol] = decodePath(order.product_id);
|
|
274
|
+
if (instType === 'usdt-future') {
|
|
275
|
+
const mapOrderDirectionToSide = (direction) => {
|
|
276
|
+
switch (direction) {
|
|
277
|
+
case 'OPEN_LONG':
|
|
278
|
+
case 'CLOSE_SHORT':
|
|
279
|
+
return 'BUY';
|
|
280
|
+
case 'OPEN_SHORT':
|
|
281
|
+
case 'CLOSE_LONG':
|
|
282
|
+
return 'SELL';
|
|
283
|
+
}
|
|
284
|
+
throw new Error(`Unknown direction: ${direction}`);
|
|
285
|
+
};
|
|
286
|
+
const mapOrderDirectionToPosSide = (direction) => {
|
|
287
|
+
switch (direction) {
|
|
288
|
+
case 'OPEN_LONG':
|
|
289
|
+
case 'CLOSE_LONG':
|
|
290
|
+
return 'LONG';
|
|
291
|
+
case 'CLOSE_SHORT':
|
|
292
|
+
case 'OPEN_SHORT':
|
|
293
|
+
return 'SHORT';
|
|
294
|
+
}
|
|
295
|
+
throw new Error(`Unknown direction: ${direction}`);
|
|
296
|
+
};
|
|
297
|
+
const mapOrderTypeToOrdType = (order_type) => {
|
|
298
|
+
switch (order_type) {
|
|
299
|
+
case 'LIMIT':
|
|
300
|
+
return 'LIMIT';
|
|
301
|
+
case 'MARKET':
|
|
302
|
+
return 'MARKET';
|
|
303
|
+
}
|
|
304
|
+
throw new Error(`Unknown order type: ${order_type}`);
|
|
305
|
+
};
|
|
306
|
+
// return
|
|
307
|
+
const params = {
|
|
308
|
+
symbol,
|
|
309
|
+
side: mapOrderDirectionToSide(order.order_direction),
|
|
310
|
+
positionSide: mapOrderDirectionToPosSide(order.order_direction),
|
|
311
|
+
type: mapOrderTypeToOrdType(order.order_type),
|
|
312
|
+
timeInForce: order.order_type === 'LIMIT' ? 'GTC' : undefined,
|
|
313
|
+
quantity: order.volume,
|
|
314
|
+
price: order.price,
|
|
315
|
+
};
|
|
316
|
+
console.info(formatTime(Date.now()), 'SubmitOrder', 'params', JSON.stringify(params));
|
|
317
|
+
const orderResult = await client.postUmOrder(params);
|
|
318
|
+
if (isError(orderResult)) {
|
|
319
|
+
return { res: { code: orderResult.code, message: orderResult.msg } };
|
|
320
|
+
}
|
|
321
|
+
return { res: { code: 0, message: 'OK', order_id: orderResult.orderId } };
|
|
322
|
+
}
|
|
323
|
+
return { res: { code: 400, message: `unsupported type: ${instType}` } };
|
|
324
|
+
});
|
|
325
|
+
}
|
|
326
|
+
})();
|
|
327
|
+
//# sourceMappingURL=legacy_index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"legacy_index.js","sourceRoot":"","sources":["../src/legacy_index.ts"],"names":[],"mappings":"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","sourcesContent":["import {\n addAccountMarket,\n IAccountInfo,\n IAccountMoney,\n IPosition,\n publishAccountInfo,\n} from '@yuants/data-account';\nimport { addAccountTransferAddress } from '@yuants/transfer';\nimport { decodePath, encodePath, formatTime } from '@yuants/utils';\nimport { defer, from, map, mergeMap, repeat, retry, shareReplay, tap, toArray } from 'rxjs';\nimport { client, isError } from './api';\nimport { terminal } from './terminal';\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 mapSymbolToFuturePremiumIndex$ = defer(() => client.getFuturePremiumIndex({})).pipe(\n repeat({ delay: 1_000 }),\n retry({ delay: 30_000 }),\n mergeMap((x) =>\n from(x).pipe(\n map((v) => [v.symbol, v] as const),\n toArray(),\n map((v) => new Map(v)),\n ),\n ),\n shareReplay(1),\n);\n\nconst mapSymbolToFutureBookTicker$ = defer(() => client.getFutureBookTicker({})).pipe(\n repeat({ delay: 1_000 }),\n retry({ delay: 30_000 }),\n mergeMap((x) =>\n from(x).pipe(\n map((v) => [v.symbol, v] as const),\n toArray(),\n map((v) => new Map(v)),\n ),\n ),\n shareReplay(1),\n);\n\nconst _mapSymbolToOpenInterest: Record<string, { value: number; updated_at: number }> = {};\nconst getOpenInterest = async (symbol: string) => {\n const expired_at = Date.now() - 600_000; // 10min expired\n const cache = _mapSymbolToOpenInterest[symbol];\n if (cache) {\n if (cache.updated_at > expired_at) {\n return cache.value;\n }\n }\n const data = await client.getFutureOpenInterest({ symbol });\n const value = +data.openInterest || 0;\n _mapSymbolToOpenInterest[symbol] = { value, updated_at: Date.now() };\n return value;\n};\n\n// provideTicks(terminal, 'binance', (product_id) => {\n// const [instType, symbol] = decodePath(product_id);\n// if (instType === 'usdt-future') {\n// return combineLatest([mapSymbolToFuturePremiumIndex$, mapSymbolToFutureBookTicker$]).pipe(\n// combineLatestWith(defer(() => getOpenInterest(symbol))),\n// map(([[mapSymbolToFuturePremiumIndex, mapSymbolToFutureBookTicker], openInterestVolume]): ITick => {\n// const premiumIndex = mapSymbolToFuturePremiumIndex.get(symbol);\n// const bookTicker = mapSymbolToFutureBookTicker.get(symbol);\n// if (!premiumIndex) {\n// throw new Error(`Premium Index Not Found: ${symbol}`);\n// }\n// if (!bookTicker) {\n// throw new Error(`Book Ticker Not Found: ${symbol}`);\n// }\n// return {\n// datasource_id: 'binance',\n// product_id,\n// updated_at: Date.now(),\n// price: +premiumIndex.markPrice,\n// ask: +bookTicker.askPrice,\n// bid: +bookTicker.bidPrice,\n// interest_rate_for_long: -+premiumIndex.lastFundingRate,\n// interest_rate_for_short: +premiumIndex.lastFundingRate,\n// settlement_scheduled_at: premiumIndex.nextFundingTime,\n// open_interest: openInterestVolume,\n// };\n// }),\n// );\n// }\n// return EMPTY;\n// });\n\n(async () => {\n const spotAccountInfo = await client.getSpotAccountInfo();\n if (isError(spotAccountInfo)) {\n throw new Error(spotAccountInfo.msg);\n }\n const uid = spotAccountInfo.uid;\n\n const SPOT_ACCOUNT_ID = `binance/${uid}/spot/usdt`;\n const UNIFIED_ACCOUNT_ID = `binance/${uid}/unified/usdt`;\n\n {\n // unified accountInfo\n const unifiedAccountInfo$ = defer(async (): Promise<IAccountInfo> => {\n const accountResult = await client.getUnifiedAccountBalance();\n if (isError(accountResult)) {\n throw new Error(accountResult.msg);\n }\n const usdtAssets = accountResult.find((v) => v.asset === 'USDT');\n if (!usdtAssets) {\n throw new Error('USDT not found');\n }\n const umAccountResult = await client.getUnifiedUmAccount();\n if (isError(umAccountResult)) {\n throw new Error(umAccountResult.msg);\n }\n const usdtUmAssets = umAccountResult.assets.find((v) => v.asset === 'USDT');\n if (!usdtUmAssets) {\n throw new Error('um USDT not found');\n }\n const money: IAccountMoney = {\n currency: 'USDT',\n leverage: 1,\n equity: +usdtAssets.totalWalletBalance + +usdtAssets.umUnrealizedPNL,\n balance: +usdtAssets.totalWalletBalance,\n profit: +usdtAssets.umUnrealizedPNL,\n used: +usdtUmAssets.initialMargin,\n free: +usdtAssets.totalWalletBalance + +usdtAssets.umUnrealizedPNL - +usdtUmAssets.initialMargin,\n };\n\n const positions = umAccountResult.positions\n .filter((v) => +v.positionAmt !== 0)\n .map((v): IPosition => {\n return {\n position_id: `${v.symbol}/${v.positionSide}`,\n datasource_id: 'BINANCE',\n product_id: encodePath('usdt-future', v.symbol),\n direction: v.positionSide,\n volume: +v.positionAmt,\n free_volume: +v.positionAmt,\n position_price: +v.entryPrice,\n closable_price: +v.entryPrice + +v.unrealizedProfit / +v.positionAmt,\n floating_profit: +v.unrealizedProfit,\n valuation: +v.positionAmt * (+v.entryPrice + +v.unrealizedProfit / +v.positionAmt),\n };\n });\n\n return {\n updated_at: Date.now(),\n account_id: UNIFIED_ACCOUNT_ID,\n money,\n currencies: [money],\n positions,\n orders: [],\n };\n }).pipe(\n tap({\n error: (err) => {\n console.error(formatTime(Date.now()), 'unifiedAccountInfo$', err);\n },\n }),\n retry({ delay: 5000 }),\n repeat({ delay: 1000 }),\n );\n publishAccountInfo(terminal, UNIFIED_ACCOUNT_ID, unifiedAccountInfo$);\n addAccountMarket(terminal, { account_id: UNIFIED_ACCOUNT_ID, market_id: 'BINANCE/UNIFIED' });\n }\n\n {\n // spot account info\n const spotAccountInfo$ = defer(async (): Promise<IAccountInfo> => {\n const spotAccountResult = await client.getSpotAccountInfo({ omitZeroBalances: true });\n if (isError(spotAccountResult)) {\n throw new Error(spotAccountResult.msg);\n }\n const usdtAssets = spotAccountResult.balances.find((v) => v.asset === 'USDT');\n const money: IAccountMoney = {\n currency: 'USDT',\n leverage: 1,\n equity: +(usdtAssets?.free || 0),\n balance: +(usdtAssets?.free || 0),\n profit: 0,\n used: 0,\n free: +(usdtAssets?.free || 0),\n };\n\n return {\n updated_at: Date.now(),\n account_id: SPOT_ACCOUNT_ID,\n money,\n currencies: [money],\n positions: [],\n orders: [],\n };\n }).pipe(\n tap({\n error: (err) => {\n console.error(formatTime(Date.now()), 'unifiedAccountInfo$', err);\n },\n }),\n retry({ delay: 5000 }),\n repeat({ delay: 1000 }),\n );\n\n publishAccountInfo(terminal, SPOT_ACCOUNT_ID, spotAccountInfo$);\n addAccountMarket(terminal, { account_id: SPOT_ACCOUNT_ID, market_id: 'BINANCE/SPOT' });\n }\n\n // transfer\n {\n // spot -> unified\n const SPOT_UNIFIED_NETWORK_ID = `binance/${uid}/spot/unified`;\n addAccountTransferAddress({\n terminal,\n account_id: SPOT_ACCOUNT_ID,\n network_id: SPOT_UNIFIED_NETWORK_ID,\n currency: 'USDT',\n address: `unified`,\n onApply: {\n INIT: async (order) => {\n const transferResult = await client.postAssetTransfer({\n type: 'MAIN_PORTFOLIO_MARGIN',\n asset: 'USDT',\n amount: order.current_amount!,\n });\n if (isError(transferResult)) {\n return { state: 'INIT', message: transferResult.msg };\n }\n return { state: 'COMPLETE', transaction_id: '' + transferResult.tranId };\n },\n },\n onEval: async (order) => {\n return { state: 'COMPLETE', received_amount: order.current_amount };\n },\n });\n\n // unified -> spot\n addAccountTransferAddress({\n terminal,\n account_id: UNIFIED_ACCOUNT_ID,\n network_id: SPOT_UNIFIED_NETWORK_ID,\n currency: 'USDT',\n address: `spot`,\n onApply: {\n INIT: async (order) => {\n const transferResult = await client.postAssetTransfer({\n type: 'PORTFOLIO_MARGIN_MAIN',\n asset: 'USDT',\n amount: order.current_amount!,\n });\n if (isError(transferResult)) {\n return { state: 'INIT', message: transferResult.msg };\n }\n return { state: 'COMPLETE', transaction_id: '' + transferResult.tranId };\n },\n },\n onEval: async (order) => {\n return { state: 'COMPLETE', received_amount: order.current_amount };\n },\n });\n\n const subAccountsResult = await client.getSubAccountList();\n const isMain = !isError(subAccountsResult);\n // main -> sub\n // TODO...\n\n // blockchain\n if (isMain) {\n const depositAddressResult = await client.getDepositAddress({ coin: 'USDT', network: 'TRX' });\n addAccountTransferAddress({\n terminal,\n account_id: SPOT_ACCOUNT_ID,\n network_id: 'TRC20',\n currency: 'USDT',\n address: depositAddressResult.address,\n onApply: {\n INIT: async (order) => {\n const transferResult = await client.postWithdraw({\n coin: 'USDT',\n network: 'TRX',\n address: order.current_rx_address!,\n amount: order.current_amount!,\n });\n if (isError(transferResult)) {\n return { state: 'ERROR', message: transferResult.msg };\n }\n const wdId = transferResult.id;\n return { state: 'PENDING', context: wdId };\n },\n PENDING: async (order) => {\n const wdId = order.current_tx_context;\n const withdrawResult = await client.getWithdrawHistory({ coin: 'USDT' });\n const record = withdrawResult?.find((v) => v.id === wdId);\n const txId = record?.txId;\n if (!txId) {\n return { state: 'PENDING', context: wdId };\n }\n return { state: 'COMPLETE', transaction_id: txId };\n },\n },\n onEval: async (order) => {\n const checkResult = await client.getDepositHistory({\n coin: 'USDT',\n txId: order.current_transaction_id,\n });\n if (checkResult?.[0]?.status !== 1) {\n return { state: 'PENDING' };\n }\n const received_amount = +checkResult[0].amount;\n return { state: 'COMPLETE', received_amount };\n },\n });\n }\n }\n\n // order related\n {\n terminal.provideService(\n 'SubmitOrder',\n {\n required: ['account_id'],\n properties: {\n account_id: { const: UNIFIED_ACCOUNT_ID },\n },\n },\n async (msg) => {\n console.info(formatTime(Date.now()), 'SubmitOrder', msg.req);\n const order = msg.req;\n const [instType, symbol] = decodePath(order.product_id);\n if (instType === 'usdt-future') {\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 }\n throw new Error(`Unknown order type: ${order_type}`);\n };\n // return\n const params = {\n symbol,\n side: mapOrderDirectionToSide(order.order_direction),\n positionSide: mapOrderDirectionToPosSide(order.order_direction),\n type: mapOrderTypeToOrdType(order.order_type),\n timeInForce: order.order_type === 'LIMIT' ? 'GTC' : undefined,\n quantity: order.volume,\n price: order.price,\n };\n\n console.info(formatTime(Date.now()), 'SubmitOrder', 'params', JSON.stringify(params));\n const orderResult = await client.postUmOrder(params);\n if (isError(orderResult)) {\n return { res: { code: orderResult.code, message: orderResult.msg } };\n }\n return { res: { code: 0, message: 'OK', order_id: orderResult.orderId } };\n }\n return { res: { code: 400, message: `unsupported type: ${instType}` } };\n },\n );\n }\n})();\n"]}
|
package/dist/product.js
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { encodePath } from '@yuants/utils';
|
|
2
|
+
import { createSQLWriter } from '@yuants/sql';
|
|
3
|
+
import { Subject, defer, from, map, mergeMap, repeat, retry, shareReplay, tap, toArray } from 'rxjs';
|
|
4
|
+
import { client } from './api';
|
|
5
|
+
import { terminal } from './terminal';
|
|
6
|
+
const product$ = new Subject();
|
|
7
|
+
const futureExchangeInfo$ = defer(() => client.getFutureExchangeInfo()).pipe(repeat({ delay: 3600000 }), retry({ delay: 60000 }), shareReplay(1));
|
|
8
|
+
const futureProducts$ = futureExchangeInfo$.pipe(mergeMap((x) => from(x.symbols).pipe(
|
|
9
|
+
//
|
|
10
|
+
map((symbol) => {
|
|
11
|
+
return {
|
|
12
|
+
datasource_id: 'BINANCE',
|
|
13
|
+
product_id: encodePath('usdt-future', symbol.symbol),
|
|
14
|
+
base_currency: symbol.baseAsset,
|
|
15
|
+
quote_currency: symbol.quoteAsset,
|
|
16
|
+
price_step: +`1e-${symbol.pricePrecision}`,
|
|
17
|
+
value_scale: 1,
|
|
18
|
+
volume_step: +`1e-${symbol.quantityPrecision}`,
|
|
19
|
+
name: `${symbol.baseAsset}/${symbol.quoteAsset} PERP`,
|
|
20
|
+
value_scale_unit: '',
|
|
21
|
+
margin_rate: +symbol.requiredMarginPercent / 100,
|
|
22
|
+
value_based_cost: 0,
|
|
23
|
+
volume_based_cost: 0,
|
|
24
|
+
max_position: 0,
|
|
25
|
+
max_volume: 0,
|
|
26
|
+
allow_long: true,
|
|
27
|
+
allow_short: true,
|
|
28
|
+
market_id: 'BINANCE/USDT-FUTURE',
|
|
29
|
+
no_interest_rate: false,
|
|
30
|
+
};
|
|
31
|
+
}), tap((v) => product$.next(v)), toArray())), shareReplay(1));
|
|
32
|
+
futureProducts$.subscribe();
|
|
33
|
+
createSQLWriter(terminal, {
|
|
34
|
+
data$: product$,
|
|
35
|
+
tableName: 'product',
|
|
36
|
+
keyFn: (x) => encodePath(x.datasource_id, x.product_id),
|
|
37
|
+
conflictKeys: ['datasource_id', 'product_id'],
|
|
38
|
+
writeInterval: 1000,
|
|
39
|
+
});
|
|
40
|
+
//# sourceMappingURL=product.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"product.js","sourceRoot":"","sources":["../src/product.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAE3C,OAAO,EAAE,eAAe,EAAE,MAAM,aAAa,CAAC;AAC9C,OAAO,EAAE,OAAO,EAAE,KAAK,EAAE,IAAI,EAAE,GAAG,EAAE,QAAQ,EAAE,MAAM,EAAE,KAAK,EAAE,WAAW,EAAE,GAAG,EAAE,OAAO,EAAE,MAAM,MAAM,CAAC;AACrG,OAAO,EAAE,MAAM,EAAE,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAEtC,MAAM,QAAQ,GAAG,IAAI,OAAO,EAAY,CAAC;AAEzC,MAAM,mBAAmB,GAAG,KAAK,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC,qBAAqB,EAAE,CAAC,CAAC,IAAI,CAC1E,MAAM,CAAC,EAAE,KAAK,EAAE,OAAQ,EAAE,CAAC,EAC3B,KAAK,CAAC,EAAE,KAAK,EAAE,KAAM,EAAE,CAAC,EACxB,WAAW,CAAC,CAAC,CAAC,CACf,CAAC;AAEF,MAAM,eAAe,GAAG,mBAAmB,CAAC,IAAI,CAC9C,QAAQ,CAAC,CAAC,CAAC,EAAE,EAAE,CACb,IAAI,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,IAAI;AAClB,EAAE;AACF,GAAG,CAAC,CAAC,MAAM,EAAY,EAAE;IACvB,OAAO;QACL,aAAa,EAAE,SAAS;QACxB,UAAU,EAAE,UAAU,CAAC,aAAa,EAAE,MAAM,CAAC,MAAM,CAAC;QACpD,aAAa,EAAE,MAAM,CAAC,SAAS;QAC/B,cAAc,EAAE,MAAM,CAAC,UAAU;QACjC,UAAU,EAAE,CAAC,MAAM,MAAM,CAAC,cAAc,EAAE;QAC1C,WAAW,EAAE,CAAC;QACd,WAAW,EAAE,CAAC,MAAM,MAAM,CAAC,iBAAiB,EAAE;QAC9C,IAAI,EAAE,GAAG,MAAM,CAAC,SAAS,IAAI,MAAM,CAAC,UAAU,OAAO;QACrD,gBAAgB,EAAE,EAAE;QACpB,WAAW,EAAE,CAAC,MAAM,CAAC,qBAAqB,GAAG,GAAG;QAChD,gBAAgB,EAAE,CAAC;QACnB,iBAAiB,EAAE,CAAC;QACpB,YAAY,EAAE,CAAC;QACf,UAAU,EAAE,CAAC;QACb,UAAU,EAAE,IAAI;QAChB,WAAW,EAAE,IAAI;QACjB,SAAS,EAAE,qBAAqB;QAChC,gBAAgB,EAAE,KAAK;KACxB,CAAC;AACJ,CAAC,CAAC,EACF,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,EAC5B,OAAO,EAAE,CACV,CACF,EACD,WAAW,CAAC,CAAC,CAAC,CACf,CAAC;AAEF,eAAe,CAAC,SAAS,EAAE,CAAC;AAE5B,eAAe,CAAW,QAAQ,EAAE;IAClC,KAAK,EAAE,QAAQ;IACf,SAAS,EAAE,SAAS;IACpB,KAAK,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,UAAU,CAAC,CAAC,CAAC,aAAa,EAAE,CAAC,CAAC,UAAU,CAAC;IACvD,YAAY,EAAE,CAAC,eAAe,EAAE,YAAY,CAAC;IAC7C,aAAa,EAAE,IAAI;CACpB,CAAC,CAAC","sourcesContent":["import { encodePath } from '@yuants/utils';\nimport { IProduct } from '@yuants/data-product';\nimport { createSQLWriter } from '@yuants/sql';\nimport { Subject, defer, from, map, mergeMap, repeat, retry, shareReplay, tap, toArray } from 'rxjs';\nimport { client } from './api';\nimport { terminal } from './terminal';\n\nconst product$ = new Subject<IProduct>();\n\nconst futureExchangeInfo$ = defer(() => client.getFutureExchangeInfo()).pipe(\n repeat({ delay: 3600_000 }),\n retry({ delay: 60_000 }),\n shareReplay(1),\n);\n\nconst futureProducts$ = futureExchangeInfo$.pipe(\n mergeMap((x) =>\n from(x.symbols).pipe(\n //\n map((symbol): IProduct => {\n return {\n datasource_id: 'BINANCE',\n product_id: encodePath('usdt-future', symbol.symbol),\n base_currency: symbol.baseAsset,\n quote_currency: symbol.quoteAsset,\n price_step: +`1e-${symbol.pricePrecision}`,\n value_scale: 1,\n volume_step: +`1e-${symbol.quantityPrecision}`,\n name: `${symbol.baseAsset}/${symbol.quoteAsset} PERP`,\n value_scale_unit: '',\n margin_rate: +symbol.requiredMarginPercent / 100,\n value_based_cost: 0,\n volume_based_cost: 0,\n max_position: 0,\n max_volume: 0,\n allow_long: true,\n allow_short: true,\n market_id: 'BINANCE/USDT-FUTURE',\n no_interest_rate: false,\n };\n }),\n tap((v) => product$.next(v)),\n toArray(),\n ),\n ),\n shareReplay(1),\n);\n\nfutureProducts$.subscribe();\n\ncreateSQLWriter<IProduct>(terminal, {\n data$: product$,\n tableName: 'product',\n keyFn: (x) => encodePath(x.datasource_id, x.product_id),\n conflictKeys: ['datasource_id', 'product_id'],\n writeInterval: 1000,\n});\n"]}
|
package/dist/terminal.js
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Terminal } from '@yuants/protocol';
|
|
2
|
+
import { UUID } from '@yuants/utils';
|
|
3
|
+
export const terminal = new Terminal(process.env.HOST_URL, {
|
|
4
|
+
terminal_id: process.env.TERMINAL_ID || `binance/${UUID()}`,
|
|
5
|
+
name: '@yuants/vendor-binance',
|
|
6
|
+
});
|
|
7
|
+
//# sourceMappingURL=terminal.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"terminal.js","sourceRoot":"","sources":["../src/terminal.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAC5C,OAAO,EAAE,IAAI,EAAE,MAAM,eAAe,CAAC;AAErC,MAAM,CAAC,MAAM,QAAQ,GAAG,IAAI,QAAQ,CAAC,OAAO,CAAC,GAAG,CAAC,QAAS,EAAE;IAC1D,WAAW,EAAE,OAAO,CAAC,GAAG,CAAC,WAAW,IAAI,WAAW,IAAI,EAAE,EAAE;IAC3D,IAAI,EAAE,wBAAwB;CAC/B,CAAC,CAAC","sourcesContent":["import { Terminal } from '@yuants/protocol';\nimport { UUID } from '@yuants/utils';\n\nexport const terminal = new Terminal(process.env.HOST_URL!, {\n terminal_id: process.env.TERMINAL_ID || `binance/${UUID()}`,\n name: '@yuants/vendor-binance',\n});\n"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { }
|