Skip to content

Commit

Permalink
add bybit_unified private endpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
Haehnchen committed Aug 14, 2024
1 parent 169d7f2 commit 3a0df65
Show file tree
Hide file tree
Showing 9 changed files with 317 additions and 572 deletions.
16 changes: 16 additions & 0 deletions instance.js.dist_trade_bybit.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
const c = (module.exports = {});

c.symbols = [];

c.init = async () => {
const j = ['BTC/USDT:USDT', 'BTC/USDC:USDC'];

j.forEach(pair => {
c.symbols.push({
symbol: pair,
periods: ['1m', '15m', '1h'],
exchange: 'bybit_unified',
state: 'watch'
});
});
};
Loading

0 comments on commit 3a0df65

Please sign in to comment.