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
1
vote
1 answer

C#: Unable to get Historical Yahoo data (one day interval) for maximum range

I have used below Yahoo API to get historical data for, Index: GDX Range: max Interval:…
1
vote
2 answers

JS Send notification based on user settings

I'm building a basic stock watcher application - let's call the currently-watched stock N. When the stock moves by X%, trigger a notification / event. X is defined on a per user basis. The server holds the stock's current price, alongside the users…
Life
  • 67
  • 1
  • 6
1
vote
1 answer

How to best use socket.io and pub/sub to create connection to API call - Nodejs

I have created my first application of Nodejs. I am using socket.io and express. I tried this tutorial: https://socket.io/get-started/chat/ and I find emit is what I might need not sure. My application shows stock tickers, I am using API's, I have…
Murlidhar Fichadia
  • 2,589
  • 6
  • 43
  • 93
1
vote
1 answer

Quandl wiki data different than Yahoo or Bloomberg data

Does anyone notice quandl WIKI or EOD data are different than Yahoo or Bloomberg? I notice this when I was comparing data providers, which I am using AAPL as a test. AAPL split its stock 7 for 1 on Jun 9, 2014, so I think it is an ideal candidate to…
liunan
  • 21
  • 2
1
vote
0 answers

Get Stock quote using GoogleFinance for date and time

I know that we can get stock quote from google finance and there are various attributes and period variables but I couldn't find any syntax to fetch stock prices for a past date and time. for example if I want to understand variance or pattern of a…
Ankit Agarwal
  • 111
  • 1
  • 1
  • 4
1
vote
2 answers

Query to retrieve stock quotes variation from a single day

I'm quite new YQL and i've found the query to retrieve a single quote from a stock select * from yahoo.finance.quote symbol = "YHOO" and another query to get this same information but on date range select * from yahoo.finance.historicaldata symbol =…
Ramon Moraes
  • 477
  • 7
  • 23
1
vote
1 answer

Is there a python module for the european stock markets?

I'm looking to get stock quotes from the oslo stock exchange, but the known modules like google finance (which only covers NYSE and NASDAQ according to its project page) and yahoo-finance does not provide this functionality. I though that…
exceed
  • 459
  • 7
  • 19
1
vote
0 answers

How to show current stock price instead of yesterday's close price

I am using this http://community.rightpoint.com/blogs/viewpoint/archive/2014/02/25/how-to-display-stock-information-in-sharepoint-2013.aspx to display stock price on our sharepoint site. However, for past few days it only displaying the day before…
Ninja Cowgirl
  • 10,421
  • 8
  • 33
  • 41
1
vote
0 answers

VBA Stock info retrieval into Excel

first off, I have to admit I'm not very good at VBA. I've tried to adapt the code from this and this site to download the information I need on a list of given stock tickers. I have a list of the tickers in column A of sheet "data" and want the…
Error1000
  • 21
  • 3
1
vote
2 answers

how to derive the overall implied volatility (IV) of an option chain

Derivatives of the Black-Scholes equation give us delta, IV, and other "greeks" for each individual options contract ( aka the equations to derive implied volatility for an option are very easy to come by ). Question:Q1: How do brokerages combine…
1
vote
1 answer

Limit of multiple Quote in a finance google API call

I have thousands of stock symbol and for real time prices requesting finance google API, as an example http://finance.google.com/finance/info?client=ig&q=AAPL in the above I am getting price of AAPL, so I am considering it like single HTTP request…
user001
  • 53
  • 11
1
vote
0 answers

Selecing Random Stocks from a list and retrieving the data

I am trying to write a small program in R that will randomly select a stock from the NYSE and display that stock's YTD information in a data.frame. I currently have: Stock.List<-data.frame(StockListNew) colnames(Stock.List)<-c("Number", "Ticker",…
Dan Foley
  • 11
  • 1
1
vote
1 answer

retrieve international investement fund data

I am trying to get financial data on bonds and funds not traded in the US. Example. This is my code: import pandas.io.data as web from datetime import datetime end = datetime.now() start = datetime(end.year - 5, end.month, end.day) df =…
DaCoEx
  • 303
  • 1
  • 7
1
vote
1 answer

Retrieve JSON data returned from GOOGLE FINANCE API URL in android

I am using the following URL to get quotes information of any company. http://finance.google.com/finance/info?client=ig&q=bom:ranbaxy (here ranbaxy is the company). what website or url returns is given below. [ { "id": "672832" , "t" : "500359"…
1
vote
1 answer

How do I use Yahoo's YQL to get a stock price on a specific exchange?

I'm trying to use Yahoo's YQL to find a stock price on the Madrid stock exchange. I have a query that works for looking up ARM's price on the London Stock exchange: select * from yahoo.finance.quotes where symbol="arm.l" but when I try a similar…