If you want to make a report for tax year Apr 2020 - Apr 2021 use:
- For stocks:
python3 main_ibkr.py 2020
- For crypto:
python3 main_crypto.py 2020
- You need to install cryptocompare library to fetch crypto prices on a given date.
python3 -m pip install cryptocompare
- The free version of their API should generally suffice, although there are rate limits. However this program stores all fetched prices in a file so that they don't need to be fetched again. If you run into rate limits, simply re-run the program after few seconds and new data will be appended
- This is a CGT calculator for UK tax. You need to download trade reports from your brokers and store it in Data folder. You'll need your statements since you opened your accounts (and not just the tax year in focus) since your cost basis is dependent on your past trades
- This calculator handles
- Uses UK cost averaging, with daily GBP rates used
- Matches Disposals in this order: Same Day -> 30-day bed and breakfast rule -> Sec 104 Matching -> Buys after 30 days
- Handles option expiry, assignment
- Handles crypto trades and staking / earn interest
- Does not include FX transactions. Unclear if currency held in accounts should be liable to CGT upon exchange back to GBP
- IBKR: You need to download monthly tradelog exports from IBKR. Store them as Data/IBKR/ibkr_monthly.csv
- Coinbase: Download all transactions in csv format. Store them as Data/Coinbase/coinbase.csv
- There are 2 tricky transactions: sends and receives from external wallets, make sure you handle them correctly.
- Either you ignore them if you sent them to yourself or consider them as a disposal if you used them up on the blockchain.
- By default these are ignored
- Coinbase Pro: Download all transactions in csv format.Store them as Data/CoinbasePro/coinbasepro.csv
- By default deposits and withdrawals are ignored (usually they are through coinbase itself)
- Binance: Download trade reports per quarter:
- Combined account statements (Needed for Spot and Earn accounts). Store them as Data/Binance/binance_all_monthly.csv
- Cross margin. Store them as Data/Binance/binance_cross_margin_monthly.csv
- Isolated margin. Store them as Data/Binance/binance_isolated_margin_monthly.csv