Questions tagged [stockquotes]

The price of a stock as quoted by an exchange at a given time. May include additional information such as the latest bid price and bid lots, and/or ask price and ask lots.

255 questions
47
votes
6 answers

Download history stock prices automatically from yahoo finance in python

Is there a way to automatically download historical prices of stocks from yahoo finance or google finance (csv format)? Preferably in Python.
Bob
  • 9,535
  • 20
  • 81
  • 129
45
votes
4 answers

Getting data from Yahoo Finance

I read about the YQL, but I didn't understand how can I get some simple data (like company ticker, market cap, stock price, etc.), for ALL COMPANIES? And an additional question, how can I get all Yahoo Finance tables and theirs fields that can be…
Ilan
  • 949
  • 2
  • 11
  • 21
21
votes
4 answers

How to download intraday stock market data with R

All, I'm looking to download stock data either from Yahoo or Google on 15 - 60 minute intervals for as much history as I can get. I've come up with a crude solution as follows: library(RCurl) tmp <-…
aaron
  • 5,399
  • 10
  • 46
  • 68
16
votes
2 answers

Get historic prices by ISIN from yahoo finance

I have the following problem: I have around 1000 unique ISIN numbers of stock exchange listed companies. I need the historic prices of these companies starting with the earliest listing until today on a daily basis. However, as far as my research…
Carol.Kar
  • 4,830
  • 22
  • 98
  • 199
15
votes
2 answers

Pandas' EMA not matching the stock's EMA?

I am trying to use Python (with Pandas) to calculate the 20-day Exponential Moving Averages (EMA) of daily stock data for Intel (INTC). Pandas has a number of ways of doing this, and I've also tried stockstats, which runs on Pandas, but they never…
Rob M
  • 220
  • 1
  • 4
  • 15
15
votes
7 answers

Any good Finance API?

Yahoo! Finance feeds are pain in the ass. Google Finance API seems OK but don't know why I can't retrieve stock quotes information for Dow Johnes, NASDAQ, S&P... Works perfect with company quotes like YHOO, MSFT but don't gets full data for stock…
Otar
  • 2,489
  • 1
  • 19
  • 24
14
votes
1 answer

Get free historic stock market/exchange data (e.g. S&P 500, NYSE)?

I am developing an application that relies on stock market information. For the moment, I use Yahoo Finance CSV API. Unfortnautely OpenTick stopped its service, Google Finance API will soon, too. I have a list of stock symbols I am interested in…
Gnark
  • 3,690
  • 7
  • 30
  • 44
13
votes
3 answers

Are there any good client-side stock charting libraries out there?

I would like to display interactive financial stock charts on a website, something like Google or Yahoo finance. I saw some recommendations on this thread looking for stock charting component but many of the suggestions are commercial, or require…
noli
  • 15,285
  • 7
  • 41
  • 59
13
votes
5 answers

How to fetch stock price from Australia Stock Exchange

How can I fetch a stock's price from the Australian Stock Exchange (ASX): www.asx.com.au/ Actually our team is working on a corporate site which would be listed soon at Australian Stock Exchange. I need to display details about the stock (including…
user177913
  • 365
  • 2
  • 7
  • 19
11
votes
2 answers

Real time stock price R

I am trying to do some market analysis using R. Is there any way to get real time stock quotes at minutely intervals using a package? I am familiar with quantmod and have used the getSymbols() function, however, all data I am able to mine is 15…
user3731327
  • 111
  • 1
  • 1
  • 4
10
votes
3 answers

get stock data using python - not using quandl

I have no problems using the R package quantmod, which uses Yahoo to obtain stock data like so: get_stock_prices <- function(target, return_format = "tibble", ...) { # Get stock prices print(target) stock_prices_xts <- getSymbols(Symbols…
cs0815
  • 13,862
  • 32
  • 107
  • 253
9
votes
6 answers

stock quotes with javascript

Does anyone know a way to get live - or 20 minutes delayed - stock quotes using javascript? I looked at the google api at http://code.google.com/apis/finance/docs/finance-gadgets.html but it was very hard to get a working example. has anyone got it…
Abraham Adam
  • 605
  • 1
  • 5
  • 14
9
votes
8 answers

google finance api not working from 6/september/2017

I was using google finance api to get the stock quotes and display the contents on my site. All of a sudden from 6/september/2017 this stopped working. The url i used to get the stock quotes is…
8
votes
1 answer

AlphaVantage - List of all tickers on an Exchange

I recently started exploring Alpha Vantage. I was wondering if there is an endpoint which would list all the tickers being traded on an exchange. Thanks in Advance.
user1142317
  • 395
  • 3
  • 18
7
votes
5 answers

How Safe Is It To Scrape Stock-Price Information

As far as I can see, there are no developer-API services for stock-price information with the following stipulations: Free or low-monthly cost ( Ability to ship code which uses the service to multiple parties (e.g. an iPhone app) No…
Nexum
1
2 3
16 17