A collection of Google Apps Script custom functions for tracking crypto portfolios in Google Sheets.
The price data is pulled using CoinGecko's API, and the token balances are obtained by making queries to various RPC servers like PublicNode.
If this project helped you, consider buying me a coffee via 3Cities or GitHub Sponsors.
- Obtain a CoinGecko Demo API by following the instructions here.
- Open the Cryptfolio template in Google Sheets.
- Click on "File", and then "Make a copy". This will create a copy of the template in Google Sheets.
- From the toolbar, click on "Extensions", and then on "Apps Script". You should be able to see the code now.
- Add the chains and tokens you want to track in the
chainIDs
andtokenData
variables. - Query the price data by running the
GET_ALL_PRICES
function. - Use the
GET_ERC20_BALANCE
andGET_NATIVE_BALANCE
functions to query your holdings in real-time. - Calculate the USD value of your holdings by reading the local price data with
INDEX
andMATCH
.
Note
The GET_ALL_PRICES
can only be run from within Apps Script. See the Custom Functions section
below.
The template shows how to query balances for ARB, ETH, MKR, and OP, and how to calculate the values of the holdings:
I built this because I was frustrated with the existing solutions, which are either too complex, too expensive, or too unstable.
Cryptfolio is:
- Free to use
- Minimalist
- DYI and easy to customize
- Functional; it just works
This project is meant to be forked and customized to your needs. Here are two common use cases:
To track a new chain:
- Add it in the
Chains
sheet in the spreadsheet. - Edit
chainIds
incryptfolio.gs
.
To track a new token:
- List it in the
Prices
sheet in the spreadsheet. Ensure that theCRYPTO_IDS
range got updated, too. - Edit the
tokenData
object incryptfolio.gs
.
Here's a table with the custom functions enabled by this project.
The Read functions can be called from either Google Sheets or Apps Script, but the Write functions can only be run from within the Apps Script environment. This is because a custom function cannot affect cells other than those it returns a value to.
Function | Type | Params | Description |
---|---|---|---|
GET_ERC20_BALANCE |
Read | (chainID,symbol,account) | Get the ERC-20 token balance of account on the chain with ID chainID |
GET_EVM_NATIVE_BALANCE |
Read | (chainID,account) | Get the EVM native asset balance of account on the chain with ID chainID |
GET_ALL_PRICES |
Write | (fiat) | Get the current fiat prices for all CRYPTO_IDS |
GET_PRICE |
Write | (crypto,fiat) | Get the current fiat price for crypto |
Feel free to dive in! Open an issue, start a discussion or submit a PR.
This project couldn't exist without the CoinGecko API. Thank you for providing such a valuable service for free!
This project is licensed under MIT.