stockquotes

Downloading Stock quotes to App

限于喜欢 提交于 2019-12-03 21:32:35
I'm new to iOS programming and want to display stock quotes and stock details in the iPad app I'm designing. I am looking at two options Im looking at google finance or yahoo finance. How would I go about sending a url request to their sites and then handling the reply in Xcode? I see that yahoo have a YQL service but I can't wrap my head around how I would get it to work despite reading some yahoo documentation online so Im looking to avoid it. Ive had a look at the google api but I can't figure out how to integrate it and get it to request stock details. I've decided to go through the url

google finance api not working from 6/september/2017

半世苍凉 提交于 2019-12-03 17:50:39
问题 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 https://finance.google.com/finance/info?client=ig&q=SYMBOL&callback=?. Previously, i was using yahoo finance api and it was inconsistent. So, i switched over to google finance api. Could you please help me on this? Thanks, Ram 回答1: This url works. I think just the url changed from www.google.com to

Get stock quotes of NSE and BSE using web-service and parse it using json [closed]

試著忘記壹切 提交于 2019-12-03 10:14:58
Closed . This question needs to be more focused. It is not currently accepting answers. Learn more . Want to improve this question? Update the question so it focuses on one problem only by editing this post . I want to show all stock price of NSE and BSE on simple html page. I got information from google that i can call any web service that is already exist and they will give all information in json form. And then I have to parse that jason code. Now I want someone to provide me link by which i can call the webservice. And let me know how can i call that web service using jQuery. And how can i

page scraping to get prices from google finance

瘦欲@ 提交于 2019-12-03 09:12:11
I am trying to get stock prices by scraping google finance pages, I am doing this in python, using urllib package and then using regex to get price data. When I leave my python script running, it works initially for some time (few minutes) and then starts throwing exception [HTTP Error 503: Service Unavailable] I guess this is happening because on web server side it detects frequent page updates as a robot and throws this exception after a while.. is there a way around this, i.e. deleting some cookie or creating some cookie etc.. or even better if google gives some api, I want to do this in

Retrieving stock updates using Yahoo Finance

佐手、 提交于 2019-12-03 09:01:04
Basically what i am trying do is retrieving stock quotes for specific company . In my code I am giving symbol of specific company( eg:FB ) in a textbox(symb) and when i click the button(getupdate) it should list out details regarding that specific stock which i enter the text box . Here's my code : <html> <head> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"> </script> <script> $(document).ready(function($){ $('getupdate').click(function() { var symbol = $('input[id=symb]').val(); \\For Example:FB var url = "http://query.yahooapis.com/v1/public/yql?q=select%20*%20from

stock quotes with javascript

◇◆丶佛笑我妖孽 提交于 2019-12-03 07:56:25
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 to work to get quote for any stock, or found a better way ? thank you. It took awhile but here is working code that uses Yahoo!'s YQL and jQuery: <script type="text/javascript" src="jquery-1.5.1.js"></script> <script type="text/javascript"> $(document).ready(function() { var symbol='goog'; var callback = function(data) { var price=data.query.results

Group OHLC-Stockmarket Data into multiple timeframes - Mysql

好久不见. 提交于 2019-11-30 09:46:05
I need to group stockmarket "1min" data with {Name, DateTime, Open, High, Low, Close, Volume} into different timeframes ie. "5mins/15mins/60mins" on MYSQL. Schema built on sqlfiddle - http://sqlfiddle.com/#!2/91433 . I found a link - Group OHLC-Stockmarket Data into multiple timeframes with T-SQL with similar requirement for MSSQL. I tried to follow the link - http://briansteffens.com/2011/07/19/row_number-partition-and-over-in-mysql/ , to get row_number(), over, partition in mysql to solve the issue. I am a newbie to sql, can anyone please point me in the right direction? Andrej Mikulik I

Get historic prices by ISIN from yahoo finance

两盒软妹~` 提交于 2019-11-29 17:14:18
问题 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 goes, yahoo can only provide prices for stock ticker symbols, which I do not have. Is there a way to get for example for ISIN: AT0000609664 , which is the company Porr the historic prices from yahoo automatically via their api? I appreciate your

Group OHLC-Stockmarket Data into multiple timeframes - Mysql

你离开我真会死。 提交于 2019-11-29 15:20:58
问题 I need to group stockmarket "1min" data with {Name, DateTime, Open, High, Low, Close, Volume} into different timeframes ie. "5mins/15mins/60mins" on MYSQL. Schema built on sqlfiddle - http://sqlfiddle.com/#!2/91433. I found a link - Group OHLC-Stockmarket Data into multiple timeframes with T-SQL with similar requirement for MSSQL. I tried to follow the link - http://briansteffens.com/2011/07/19/row_number-partition-and-over-in-mysql/, to get row_number(), over, partition in mysql to solve the

Download history stock prices automatically from yahoo finance in python

生来就可爱ヽ(ⅴ<●) 提交于 2019-11-28 15:06:55
Is there a way to automatically download historical prices of stocks from yahoo finance or google finance (csv format)? Preferably in Python. Short answer: Yes. Use Python's urllib to pull the historical data pages for the stocks you want. Go with Yahoo! Finance; Google is both less reliable, has less data coverage, and is more restrictive in how you can use it once you have it. Also, I believe Google specifically prohibits you from scraping the data in their ToS. Longer answer: This is the script I use to pull all the historical data on a particular company. It pulls the historical data page