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
2
votes
0 answers
R Download financial information of German (DAX) companies with quantmod
I would like to download the financial data of companies listed in Germany and possibly of other countries. There is the package quantmod and the example works perfectly
getFinancials('GE')
viewFinancials(GE.f)
GE.f$IS$A
I would like to download…

PeterGerft
- 49
- 1
- 7
2
votes
1 answer
What are meaning of these short words?. (return value from google finance)
The return data from http://www.google.com/finance/info?q=NASDAQ%3aGOOG is
{
"id": "304466804484872" ,
"t" : "GOOG" ,
"e" : "NASDAQ" ,
"l" : "525.02" ,
"l_fix" : "525.02" ,
"l_cur" : "525.02" ,
"s": "2" ,
"ltt":"4:47PM EDT" ,
"lt" : "Jul 7, 4:47PM…

graz
- 49
- 1
- 6
2
votes
1 answer
Python, yahoo yql quote error
I have used the yql Console and have received an appropriate response. However, sending a python based query, I continue to have an error. First the console example:
select * from yahoo.finance.quotes where symbol in ("yahoo", "aapl")
I receive a…

Clayton
- 15
- 3
2
votes
2 answers
Data Manipulation in R, Stock Data Transformation
I would like to create a following data.frame from classic "time * OHLC" data format of exchange data.
Starting point is following data frame:
Date Time Open High Low Close
01/28/2002 0833 543.81 543.82 543.84 …

Johny
- 35
- 4
2
votes
1 answer
TSQL - Find the 1st or 2nd day of the week
I have a table of stock prices and need to get prices for the 1st day of each week. This SQL in the WHERE clause works well,
DATEADD(ww, DATEDIFF(ww,0,PriceDt), 0)
except when the market is closed on Monday. Labor Day is a good example. I thought…

user3786650
- 23
- 2
2
votes
5 answers
Get stock quotes of NSE and BSE using web-service and parse it using json
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…

Rikin Thakkar
- 1,268
- 3
- 13
- 27
2
votes
4 answers
Retrieving stock updates using Yahoo Finance
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…

Deepesh Shetty
- 1,116
- 3
- 18
- 43
1
vote
2 answers
Platform that runs scripts monitoring stock market activity? Possibly executes trades?
Are there any software platforms out there that can be used to run scripts that monitor stock market activity?
I would like to write a script to send myself alerts when certain market conditions occur. Ideally it would also have the ability to…

Chris Dutrow
- 48,402
- 65
- 188
- 258
1
vote
2 answers
How to use 'pd.melt()' function in a 'pd.MultiIndex' dataframe?
I'm pulling stock quote data from Yahoo Finance for multiple stocks in 'acoes', but the pd.melt() function is not returning the stock symbols, only the other data columns (result shown in the image).
import pandas as pd
import datetime
import…

Hugo Carvalho
- 13
- 3
1
vote
0 answers
Is there any endpoint of NSE API which gives Technical Indicators as JSON output?
I have been using https://www.nseindia.com/api/quote-equity?symbol=ABB endpoint for getting basic details of a stock symbol.
I have requirement of Technical Indicators such as RSI, MACD etc. Any help would be appreciated..

Mihir Chichria
- 13
- 3
1
vote
1 answer
How to obtain the last n rows of high-frequency tick data in an efficient way?
I have an in-memory table with 3 million records.
Part of the stock data is as follows:
How can I quickly get the last n rows of this table, say 35,000 rows?

Polly
- 603
- 3
- 13
1
vote
1 answer
What is TVC in "TVC:UKX" symbol on tradingview?
What is meaning of TVC in "TVC:UKX", "TVC:DAX" symbol on TradingView? On other Pairs it denotes the broker providing that quotes. But in this case I don't find any broker or Exchange named after "TVC". So what is this TVC on tradingview?

ATUL
- 11
- 2
1
vote
2 answers
C# Tick by tick stock data to Ohlc candles resample on different timeframe
I want to convert tick by tick data to 1, 5,10 minutes, 1 hour, 2 hours time frame based on time frame. Data looks like below every second data.
var source = new List()
{
new TickData{ Timestamp =…

Venkat B
- 73
- 4
1
vote
2 answers
Algotrading - store websocket data in database
I'm trying with Algo-trading. so I have WebSocket which has market data, I'm trying to store in the database. other modules read this stored database and make the buy/sell decisions.
what should be the best database option here considering it…

keerthan kumar
- 332
- 7
- 25
1
vote
1 answer
How to Find Date of a stock's ATH in Google Sheets
I have been trying to come up with the formula to give in 2 neighboring cells: 1.) the ALT of the stock and 2.) next the first cell, the date of the ATH value.
The example is the following:
table structure snapshot
I managed to address 1.) with the…

Homelander123123
- 11
- 1