-
Notifications
You must be signed in to change notification settings - Fork 56
/
cfgs.ts
66 lines (64 loc) · 1.39 KB
/
cfgs.ts
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import { CCIDynamicBotOptions } from './bot';
export const BTCUSDT: CCIDynamicBotOptions = {
instrumentType: 'FUTURES',
fee: 0.02,
lotsMultiplier: 1,
equityLevel: 1,
broker: 'binance',
ticker: 'BTCUSDT',
currency: 'USDT',
interval: '15min',
amount: 500,
orderCandlesLimit: 76,
closeAtZero: false,
stopTakeRatio: 1.47,
atrPeriod: 30,
atrMultiplier: 3.45,
levelPeriod: 31,
levelRedunant: 0.84,
levelSampleCount: 2,
levelSampleType: 2,
levelMultiplier: 2.38,
levelOffset: 0,
cciPeriod: 35,
zeroClose: true,
sandbox: true,
cciAtr: false,
maxRetryOrders: 3,
reduceWhen: 1.05,
reduceSize: 0.22,
manual: true,
id: 4,
signalFilter: false,
takeProfit: 8.74,
stopLoss: 9.1,
trailing: 2,
};
export const SBER: CCIDynamicBotOptions = {
instrumentType: 'SPOT',
fee: 0.02,
lotsMultiplier: 1,
equityLevel: 1,
broker: 'tinkoff',
ticker: 'SBER',
currency: 'RUB',
interval: '15min',
amount: 500,
maxRetryOrders: 0,
orderCandlesLimit: 100,
closeAtZero: false,
stopTakeRatio: 2,
atrPeriod: 21,
atrMultiplier: 5.48,
levelPeriod: 30,
levelRedunant: 0.27,
levelSampleCount: 2,
levelSampleType: 2,
levelMultiplier: 1,
levelOffset: 0,
cciPeriod: 13,
zeroClose: false,
sandbox: true,
cciAtr: false,
id: 29,
};