Tagged Questions
1
vote
1answer
48 views
Correlating arrays and nested for loop in Pandas (stock portfolio analysis)
I'm trying to create a program in Python, in which the user inputs a number of stock tickers and a desired date range; the output would be a graph of daily cumulative returns of the portfolio in that ...
0
votes
1answer
33 views
Inputting stock tickers into Pandas and producing a table of returns
Complete beginner here.
I'm trying to write a program in Python which takes a user input and plugs it into a Panda block of code to produce a table of stock prices in a date range.
So far, my input ...
-2
votes
1answer
60 views
How to estimate the weight of a stock with help from returns? - R [closed]
this might be superbasic but I am fairly new to R.
I wonder how to estimate the weight of a stock in a portofolio, based on the returns from multiple stocks in the portfolio as well as the portfolio ...
0
votes
1answer
823 views
API to download all the stock option quotes realtime
I want to fetch Stock Option Data for all the traded stock symbols periodically every day. Is there an API(paid or free) to do that ? I tried yahoo finance (using YQL) but it doesn't support certain ...
-1
votes
4answers
455 views
How can I calculate the average of a list of tuples in python?
I have a list of tuples in the format:
[(security, price paid, number of shares purchased)....]
[('MSFT', '$39.458', '1,000'), ('AAPL', '$638.416', '200'), ('FOSL', '$52.033', '1,000'), ('OCZ', ...
-3
votes
1answer
380 views
Setup Interactive Brokers C++ API as Console application
Is there a way that I could setup the C++ api not as a Windows Form application, but as a console application. An example of how this might work:
if(AAPL.price == 250)
{
AAPL.buy(500);
}
I ...
0
votes
4answers
640 views
Calculating IRR in ruby
Can anyone help me with a method that calculates the IRR of a series of stock trades?
Let's say the scenario is:
$10,000 of stock #1 purchased 1/1 and sold 1/7 for $11,000 (+10%)
$20,000 of stock #2 ...
0
votes
1answer
208 views
Google Docs Spreadsheet Info for Finance stocks
Im trying to have dividend payable dates, or ex-dividend dates populate in the cell next to a ticker. Anyone ever done this? Does not seem I can find this one.
4
votes
3answers
798 views
Is there an API for searching Stock Symbols based on Company Names?
This is a similar question to Stock ticker symbol lookup API however that was never answered to the standard I think is needed for a commercial application.
The problem is this: Given a company ...
1
vote
0answers
557 views
Global stock details search API
Is there any available API out there which would allow me to search for particular listed companies depending on a given string? Eg. a search for "google" would return the company name, stock exchange ...
2
votes
1answer
270 views
Where to get free detailed historic data e.g. with interval <1 minute
I am looking for a free source of detailed stock data (bid and ask prices) with an interval of <1m. This is for testing out trading theories - therefore does not have to be live nor up to date. I ...
2
votes
2answers
1k views
Get Google or Yahoo API live option price
Is there a way to get the live options information from Yahoo or Google's API. By options information I mean: call, ask volume. I basically need the information on this page
thanks for your help!
0
votes
1answer
377 views
retrieve stock numbers via some data feed
Is there any data feed, xml or api that will allow you to retrieve all the stocks (maybe limited to USA) and their current prices (not realtime). I know I can hit google or yahoo to get the price of ...
12
votes
8answers
1k views
Finding the min max of a stock chart
Are there any specific algorithms that will allow me to find the min and max points in the picture above?
I have data in text format so I don't need to find it in the picture. The problem with ...
3
votes
2answers
2k views
Java pattern recognition API for stock market
Does someone know where I can find a Java API dealing with pattern recognition for the financial market ? I've already had a look to TA_LIB, but it's not exactly doing what I want (dealing mostly with ...
2
votes
1answer
479 views
Is there a free or relatively cheap stock market holidays api?
We're developing a trading app where one can enter previous trades including date and time of the trade. For validation purposes I need to know if a stock exchange was open on the day the user ...
11
votes
3answers
1k views
Building a stock market trading game in RoR, what libraries are available?
I'd like to build a relatively simple online stock trading application (in RoR). It would just be a game so no real trades- just an online simulation based on real market data.
A good example being ...
1
vote
2answers
492 views
google finance stocks day range
How can I get the day range of any stock symbol? http://finance.google.com/finance/info?client=ig&q=NASDAQ:MSFT gives me a bunch of info but only want the high and low of the day. I looked into ...
0
votes
2answers
492 views
Get complete stock list for specific index
Just wondering what kind of free finance API's are out there. I'm looking for something where I can specify the index and get a list of all the companies, by ticker symbol, that are included in that ...
16
votes
9answers
23k views
How to get a complete list of ticker symbols from Yahoo Finance?
I've googled endlessly for a method of getting a complete (and daily updated) list of all Yahoo ticker symbols available through http://finance.yahoo.com
Yahoo has information for stocks, futures etc ...
3
votes
3answers
716 views
I need a financial stockquote api that will allow a dump of data
I need a good financial api that will allow me to retrieve a lot of stock data really quickly. I was using a csv format from yahoo, but it is very unreliable. I found it at: ...
5
votes
3answers
5k views
looking for an intraday stock quote feed
I have an application which needs to get intraday stock quotes on several assets (indices, commodities etc').
I want to be able to query the data in HTTP and get it as CSV/XML format.
Now, I'd like ...
3
votes
3answers
2k views
Possible to make a consistently successful stock market playing bot? [closed]
Who has created a bot to play the stock market and what kind of return did you see? I'm currently still in very alpha stages but I can play the stock market with play money and get some very nice ...
11
votes
4answers
7k views
Is there a World-Wide Stock Market real-time quotes Application Programming Interface (API)?
I'm looking for an Application Programming Interface which will allow me to access quotes and other data about multiple company symbols for at least the following stock exchanges:
American Stock ...
5
votes
2answers
717 views
Development Platforms for Financial modeling (What do the Quants use?)
Quantitative Analysts or "Quants" predict the behavior of markets to maximize profits. I am interested in the software that they use to accomplish this. Are there development platforms, libraries, ...
1
vote
1answer
224 views
How can I use Math::Business::EMA with DBI to calculate exponential moving averages in Perl?
Script pulls data from mysql:
$DBI::result = $db->prepare(qq{
SELECT close
FROM $table
WHERE day <= '$DATE'
ORDER BY day DESC
LIMIT $EMA
});
$DBI::result->execute();
...
1
vote
4answers
2k views
I need free index/fund/stock end of day quotes in CSV
I need a (free or cheap) source for end-of-day stock/mutual funds/index values. Major world indexes & European stocks are my primary interest. I keep seeing that Yahoo/Google/Microsoft offer this ...
1
vote
1answer
280 views
How to reuse results with a schema for end of day stock-data
I am creating a database schema to be used for technical analysis like top-volume gainers, top-price gainers etc.I have checked answers to questions here, like the design question. Having taken the ...
2
votes
7answers
2k views
How to get the data for intra-day candlestick charts for stocks on eg Nasdaq
For a learning exercise, i'm wanting to create candlestick (stock) graphs for stocks using zedgraph.
Now on google finance, i can get daily open-high-low-close data which is perfect for making these ...
1
vote
2answers
273 views
Is it possible to get the index of a exchange using Finance::Quote?
I need to get the index of a exchange like NASDAQ rather than the price of a specific stock in that exchange. I suppose that Finance::Quote will come to the rescue , but after a quick go-through of ...
1
vote
2answers
1k views
google finance tools on my website?
i am on the process of building a website execlusively for trading purposes. including live quotes and level 2 quotes. charts. user protofollio with automatic updates. news and so on.
am i allowed to ...
2
votes
2answers
1k views
How to query Open-high-low-close (OHLC) data from SQL Server
I'm trying to retrieve data for a Open-high-low-close (OHLC) chart directly from the database, it's the kind of chart you see of stocks. Is this possible, and if, how?
I have a table like this ...
3
votes
3answers
506 views
Getting technical data through API's
I have a friend who’s blind that does some stock trading. Unfortunately all the technical indicators such as moving average, resistance, and support levels are shown in charts on the major discount ...
50
votes
12answers
52k views
Stock ticker symbol lookup API [closed]
Is there any sort of API that just offers a simple symbol lookup service? i.e., input a company name and it will tell you the ticker symbol? I've tried just screen-scraping Google Finance, but after a ...
11
votes
5answers
11k views
Webservice to get stock quotes? [closed]
I want to create a website similar to Yahoo finance, but much less complex for an independent study.
I will be using Java to do this and would like to get stock quotes through a web service as part ...
52
votes
18answers
24k views
source of historical stock data
I'm trying to make a stock market simulator (perhaps eventually growing into a predicting AI), but I'm having trouble finding data to use. I'm looking for a (hopefully free) source of historical stock ...
4
votes
7answers
791 views
best language or program for finding patterns and statistical analysis? [closed]
I have a program that downloads basic historical stock data from yahoo and puts it into an SQLite database. I'd like to be able to perform queries such as finding the moving average, and determining ...
23
votes
5answers
26k views
Free historical intra-day stock data? [closed]
I know you can get historical end of day stock data from both Google and Yahoo, and I'm able to get delayed quotes from Yahoo. I'm looking for free intra day historical stock data, ideally with data ...