@yuants/vendor-binance 0.6.39 → 0.7.1
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 +3 -4
- package/dist/api.js.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/legacy_index.js +118 -40
- package/dist/legacy_index.js.map +1 -1
- package/dist/quote.js +69 -0
- package/dist/quote.js.map +1 -0
- package/lib/api.d.ts +21 -0
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +3 -4
- package/lib/api.js.map +1 -1
- package/lib/index.d.ts +1 -0
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +1 -0
- package/lib/index.js.map +1 -1
- package/lib/legacy_index.js +118 -40
- package/lib/legacy_index.js.map +1 -1
- package/lib/quote.d.ts +2 -0
- package/lib/quote.d.ts.map +1 -0
- package/lib/quote.js +71 -0
- package/lib/quote.js.map +1 -0
- package/package.json +14 -12
- package/temp/package-deps.json +21 -18
package/lib/quote.js
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const cache_1 = require("@yuants/cache");
|
|
4
|
+
const protocol_1 = require("@yuants/protocol");
|
|
5
|
+
const sql_1 = require("@yuants/sql");
|
|
6
|
+
const utils_1 = require("@yuants/utils");
|
|
7
|
+
const rxjs_1 = require("rxjs");
|
|
8
|
+
const api_1 = require("./api");
|
|
9
|
+
const terminal = protocol_1.Terminal.fromNodeEnv();
|
|
10
|
+
const OPEN_INTEREST_TTL = process.env.OPEN_INTEREST_TTL ? Number(process.env.OPEN_INTEREST_TTL) : 120000;
|
|
11
|
+
const openInterestCache = (0, cache_1.createCache)(async (symbol) => {
|
|
12
|
+
var _a;
|
|
13
|
+
try {
|
|
14
|
+
const data = await api_1.client.getFutureOpenInterest({ symbol });
|
|
15
|
+
return Number((_a = data.openInterest) !== null && _a !== void 0 ? _a : 0);
|
|
16
|
+
}
|
|
17
|
+
catch (err) {
|
|
18
|
+
console.warn('getFutureOpenInterest failed', symbol, err);
|
|
19
|
+
return undefined;
|
|
20
|
+
}
|
|
21
|
+
}, {
|
|
22
|
+
expire: OPEN_INTEREST_TTL,
|
|
23
|
+
});
|
|
24
|
+
const futurePremiumIndex$ = (0, rxjs_1.defer)(() => api_1.client.getFuturePremiumIndex({})).pipe((0, rxjs_1.repeat)({ delay: 1000 }), (0, rxjs_1.retry)({ delay: 30000 }), (0, rxjs_1.shareReplay)({ bufferSize: 1, refCount: true }));
|
|
25
|
+
const futureBookTicker$ = (0, rxjs_1.defer)(() => api_1.client.getFutureBookTicker({})).pipe((0, rxjs_1.repeat)({ delay: 1000 }), (0, rxjs_1.retry)({ delay: 30000 }), (0, rxjs_1.shareReplay)({ bufferSize: 1, refCount: true }));
|
|
26
|
+
const quoteFromPremiumIndex$ = futurePremiumIndex$.pipe((0, rxjs_1.mergeMap)((entries) => (0, rxjs_1.from)(entries || [])), (0, rxjs_1.map)((entry) => {
|
|
27
|
+
var _a;
|
|
28
|
+
return ({
|
|
29
|
+
datasource_id: 'BINANCE',
|
|
30
|
+
product_id: (0, utils_1.encodePath)('usdt-future', entry.symbol),
|
|
31
|
+
last_price: entry.markPrice,
|
|
32
|
+
updated_at: new Date((_a = entry.time) !== null && _a !== void 0 ? _a : Date.now()).toISOString(),
|
|
33
|
+
});
|
|
34
|
+
}));
|
|
35
|
+
const quoteFromBookTicker$ = futureBookTicker$.pipe((0, rxjs_1.mergeMap)((entries) => (0, rxjs_1.from)(entries || [])), (0, rxjs_1.map)((entry) => {
|
|
36
|
+
var _a;
|
|
37
|
+
return ({
|
|
38
|
+
datasource_id: 'BINANCE',
|
|
39
|
+
product_id: (0, utils_1.encodePath)('usdt-future', entry.symbol),
|
|
40
|
+
bid_price: entry.bidPrice,
|
|
41
|
+
ask_price: entry.askPrice,
|
|
42
|
+
updated_at: new Date((_a = entry.time) !== null && _a !== void 0 ? _a : Date.now()).toISOString(),
|
|
43
|
+
});
|
|
44
|
+
}));
|
|
45
|
+
const quoteFromOpenInterest$ = futureBookTicker$.pipe((0, rxjs_1.mergeMap)((entries) => (0, rxjs_1.from)(entries || [])), (0, rxjs_1.mergeMap)((entry) => (0, rxjs_1.from)(openInterestCache.query(entry.symbol)).pipe((0, rxjs_1.map)((openInterest) => ({
|
|
46
|
+
datasource_id: 'BINANCE',
|
|
47
|
+
product_id: (0, utils_1.encodePath)('usdt-future', entry.symbol),
|
|
48
|
+
open_interest: `${openInterest !== null && openInterest !== void 0 ? openInterest : 0}`,
|
|
49
|
+
}))), 5));
|
|
50
|
+
const quote$ = (0, rxjs_1.merge)(quoteFromPremiumIndex$, quoteFromBookTicker$, quoteFromOpenInterest$).pipe((0, rxjs_1.groupBy)((quote) => quote.product_id), (0, rxjs_1.mergeMap)((group$) => group$.pipe((0, rxjs_1.scan)((acc, cur) => Object.assign(acc, cur, {
|
|
51
|
+
datasource_id: 'BINANCE',
|
|
52
|
+
product_id: group$.key,
|
|
53
|
+
}), {}))), (0, rxjs_1.share)(), (0, rxjs_1.shareReplay)({ bufferSize: 1, refCount: true }));
|
|
54
|
+
if (process.env.WRITE_QUOTE_TO_SQL === 'true') {
|
|
55
|
+
quote$
|
|
56
|
+
.pipe((0, sql_1.writeToSQL)({
|
|
57
|
+
terminal,
|
|
58
|
+
tableName: 'quote',
|
|
59
|
+
writeInterval: 1000,
|
|
60
|
+
conflictKeys: ['datasource_id', 'product_id'],
|
|
61
|
+
}))
|
|
62
|
+
.subscribe();
|
|
63
|
+
terminal.channel.publishChannel('quote', { pattern: '^BINANCE/' }, (channel_id) => {
|
|
64
|
+
const [datasourceId, productId] = (0, utils_1.decodePath)(channel_id);
|
|
65
|
+
if (!datasourceId || !productId) {
|
|
66
|
+
throw new Error(`Invalid channel_id: ${channel_id}`);
|
|
67
|
+
}
|
|
68
|
+
return quote$.pipe((0, rxjs_1.filter)((quote) => quote.product_id === productId));
|
|
69
|
+
});
|
|
70
|
+
}
|
|
71
|
+
//# sourceMappingURL=quote.js.map
|
package/lib/quote.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"quote.js","sourceRoot":"","sources":["../src/quote.ts"],"names":[],"mappings":"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","sourcesContent":["import { createCache } from '@yuants/cache';\nimport { IQuote } from '@yuants/data-quote';\nimport { Terminal } from '@yuants/protocol';\nimport { writeToSQL } from '@yuants/sql';\nimport { decodePath, encodePath } from '@yuants/utils';\nimport {\n defer,\n filter,\n from,\n groupBy,\n map,\n merge,\n mergeMap,\n repeat,\n retry,\n scan,\n share,\n shareReplay,\n} from 'rxjs';\nimport { client } from './api';\n\nconst terminal = Terminal.fromNodeEnv();\nconst OPEN_INTEREST_TTL = process.env.OPEN_INTEREST_TTL ? Number(process.env.OPEN_INTEREST_TTL) : 120_000;\n\nconst openInterestCache = createCache<number>(\n async (symbol: string) => {\n try {\n const data = await client.getFutureOpenInterest({ symbol });\n return Number(data.openInterest ?? 0);\n } catch (err) {\n console.warn('getFutureOpenInterest failed', symbol, err);\n return undefined;\n }\n },\n {\n expire: OPEN_INTEREST_TTL,\n },\n);\n\nconst futurePremiumIndex$ = defer(() => client.getFuturePremiumIndex({})).pipe(\n repeat({ delay: 1_000 }),\n retry({ delay: 30_000 }),\n shareReplay({ bufferSize: 1, refCount: true }),\n);\n\nconst futureBookTicker$ = defer(() => client.getFutureBookTicker({})).pipe(\n repeat({ delay: 1_000 }),\n retry({ delay: 30_000 }),\n shareReplay({ bufferSize: 1, refCount: true }),\n);\n\nconst quoteFromPremiumIndex$ = futurePremiumIndex$.pipe(\n mergeMap((entries) => from(entries || [])),\n map(\n (entry): Partial<IQuote> => ({\n datasource_id: 'BINANCE',\n product_id: encodePath('usdt-future', entry.symbol),\n last_price: entry.markPrice,\n updated_at: new Date(entry.time ?? Date.now()).toISOString(),\n }),\n ),\n);\n\nconst quoteFromBookTicker$ = futureBookTicker$.pipe(\n mergeMap((entries) => from(entries || [])),\n map(\n (entry): Partial<IQuote> => ({\n datasource_id: 'BINANCE',\n product_id: encodePath('usdt-future', entry.symbol),\n bid_price: entry.bidPrice,\n ask_price: entry.askPrice,\n updated_at: new Date(entry.time ?? Date.now()).toISOString(),\n }),\n ),\n);\n\nconst quoteFromOpenInterest$ = futureBookTicker$.pipe(\n mergeMap((entries) => from(entries || [])),\n mergeMap(\n (entry) =>\n from(openInterestCache.query(entry.symbol)).pipe(\n map(\n (openInterest): Partial<IQuote> => ({\n datasource_id: 'BINANCE',\n product_id: encodePath('usdt-future', entry.symbol),\n open_interest: `${openInterest ?? 0}`,\n }),\n ),\n ),\n 5,\n ),\n);\n\nconst quote$ = merge(quoteFromPremiumIndex$, quoteFromBookTicker$, quoteFromOpenInterest$).pipe(\n groupBy((quote) => quote.product_id),\n mergeMap((group$) =>\n group$.pipe(\n scan(\n (acc, cur) =>\n Object.assign(acc, cur, {\n datasource_id: 'BINANCE',\n product_id: group$.key,\n }),\n {} as Partial<IQuote>,\n ),\n ),\n ),\n share(),\n shareReplay({ bufferSize: 1, refCount: true }),\n);\n\nif (process.env.WRITE_QUOTE_TO_SQL === 'true') {\n quote$\n .pipe(\n writeToSQL({\n terminal,\n tableName: 'quote',\n writeInterval: 1_000,\n conflictKeys: ['datasource_id', 'product_id'],\n }),\n )\n .subscribe();\n\n terminal.channel.publishChannel('quote', { pattern: '^BINANCE/' }, (channel_id) => {\n const [datasourceId, productId] = decodePath(channel_id);\n if (!datasourceId || !productId) {\n throw new Error(`Invalid channel_id: ${channel_id}`);\n }\n return quote$.pipe(filter((quote) => quote.product_id === productId));\n });\n}\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yuants/vendor-binance",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"bin": "lib/cli.js",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"files": [
|
|
@@ -9,16 +9,18 @@
|
|
|
9
9
|
"temp"
|
|
10
10
|
],
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@yuants/protocol": "0.50.
|
|
13
|
-
"@yuants/data-account": "0.6.
|
|
14
|
-
"@yuants/
|
|
15
|
-
"@yuants/data-
|
|
16
|
-
"@yuants/
|
|
17
|
-
"@yuants/data-
|
|
18
|
-
"@yuants/
|
|
19
|
-
"@yuants/data-
|
|
20
|
-
"@yuants/data-
|
|
21
|
-
"@yuants/
|
|
12
|
+
"@yuants/protocol": "0.50.2",
|
|
13
|
+
"@yuants/data-account": "0.6.12",
|
|
14
|
+
"@yuants/cache": "0.2.3",
|
|
15
|
+
"@yuants/data-quote": "0.2.35",
|
|
16
|
+
"@yuants/utils": "0.11.0",
|
|
17
|
+
"@yuants/data-series": "0.3.43",
|
|
18
|
+
"@yuants/sql": "0.9.22",
|
|
19
|
+
"@yuants/data-product": "0.4.13",
|
|
20
|
+
"@yuants/data-ohlc": "0.4.14",
|
|
21
|
+
"@yuants/data-order": "0.3.10",
|
|
22
|
+
"@yuants/data-interest-rate": "0.1.40",
|
|
23
|
+
"@yuants/transfer": "0.2.31",
|
|
22
24
|
"rxjs": "~7.5.6",
|
|
23
25
|
"crypto-js": "^4.2.0"
|
|
24
26
|
},
|
|
@@ -29,7 +31,7 @@
|
|
|
29
31
|
"@rushstack/heft-node-rig": "~1.10.7",
|
|
30
32
|
"@types/heft-jest": "1.0.3",
|
|
31
33
|
"@types/node": "22",
|
|
32
|
-
"@yuants/extension": "0.2.
|
|
34
|
+
"@yuants/extension": "0.2.28",
|
|
33
35
|
"@yuants/tool-kit": "0.2.1",
|
|
34
36
|
"typescript": "~4.7.4",
|
|
35
37
|
"ts-node": "~10.9.2"
|
package/temp/package-deps.json
CHANGED
|
@@ -1,31 +1,34 @@
|
|
|
1
1
|
{
|
|
2
|
-
"apps/vendor-binance/CHANGELOG.json": "
|
|
3
|
-
"apps/vendor-binance/CHANGELOG.md": "
|
|
2
|
+
"apps/vendor-binance/CHANGELOG.json": "f8152d34af3712e6f18f629c299e76456657a0e8",
|
|
3
|
+
"apps/vendor-binance/CHANGELOG.md": "07138d49729a4b5f1897bd3641f9fd3fd34fcabc",
|
|
4
4
|
"apps/vendor-binance/README.md": "4ab94c08b3d07398aee74c3264a4f87d554d20fa",
|
|
5
5
|
"apps/vendor-binance/api-extractor.json": "62f4fd324425b9a235f0c117975967aab09ced0c",
|
|
6
6
|
"apps/vendor-binance/config/jest.config.json": "4bb17bde3ee911163a3edb36a6eb71491d80b1bd",
|
|
7
7
|
"apps/vendor-binance/config/rig.json": "f6c7b5537dc77a3170ba9f008bae3b6c3ee11956",
|
|
8
8
|
"apps/vendor-binance/config/typescript.json": "854907e8a821f2050f6533368db160c649c25348",
|
|
9
9
|
"apps/vendor-binance/etc/vendor-binance.api.md": "2094b84e9b5e7503f5c42b31fffee8d7db47fe7b",
|
|
10
|
-
"apps/vendor-binance/package.json": "
|
|
11
|
-
"apps/vendor-binance/src/api.ts": "
|
|
10
|
+
"apps/vendor-binance/package.json": "b1c591f9e17e5ebcae0829b6336562491ac91cb4",
|
|
11
|
+
"apps/vendor-binance/src/api.ts": "0c5cd2afada60d8e7ab20be65230e16aa8256921",
|
|
12
12
|
"apps/vendor-binance/src/cli.ts": "9bf6b5559a6c6f33da20e74cc6c5d702c60ec891",
|
|
13
|
-
"apps/vendor-binance/src/index.ts": "
|
|
13
|
+
"apps/vendor-binance/src/index.ts": "7573aa8600e289793c2e834dee11fef5a664efae",
|
|
14
14
|
"apps/vendor-binance/src/interest_rate.ts": "ee82ea130495c151b67850a8b90ca972cb8a8d84",
|
|
15
|
-
"apps/vendor-binance/src/legacy_index.ts": "
|
|
15
|
+
"apps/vendor-binance/src/legacy_index.ts": "4a240f03ae64527d1e73ab56af4056529b217ce5",
|
|
16
16
|
"apps/vendor-binance/src/product.ts": "ea88fc2e6d0e57ee01d13131b26eb052d8f29fb7",
|
|
17
|
+
"apps/vendor-binance/src/quote.ts": "3184973a00240676040c8a4898c6a20563a9a6a6",
|
|
17
18
|
"apps/vendor-binance/tsconfig.json": "81da8f78196974b5d15da0edb6b2d9f48641063c",
|
|
18
|
-
"apps/vendor-binance/.rush/temp/shrinkwrap-deps.json": "
|
|
19
|
-
"libraries/protocol/temp/package-deps.json": "
|
|
20
|
-
"libraries/data-account/temp/package-deps.json": "
|
|
21
|
-
"libraries/
|
|
22
|
-
"libraries/data-
|
|
23
|
-
"libraries/
|
|
24
|
-
"libraries/data-
|
|
25
|
-
"libraries/
|
|
26
|
-
"libraries/data-
|
|
27
|
-
"libraries/data-
|
|
28
|
-
"libraries/
|
|
29
|
-
"libraries/
|
|
19
|
+
"apps/vendor-binance/.rush/temp/shrinkwrap-deps.json": "7b773443e30eca79d696c3c880b16f7ffcb15b02",
|
|
20
|
+
"libraries/protocol/temp/package-deps.json": "927e493d72c10154de2879f2d0c89fb1e8726487",
|
|
21
|
+
"libraries/data-account/temp/package-deps.json": "c29b11fcb30dc5bf813894995bd958142783ee13",
|
|
22
|
+
"libraries/cache/temp/package-deps.json": "ccbc084176f6cf6580b3006d0cac81a5b0ecb964",
|
|
23
|
+
"libraries/data-quote/temp/package-deps.json": "ca82690303c9b5a55846387d1bfa0d8fe57e3947",
|
|
24
|
+
"libraries/utils/temp/package-deps.json": "c58f1ca8f498315d9a0219ca8c498299a41d297b",
|
|
25
|
+
"libraries/data-series/temp/package-deps.json": "9525d8c8a2933830845fd34551d11897a8cf31fc",
|
|
26
|
+
"libraries/sql/temp/package-deps.json": "159a9bfbc1734553ee3295f3ddaafd85b2725c81",
|
|
27
|
+
"libraries/data-product/temp/package-deps.json": "a056c3df6e19e1e51bc814ed1f09541d63b2afe7",
|
|
28
|
+
"libraries/data-ohlc/temp/package-deps.json": "4cca5eb528cf247e88594a7dda67f6e75b43de24",
|
|
29
|
+
"libraries/data-order/temp/package-deps.json": "e97eced62e0ec43de4519dd383c4b8948282fbb3",
|
|
30
|
+
"libraries/data-interest-rate/temp/package-deps.json": "53722b7498258ac7069e609c627047ae8b40f474",
|
|
31
|
+
"libraries/transfer/temp/package-deps.json": "dcc50695281bd25e170ea2d105332c8bc1ff5a87",
|
|
32
|
+
"libraries/extension/temp/package-deps.json": "fd20507284f9fd74b4de6f9855c8cead9cc132e8",
|
|
30
33
|
"tools/toolkit/temp/package-deps.json": "23e053490eb8feade23e4d45de4e54883e322711"
|
|
31
34
|
}
|