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
-3
votes
1 answer
Grab current stock price for iPhone app
How would I be able to have a user enter a stock ticker and using real time data, display the current stock price for that ticker on an iPhone app?

jimCTN11
- 1
-3
votes
1 answer
Real time tick by tick stock quotes using an IP and port
I want to retrieve real time stock market data from a server with an IP address and port.
What information is out there for acquiring this data?

KRIISH
- 1
- 2
-4
votes
0 answers
How do I append a dictionary with random prices from original starting point
Imagine I start with 5 stocks
dict1 = {'BA':57.0, 'QQQ':545.5, 'AAPL':150, 'SPX':245.5, 'JPM':150, }
how can I increase the dictionary to hold say 500 random prices for each asset from the original starting point?
so I get;
BA: 57.0, 58.2, 59.6,…

Bugsy
- 49
- 2
- 8
-4
votes
2 answers
Using Regex to separate Asian market numerical stock tickers
Pulling some trading data and having issues using regex to separate tickers and percentage of holding
Inputs
"94324.13%"
"007007.13%"
"0354202.91%"
Desired Output
"9432|4.13%" (ticker is 4 numbers)
"00700|7.13%" (ticker is 5 numbers)
"035420|2.91%"…

Alex Wu
- 1