You need to use JSONP in this case with the callback name JSONP_CALLBACK:
loadData() {
this.jsonp.get(this.url)
.map(res => res.json())
.subscribe(data => console.log(data));
}
url http://chartapi.finance.yahoo.com/instrument/1.0/NFLX/chartdata;type=quote;range=1d/json/?callback=JSONP_CALLBACK, callback=JSONP_CALLBACK.
, , bootstrap(App, [JSONP_PROVIDERS]) Jsonp angular2/http.