Edit: It looks like my main problem now is that I can\'t seem to display async data from an object. I have a promise containing the data object, and when I use
I think you are making this too complex, and just need to do something like this.
this.name = this.stock.getStockData(this.ticker, http) .then( val => val.Name )
and
<h2>{{name.Name | async}}</h2>