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.
Questions tagged [stockquotes]
289 questions
-1
votes
1 answer
How to retrieve historical stock data with python?
I've been looking around for a stable function to fetch stock data in my program. Yahoo_finance is broken completely now, even the current day data retrievers return a None type. Previously I've had success with a stock downloader written by Andrew…

user8435778
- 1
- 1
- 1
-1
votes
1 answer
Python How to retrieve a stock's last current stock price from the dictionary and put it into a variable?
I am trying to obtain a stock's current price, and then put it into a variable to run if / else statements on. I have used the Google API to retrieve current stock prices, but I am unable to figure out how to put it into a variable. Thanks!
import…

Jacksoncw
- 23
- 4
-1
votes
2 answers
Fetching data Yahoo Finance
I am currently creating a program where I want to fetch stock data from yahoo finance using the yahoo_finance module. However, I want to fetch data for 4 stocks using what i assume would be a loop. Here's the basic structure I thought of using:
from…

ghostfkrcb
- 11
- 3
-1
votes
2 answers
Are there any easy ways to extract data in Balance Sheet/Income Statement?
I try to extract qualitative data from companies' balance sheet / income statement. They are excel(.xls) file.
Unfortunately, the content structures vary from one company to another.
For example,
To extract revenue value:
In company A, it locates…

user1560335
- 79
- 2
- 11
-1
votes
2 answers
How do I get market data with MQL4?
I am using metatrader4 and I can get any information 'but' the market data from btc-e http://docs.mql4.com/constants/environment_state/marketinfoconstants
I.E.
double pending = MarketInfo(Symbol(),MODE_PENDING);
MessageBox(
…
user3766148
-1
votes
1 answer
Excel errors vanish when I manualy enter formula
SO I'm trying to build a growth at a reasonable price screener, given a list of all stocks on the NYSE, that reads in and fills my column A with the ticker and B with the company name. The next columns use the SMF add-in from Yahoo and pulls data,…

user3798390
- 1
- 1
-1
votes
1 answer
Bloomberg real-time data with lot sizes
I am trying to download real-time trading data from Bloomberg using the api.
So far I can get bid / ask / last prices successfully but in some exchanges (like canada) quote sizes are in lots.
I can query the lots sizes of course with reference data…

Stylus
- 89
- 8
-2
votes
1 answer
How do I retrieve the information about the maximum and minimum price of a stock just during the after hours, or the pre-market?
How do I retrieve the information about the maximum and minimum price of a stock just during the after hours, or the pre-market? For example, I can use the formula =GOOGLEFINANCE("TSLA";"high";"02/02/2022") which will retrieve the maximum price of…
-2
votes
1 answer
Import Tradingview data to google sheets
I've tried to import RSI from trading view to google sheet but I can't.
The formula I used :
=IMPORTXML("https://www.tradingview.com/symbols/NASDAQ-AAPL/technicals/","//div[@id='technicals-root']/td[@class='cell-2-juHm8n']")
Please help!

Chris
- 1
- 1
- 2
-2
votes
5 answers
stock quotes for android
Is there a way to download and parse stock quotes from yahoo or google using the android platform?
Thanks

locoboy
- 38,002
- 70
- 184
- 260
-2
votes
1 answer
Stock Market Data Analysis using Hadoop
I am creating a project to analyze stock data using Hadoop for my college project. I have created the cluster on Google cloud using Cloudera manager.
I am a complete beginner. From what I have researched, I need to obtain an API to get the data…

Shubham Jain
- 11
- 3
-2
votes
1 answer
How to Obtain Google Quotes in KMyMoney?
In order to retrieve the stock quote from Google Finance in KMyMoney do the following:
Goto https://finance.google.com and obtain the symbol, example "NASDAQ:GOOG"
Open KMyMoney, goto Settings->Configure kMyMoney->Online Quotes
Click on the "New"…

Suresh PB
- 169
- 1
- 2
- 16
-2
votes
2 answers
Incorporating a php variable into a url
Hi I am writing a program were I am sending an http request to a website in order to get a csv file. However I am doing this multiple times using a loop and I need it to change according to the variable I am inputting.
$data_file =…

user3385861
- 13
- 1
-3
votes
1 answer
Uptodate (2020) ways of retrieving live and historical stock data to Excel/VBA
I am researching methods for getting stock data to Excel via VBA. Most of the tutorials and articles about it seem to use googlefinance, however, I would like to know other methods and possibly the most recommended one for creating a spreadsheet…

Alexandre Pazolini Dibbe
- 7
- 1
- 4
-3
votes
1 answer
pandas get closing day price from time series data
I have some time series data in a pandas data frame:
prices.head()
Time A B C D
0 2012-01-02 08:00:30 NaN 47.1650 31.51 58.16
1 2012-01-02 08:01:00 NaN 47.2400 31.48 58.19
2 2012-01-02 08:01:30 NaN 47.2750…

Donbeo
- 17,067
- 37
- 114
- 188