We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is correct this? Why don't I see any monitored conditions? in configuration.yaml sensor:
in lovelace: type: entities title: Informazioni Stock entities:
The text was updated successfully, but these errors were encountered:
Please use code blocks for the code, but it seems to look ok. Is the sensor created at all? Any error in logs?
Sorry, something went wrong.
I solved it like this:
platform: avanza_stock stock: 745886 # ID del titolo azionario
platform: template sensors: avanza_stock_745886_change: friendly_name: "Variazione Prezzo" value_template: "{{ (state_attr('sensor.avanza_stock_745886', 'change') | round(3)) }}"
avanza_stock_745886_change_percent: friendly_name: "Percentuale Variazione" value_template: "{{ (state_attr('sensor.avanza_stock_745886', 'changePercent') | round(2)) }}"
avanza_stock_745886_total_volume_traded: friendly_name: "Volume Totale" value_template: "{{ (state_attr('sensor.avanza_stock_745886', 'totalVolumeTraded') | round(1)) }}"
Thank you
No branches or pull requests
Is correct this? Why don't I see any monitored conditions?
in configuration.yaml
sensor:
stock: 745886 # ID del titolo azionario
monitored_conditions:
in lovelace:
type: entities
title: Informazioni Stock
entities:
The text was updated successfully, but these errors were encountered: