-
Notifications
You must be signed in to change notification settings - Fork 9
/
config.js.example
42 lines (40 loc) · 936 Bytes
/
config.js.example
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
module.exports = {
// choose disposal method to use
// valid options: FIFO, LIFO, TaxMin, Estimate
// default: FIFO
disposalMethod: {
// 2016: 'FIFO',
// 2017: 'FIFO',
// 2018: 'FIFO',
// BETA: TaxMin (prioritize in order: ST loss, LT loss, LT gain, ST gain)
// 2018: 'TaxMin',
// BETA: Sell lot with lowest estimated tax liability
// 2018: { method: 'Estimate', shortTermTaxRate: '0.35', longTermTaxRate: '0.15' },
},
accounts: [
{
source: 'coinbase',
apiKey: '',
apiSecret: '',
importStartDate: '2018-01-01',
},
{
source: 'gdax',
apiKey: '',
apiSecret: '',
apiPassphrase: '',
importStartDate: '2018-01-01',
},
{
source: 'poloniex',
name: 'user1',
apiKey: '',
apiSecret: '',
importStartDate: '2018-01-01',
},
{
source: 'file',
path: 'data/external.csv',
},
],
};