node.js - Getting stock quote from Yahoo Finance API with ISIN -


i'm building node.js app , i'm facing little problem.

i want price of stock on realtime yahoo finance based on isin of stock.

i'm getting price using symbol of stock (ex: aapl apple inc.)

this code:

var stock_url = "http://finance.yahoo.com/d/quotes.csv?s=aapl&f=a";  request(stock_url, function (error, response, body) {      if (!error && response.statuscode == 200) {           var stock_data = body;         console.log("yahoo finance api: ", stock_data);           }; }); 

thanks!


Comments

Popular posts from this blog

php - Permission denied. Laravel linux server -

google bigquery - Delta between query execution time and Java query call to finish -

python - Pandas two dataframes multiplication? -