23 lines
669 B
Markdown
23 lines
669 B
Markdown
|
# Static JSON Yahoo Finance Provider
|
||
|
|
||
|
If you just want to provide a static JSON file as input containing symbols and quantities owned, this provider will use Yahoo Finance for pricing quotes for the symbols provided.
|
||
|
|
||
|
### Example data/staticjsonYahooFinance-data.json
|
||
|
|
||
|
You can define many to many relationships, multiple YNAB accounts containing multiple types of securities using json arrays.
|
||
|
|
||
|
```json
|
||
|
{
|
||
|
"accounts":[
|
||
|
{
|
||
|
"ynabAccountId":"d54da05a-cs20-4654-bcff-9ce36f43225d",
|
||
|
"securities":[
|
||
|
{
|
||
|
"symbol":"SPY",
|
||
|
"quantity":420
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
```
|