Socket
Socket
Sign inDemoInstall

@davidosborn/crypto-tax-calculator

Package Overview
Dependencies
44
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @davidosborn/crypto-tax-calculator

A tool to calculate the capital gains of cryptocurrency assets for Canadian taxes


Version published
Weekly downloads
2
Maintainers
1
Install size
10.1 MB
Created
Weekly downloads
 

Readme

Source

Crypto Tax Calculator

A tool to calculate the capital gains of cryptocurrency assets for Canadian taxes. The source data comes from a set of trade logs, which are provided by the exchanges. The adjusted cost base (ACB) is used to calculate the capital gains.

Introduction

I created this software to calculate the capital gains from my 2017 cryptocurrency trades for tax purposes. For my 2018 taxes, I refined the software with many new options to handle missing logs, stolen assets, and other complex issues.

Please note that I am not an accountant, and I do not warrant the validity of the results.

Exchanges

The following exchanges are supported out-of-the-box:

  • Binance
  • Bittrex
  • Kraken
  • KuCoin

It is easy to add support for additional exchanges. Simply add a parser in trade-parse-stream.js to convert a CSV row to the normalized format. You can look at the existing parsers as examples of how to do this.

Usage

Run the program with npm start or node index. Add the --help option to see the available options.

Typical usage involves running the program with a set of trade logs in the form of CSV files. For example:

node index data/*-2018.csv -odata/results-2018.md --init=\
BTC:0.73396222:12721.04,\
ETH:4.18451232:3478.97,\
LTC:11.09684:3113.88

The resulting Markdown or HTML contains:

  • The assets carried forward from the previous year (if any).
  • A list of trades, ordered by time, including fees and the running ACB.
  • A list of dispositions, ordered by asset and time, including the POD, ACB, OAE, and the running gain (or loss).
  • A summary of the aggregate dispositions per asset.
  • A summary of the aggregate gain (or loss), ACB, and remaining balance per asset.
  • The total taxable capital gains.
  • The assets that can be carried forward to the next year (if any).

Options

There are options for filtering by currency, defining the initial balance, limiting the number of trades, and providing historical data.

Short optionLong optionArgumentDescription
-a--assets<spec> [1]Only consider trades involving the specified assets.
-h--helpDisplay this usage information and exit.
-i--init<spec> [2]Define the initial balance and ACB of the assets.
-m--htmlFormat the results as HTML instead of Markdown.
-o--output<file>Write the results to the specified file.
-q--quietDo not write the results.
-s--show<spec> [1]Only show the specified assets.
-t--take<count>Do not process more than the specified number of trades.
-v--verboseWrite extra information to the console.
-w--webRequest historical asset values from the internet.
-y--history<path> [3]Read historical asset values from the specified directory.

[1] A subset of the available assets can be considered for the calculation by the --assets option, or used to filter the results by the --show option. The argument in both cases is a comma-separated list of assets.

[2] The balances can be carried forward from last year by the --init option. The argument is a comma-separated list of assets, each with its balance and adjusted cost base, in the form of <asset>:<balance>[:<acb>],..., such as --init=BTC:1:5000,ETH:5:1000,LTC:10:80.

Historical data

[3] Historical data may be provided to the program using the --history option.

Format

The data for each currency pair must be stored in a JSON file named <base>-<quote>.json. Each JSON file must contain an array of historical samples, ordered by time. Each historical sample must contain the following fields:

FieldTypeSemanticsDescription
timeNumberUNIX timestampThe opening time of the trading period.
openNumberCurrencyThe price at the opening of the trading period.
closeNumberCurrencyThe price at the closing of the trading period.

Compatible files can be generated by the @davidosborn/crypto-history-parser npm package.

Keywords

FAQs

Last updated on 13 Apr 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc