StockMAPI/data/settings.yaml.template

35 lines
918 B
Text
Raw Normal View History

2025-02-11 11:18:34 -06:00
# StockMAPI Configuration Version
2025-02-11 10:58:33 -06:00
version: "1.0"
# Database Information
database:
address: "db:3306" # If hosting in Docker, keep it this way.
2025-02-11 11:18:34 -06:00
name: "stockmapi" # Database Name
user: "stockmapi" # MYSQL Username
2025-02-11 10:58:33 -06:00
pass: "changeme" # MYSQL Password
# Stock updater information
updater:
frequency: 15 # API Updater Cooldown in MINUTES
marketstack:
key: "changeme" # Market Stack API Key
alphavantage:
key: "changeme" # Vantage Alpha API Key
# API Endpoint information
api:
port: 3080
endpoint: "v1"
2025-02-11 11:18:34 -06:00
# General StockMAPI Information
2025-02-11 10:58:33 -06:00
general:
api: "alphavantage" # API Used in Production
method: "eod" # API Entrypoint Method
interval: 15 # API Request interval in MINUTES
historical: # API Historical Data
from: "2000-01-01"
to: "2025-01-19"
tracked: # A list of tracked stocks
- NVDA
- TSLA
- RSP