-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.yaml
40 lines (35 loc) · 1.01 KB
/
config.yaml
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
---
# Required config
input: testdata # folder where your Trading212 CSVs are stored
output: agg # name of output file (prefix)
format: aggregate # aggregate or yahoo
# Optional config
skip-pies: true # skip splitting by pies (default: false)
pie-only: "" # only generate this pie (default: "")
# Splits is a list of split events relevant to your portfolio
# this is needed to calculate the total stock count
splits:
- symbol: ABEC
date: 2022-07-16
ratio: 20 # for reverse splits, use a decimal ratio
# Symbols is a list of conversions to take Trading212 symbols
# and convert them to the symbols used by Yahoo portfolios
symbols:
RIO: RIO.L
SAN: SAN.PA
# Renames deal with stocks that have changed their symbol
# for example by becoming a new company or by being delisted
renames:
GPS: GAP
TUP: TUPBQ
# Pies allows you split your aggregation into multiple CSVs
# uncomment to use
#pies:
# - name: Growth
# symbols:
# - GOOG
# - AMZN
# - name: Dividend
# symbols:
# - PEP
# - JNJ