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.

289 questions
49
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
  • 10,741
  • 27
  • 89
  • 143
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
  • 989
  • 2
  • 12
  • 22
22
votes
3 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
  • 298
  • 1
  • 4
  • 18
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
  • 6,339
  • 12
  • 54
  • 80
17
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,581
  • 36
  • 131
  • 264
15
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
  • 533
  • 1
  • 8
  • 20
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,561
  • 1
  • 20
  • 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
  • 4,080
  • 7
  • 33
  • 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,927
  • 8
  • 46
  • 62
13
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
  • 131
  • 1
  • 1
  • 4
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
  • 465
  • 2
  • 8
  • 19
11
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
  • 16,751
  • 45
  • 136
  • 299
10
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
  • 635
  • 1
  • 6
  • 16
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
4 answers

Webscraping NSE Option Chain data in Python

In this code I'm trying to fetch NSE option chain data via Python code. Tool - Spyder4 Python - 3.7 CODE IS NOT THROWING ANY ERROR ,I don't know what I'm doing wrong. PRINT 1 is giving my proper output as JSON data but PRINT 2 & PRINT 3 is not…
NiftyZindabad
  • 81
  • 1
  • 1
  • 2
1
2 3
19 20