Add Bitcoin to list of supported currencies

Bitcoin is not currently one of the 28 currencies listed here: Data Formats | Holistics Docs (4.0) but it would be great to have.
The Bitcoin sign is part of unicode, with code point U+20BF (₿).

Hi @jir,
Thanks for your request. We’ll add it to the backlog and let you know when it’s implemented.

Hi @jir ,
We have a property in a dimension definition that can format a Bitcoin icon. You can do as follows:

dimension formatted_price {
  label: "Formatted Price"
  type: "number"
  format: "#,###[$₿]" 
}

You can use either ₿ or after the $ sign in the format property to get the desired result.

Hope this helps!