Status
{{ status$ | async | json }}
Lookup
@if (symbols$) {
@let symbols = symbols$ | async;
@for (item of symbols; track item.symbol) {
- {{ item.name }} ({{ item.symbol }})
}
}
Quotes
@if (quotes$) {
@let quotes = quotes$ | async;
@for (quote of quotes | keyvalue; track quote) {
-
{{ quote.key }}: {{ quote.value.marketPrice }}
{{ quote.value.currency }}
}
}
Historical
@if (historicalData$) {
@let historicalData = historicalData$ | async;
@for (
historicalDataItem of historicalData | keyvalue;
track historicalDataItem
) {
-
{{ historicalDataItem.key }}:
{{ historicalDataItem.value.marketPrice }}
}
}
Dividends
@if (dividends$) {
@let dividends = dividends$ | async;
@for (dividend of dividends | keyvalue; track dividend) {
-
{{ dividend.key }}:
{{ dividend.value.marketPrice }}
}
}