-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathsteps.js
35 lines (34 loc) · 1.23 KB
/
steps.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
const { execute: getNextSymbol } = require('./step/get-next-symbol');
const {
execute: getGlobalConfiguration
} = require('./step/get-global-configuration');
const {
execute: getSymbolConfiguration
} = require('./step/get-symbol-configuration');
const { execute: getSymbolInfo } = require('./step/get-symbol-info');
const { execute: getOverrideAction } = require('./step/get-override-action');
const { execute: getAccountInfo } = require('./step/get-account-info');
const { execute: getIndicators } = require('./step/get-indicators');
const { execute: getOpenOrders } = require('./step/get-open-orders');
const {
execute: executeDustTransfer
} = require('./step/execute-dust-transfer');
const { execute: getClosedTrades } = require('./step/get-closed-trades');
const { execute: getOrderStats } = require('./step/get-order-stats');
const { execute: getTradingView } = require('./step/get-tradingview');
const { execute: saveDataToCache } = require('./step/save-data-to-cache');
module.exports = {
getNextSymbol,
getGlobalConfiguration,
getSymbolConfiguration,
getSymbolInfo,
getOverrideAction,
getAccountInfo,
getIndicators,
getOpenOrders,
executeDustTransfer,
getClosedTrades,
getOrderStats,
getTradingView,
saveDataToCache
};