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
0
votes
1 answer
PHP file_get_contents error
I am building a stock analysis website to use stock information such as price history etc. I will implement some of my own algorithms once I get the data but I am getting trouble obtaining the historical data.The website is hosted on the free…

yot
- 11
- 4
0
votes
1 answer
saving stocks quotes in mysql database too slow
At the moment i'm trying to save stock data from loading csv files of yahoo. I created a database called stocks with that constitutes the ticker names of NASDAQ/NYSE/AMEX as tables ( about 6,5 K tables).
the problem ist the saving of the data i get…

sami_analyst
- 1,751
- 5
- 24
- 43
0
votes
2 answers
VBA code to get live stock index values
I'm looking to get live values for stock indexes, such as the Dow (DJIA) or Hang Seng Index (HSI).
These need to be generated from a (configurable) set of index symbols, and saved to VBA variables without any interaction with the sheets. Ideally…

Michael Mathews
- 21
- 1
- 6
0
votes
3 answers
C# XAML GUI Freezes Because of API Function
I have a program that has stock quotes pushed to me via an API. The program also has a front end, made in XAML, that freezes while this program is running (i.e. processing the information that the API is sending me). I've tried using…

jeev7882
- 1
- 1
-1
votes
1 answer
Hello, I am looking to get stock and divided data for a list of stocks in python
I am looking to get stock and dividend data for a list of stocks in python. This is what I have but am not getting any data.
import requests
from bs4 import BeautifulSoup
def get_stock_price(stock):
url =…

David Flenaugh
- 37
- 5
-1
votes
2 answers
How to let function run with for loop for other elements in list even if one element in the list gives out an error?
I am preparing a stock screener project based on technical analysis and want to pass a list of stocks in a for loop created under a function.
E.g. If the stock list has 15 stock codes but 1 stock in the list has a wrong code where price data cannot…

Sandeep Pai
- 3
- 1
-1
votes
1 answer
Function to export multiple yfinance stocks to csv
I'm trying to define a function to allow me to extract information on stocks over the past 12 months and export it to a CSV file. I'm not sure where it's going wrong as it prints 'bad'. Any thoughts?
Thanks.
import pandas as py
import numpy as…

Reid
- 1
- 1
-1
votes
2 answers
How can i fetch only this Symbol column from my Dataframe?
I have a Bhav Copy Dataframe which is I Downloaded from NSE website.
And In this Dataset I just wanna print Symbol Column.
print(bhav_copy['SYMBOL'])
but it is giving me this error,
Sorry, I don't know what to say about this column name series in…

Krishna Gupta
- 166
- 1
- 10
-1
votes
1 answer
Making a form transparent while maintaining text clarity
So I've been messing around making a stock tracker for funsies, I've only got 1 more hurdle to overcome. That is: I want to make basicly everything in the app transparent except for text and borders.
I've tried various things I came across while…

borovanhout
- 7
- 5
-1
votes
1 answer
Is there a cleaner way to write this code and how would you get around keyerrors and list index errors?
I'm fairly new to actually coding Python.
I'm working on a stock program for myself as my first Python challenge.
After 3000+ lines of code and a 9-second delay to print my analysis, I have finished the basic code to analyze one stock.
I'm working…

Anon Omiss
- 117
- 1
- 1
- 6
-1
votes
1 answer
How to use ImportXML function to import content from financial stock webpages
So... 90% of the time ImportXML seems to work just fine for me, but now I'm struggling with the below 2 cases... I don't know if they are all the same problem or not, or if they are 2 different problems.
CASE ONE - YAHOO
Go to this page:…

Nick R
- 1
- 1
-1
votes
1 answer
Howt to convert a stock market HTML page for data analysis in Python?
I have been analysing the stock market for my work and I normally manually input the data into Excel for analysis. Recently I have been touching on using Python for data analysis and web scraping. I wish to extract the data from the Hong Kong…

Wilson Cheng
- 1
- 1
-1
votes
1 answer
Esper - Aggregations of sub-timewindows
I have a stream of market data events with (Price, Trade Time) properties.
I want to calculate the simple average for past time windows for every new market data event. Simple average = Sum of trade prices / # of events
However, the tricky part is…

yuu
- 1
-1
votes
2 answers
Handling duplicate data when parsing huge XML feeds
I'm writing a component which parses an xml feed with stock quotes and saves the result in a database. The problem is fairly straightforward, except that feed can not be read incrementallly. That is, there is no way to specify that you only want the…

Björn Lindqvist
- 19,221
- 20
- 87
- 122
-1
votes
2 answers
python pandas dict object is not callable, parsing json
After the deprecation of Yahoo Finance for pandas datareader, I have searched high and low after a replacement. After some thorough Googling, I decided I must try Alpha Vantage.
I found this video on how to get stockinfo from Alpha…

Excaliburst
- 143
- 1
- 4
- 15