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
0
votes
2 answers

Getting adjusted price information from Yahoo! Finance API for multiple symbols in one call

I would like to get the adjusted price (adjusting for splits and dividends) for a group of stock symbols using Yahoo! Finance. It looks like the historical prices call is limited to one symbol at a time. Could please let me know if there is a way to…
Ecognium
  • 2,046
  • 1
  • 19
  • 35
0
votes
1 answer

SQLite dynamic columns by date

I have an SQLite table of stock orders with the following columns: symbol date order_type ("Buy", "Sell", or "Hold") price amount What I would like to be able to is return a table with symbols running down the vertical axis, dates running…
Plastech
  • 757
  • 6
  • 17
0
votes
1 answer

Date error (pandas dataframe, numpy, matplotlib)

I am pulling stock prices from yahoo then i would like to chart them using matplotlib. This is one line of the dataframe that has date, open, close, high, low, adj close and volume ([Timestamp('2016-08-01 00:00:00') 31.299999 31.389999 31.129999…
0
votes
1 answer

Indentify stock prices trading under the 1 year estimate

At every quarter analysts give their price estimation for a given stock. Available for example on Yahoo finance as 1 year estimate. I want to find a way (build a scanner?) that allows me to have a dashboard of stocks that will announce their…
Wazaa
  • 23
  • 5
0
votes
2 answers

Storing stock quotes data from this object into python panda data frame

I have a python object imported from win2com which contains stock price quotations. numbars is the number of bars in the stock history. quotations is the object that contain the stock quotations. To retrieve and store the prices and dates, the…
user3848207
  • 3,737
  • 17
  • 59
  • 104
0
votes
1 answer

current stock price of Dow Jones index as screenshot of by telegram bot

I am creating a telegram bot which will send me current stock price of the Dow Jones. The process is working in this way: it takes a screen shot from Google, saves it, then cuts it and sends it as message. But what if someone 2 or more people will…
egorkh
  • 478
  • 8
  • 24
0
votes
1 answer

google finance python package not working for some stocks

This is functional code for retrieving stock prices. from googlefinance import getQuotes import json import re def get_last_trade_price(TICKER): Asset = json.dumps(getQuotes(TICKER)) raw = (json.loads(Asset)[0]["LastTradePrice"]) raw =…
prashanth manohar
  • 531
  • 1
  • 13
  • 30
0
votes
1 answer

Plotting 2 columns from multiple csv files from NASDAQ in a directory

I am trying to make a program where I read multiple csv files in a directory. The files has been downloaded from http://www.nasdaqomxnordic.com/aktier/historiskakurser The first row is sep= and it is skipped. The separator is ';' The problem is that…
Hennng
  • 19
  • 6
0
votes
1 answer

fix_yahoo_finance module (fix-yahoo-finance 0.0.18) - get data for all available dates

I am actively using the fixed yahoo finance module by Ran Aroussi (https://pypi.python.org/pypi/fix-yahoo-finance) to gather (daily) stock quotes. This is done by the following piece of code: data = yf.download(ticker, start=start_date,…
Willem
  • 593
  • 1
  • 8
  • 25
0
votes
3 answers

python pandas - how to convert date wise stock csv to stock wise csv files

I have date wise stock csv files like below. EQ070717.CSV EQ070716.CSV EQ070715.CSV [...] They have stock data in this…
SarkarG
  • 687
  • 1
  • 8
  • 30
0
votes
0 answers

JSON issues in Linux, but not in iOS

I am trying to get stock information for a particular ticker, and having issues with implementing the code in Linux Ubuntu in a virtual environment. I am getting the error below: ValueError: No JSON object could be decoded What's strange is I am not…
troymyname00
  • 670
  • 1
  • 14
  • 32
0
votes
1 answer

javascript canvas: draw moving average line with curves

So basically, I want to draw a curved average line over a certain amount of points of a time-series line chart. Like this: I want it to span the entire length of the chart but I can't figure out how to calculate the start and end points because the…
Christopher Reid
  • 4,318
  • 3
  • 35
  • 74
0
votes
1 answer

Getting JSON from YQL using jQuery not working

I'd like some help with fixing this code, which attempts to return JSON that should contain something like this: { "col0": "4-Jan-17", "col1": "115.85", "col2": "116.51", "col3": "115.75", "col4": "116.02", "col5": "21118116" }, { "col0":…
0
votes
1 answer

Graphing in Tkinter frame, updating info in Tkinter

So I am currently working on a basic stock program, and I have been able to get my graphs (of stock data from the last month) on my tkinter window any tips on how to actively update my tkinter window would be great! (FYI I am very new to…
Addison
  • 403
  • 8
  • 24
0
votes
2 answers

excel 2010 yahoo historical stock query stopped working as of 5/9/17

I have been using the following Excel 2010 VBA code daily in a number of programs to download historical stock data for many years until last week when stopped working (ERR 1004 - unable to open in line 20). I have searched the internet for many…