Skip to content

Commit 3a0df65

Browse files
committed
add bybit_unified private endpoints
1 parent 169d7f2 commit 3a0df65

9 files changed

+317
-572
lines changed

instance.js.dist_trade_bybit.js

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
const c = (module.exports = {});
2+
3+
c.symbols = [];
4+
5+
c.init = async () => {
6+
const j = ['BTC/USDT:USDT', 'BTC/USDC:USDC'];
7+
8+
j.forEach(pair => {
9+
c.symbols.push({
10+
symbol: pair,
11+
periods: ['1m', '15m', '1h'],
12+
exchange: 'bybit_unified',
13+
state: 'watch'
14+
});
15+
});
16+
};

0 commit comments

Comments
 (0)