Problem Statement
When selling and buying stocks repeatedly, ticker obviously lose track of the original amount of money used, making calculations based on the initial cost unreliable for long-term tracking
Proposed Solution
keep the current behavior default, but add an option to set a fixed cost for each group, allowing to keep track of cost through multiples trades
the config might look like that :
groups:
- name: Global
initial_cost: 500
holdings:
# REER
- symbol: "AAA"
quantity: 3
unit_cost: 120
- symbol: "BBB"
quantity: 10
unit_cost: 18
- symbol: "CCC"
quantity: 4
unit_cost: 87
Problem Statement
When selling and buying stocks repeatedly, ticker obviously lose track of the original amount of money used, making calculations based on the initial cost unreliable for long-term tracking
Proposed Solution
keep the current behavior default, but add an option to set a fixed cost for each group, allowing to keep track of cost through multiples trades
the config might look like that :