31 lines
798 B
YAML
Executable File
31 lines
798 B
YAML
Executable File
#-------------------------------------------
|
|
# Finance Package Configuration
|
|
# Description: Tracks stock prices using Yahoo Finance integration
|
|
# Last Updated: 2023-11-15
|
|
#
|
|
# Integration: Yahoo Finance
|
|
# Documentation: https://www.home-assistant.io/integrations/yahoofinance/
|
|
#
|
|
# Stocks Tracked:
|
|
# - Tesla (TSLA)
|
|
# - Apple (AAPL)
|
|
# - Amazon (AMZN)
|
|
# - Microsoft (MSFT)
|
|
#
|
|
# Update Interval: Every 4 hours
|
|
#
|
|
# Original Repo: https://github.com/CCOSTAN/Home-AssistantConfig
|
|
# Blog Post: https://www.vcloudinfo.com/2020/10/how-to-track-stocks-in-home-assistant-using-a-custom-component.html
|
|
# Follow me on https://www.vcloudinfo.com/click-here
|
|
#-------------------------------------------
|
|
|
|
yahoofinance:
|
|
scan_interval:
|
|
hours: 4
|
|
symbols:
|
|
- TSLA
|
|
- AAPL
|
|
- AMZN
|
|
- MSFT
|
|
|