Bitcoin / Cryptocurrency Dashboards

No worries happy it’s working now :slight_smile:

1 Like

I don’t think I added support for that but I will put it on my future list for when I get some time for updates… You might be able to make a REST sensor to do it for now without too much trouble, just pick a block explorer with a public API endpoint for address balances and extract the json data via a RESTful sensor

1 Like

Can someone provide an example of how to add wallet tracking to this. For example, I’d like to track Ripple/XRP I own and the value fluctuation?

I DM’d you too but for others, it should work by putting your balance amount in the multiplier field

1 Like

Thank you for your help!
I have added this to my configuration.yml ::

  - platform: cryptoinfo_advanced
    id: "My XRP Wallet"
    cryptocurrency_name: "ripple"
    currency_name: "usd"
    unit_of_measurement: "$"
    multiplier: 840.716325
    update_frequency: 5       

I am still not seeing balance in native currency like how I can get with the Coinbase integration.

Any suggestions?

Thank you @TheHolyRoger :pray::+1: for help me fix the wallet card. I had to remove the unsupported comma from the multiplier and set unique ID like this in my configuration.yml

example:

  - platform: cryptoinfo_advanced
    id: "My XRP Wallet"
    unique_id: "my_xrp_wallet"
    cryptocurrency_name: "ripple"
    currency_name: "usd"
    unit_of_measurement: "$"
    multiplier: 1234567.00
    update_frequency: 5       
 

I’m playing around with this Apexchart:

type: custom:apexcharts-card
experimental:
  color_threshold: true
show:
  last_updated: true
header:
  standard_format: false
  show: true
  show_states: true
  colorize_states: true
  title: XRP Last 30 Days
now:
  show: true
  color: red
  label: Now
graph_span: 30d
span:
  end: day
series:
  - entity: sensor.cryptoinfo_xrp_price
    type: line
    group_by:
      func: last
      duration: 1d
    stroke_width: 5
    show:
      extremas: true
      header_color_threshold: true
    color_threshold:
      - value: 18
        color: steelblue
      - value: 21
        color: midnightblue
      - value: 22
        color: orange
      - value: 23
        color: orangered
      - value: 24.5
        color: red