The stocks tag has no wiki summary.
1
vote
1answer
49 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
34 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 ...
0
votes
1answer
16 views
Where can I find an API for obtaining an historical time series of stock prices
I am looking for an API that would give me daily closing stock prices (adjusted for splits and dividends) from a starting date to an ending date. As near as I can tell, the Yahoo API only gives ...
2
votes
1answer
107 views
R: Assigning variable to quintile on monthly basis
I am trying in R to indicate in which quintile a value of a variable is for every month of my data frame in this case based on volatility.
For each month I want to know for each stock if it is in the ...
1
vote
0answers
40 views
UIScrollView like Stocks-Widget
I did some research and I did find some things but they're not really what I'm looking for.
I want to make an UIScrollView that looks, feels and works exact as the stocks widget from Apple in the ...
-1
votes
1answer
74 views
Is there a way in C# to get a 'browser' to pre-process a WebRequest so you can work with the elements that you see when you 'View Source'
I want to make a webrequest to e.g. http://finance.yahoo.com/q?s=rb.l and extract the share price. However the text returned is before the browser has processed it and I need it processed first before ...
0
votes
0answers
44 views
Stock ticker website using either YQL or other api. Please need ASAP
Hi i need to build a website for a beginner web programming class that allows a user to input various stock symbols and then retriever their prices and prints them out an html table. I have tried to ...
0
votes
1answer
90 views
How is the Bollinger Oscillator Calculated?
The Upperband is calculated: Middleband + (D + sqrt(((close - Middle band)^2)/n))
And I know how to calculate the lower bollinger band and middle bollinger bands.
But there is an elusive indicator ...
0
votes
0answers
102 views
financial data feed API
I'm building a web page, as well as an application that needs financial data feed for stocks & commodities prices. The app is not for trading & the prices are only needed for reference ...
0
votes
1answer
66 views
How do I create the UI of the Stocks application on the iPhone?
I'm not interested in getting the stock data, but I want to create a smilar application that will have the exact same UI as Apple's Stocks application on the iPhone.
Does anybody know of a tutorial ...
0
votes
2answers
213 views
Python: Excel is being fed real-time stock prices. How to append prices every 10 min to csv?
Here is my python script:
from xlrd import open_workbook
from xlrd import xldate_as_tuple
book = open_workbook('C:/Users/.......Constantquotes.xlsx')
sheet0 = book.sheet_by_index(0) #Initializes ...
-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 ...
1
vote
2answers
150 views
STATA: how to get observation value 5 minutes ahead with gabbed time data
I got high frequency data from a limit order book in stata. Time does not have a regular interval, and some observations are at the same time (in milliseconds). For each observation I need to get the ...
19
votes
0answers
6k views
Advice on the implementation of a real-time trading system [closed]
I would love to have some advice on the implementation of a real-time trading system. Mainly, my challenges lie in the real-time part - ensuring efficiency and reaching scale.
What the application ...
0
votes
0answers
103 views
Import tickers from csv into R
I'll preface this with an apology if this has already been answered elsewhere, and a thank you in advance-
I saw a similar post from GSee, but I don't believe it is exactly what I am looking for.
I ...
1
vote
2answers
231 views
How to identify rectangular price congestion in stock market? (C++)
In the field of stock market technical analysis there is the concept of rectangular price congestion levels, that is: the price goes up and down essentially never breaking the previous high and low ...
0
votes
2answers
68 views
MySQL PHP Querying and Listing as Table
I am trying to make a simple stock exchange application in PHP and have a completely working session-based login system. Now I am having an issue listing the stocks a user has in a table. When I run ...
1
vote
1answer
198 views
What is the best way to store stock quotes? [closed]
Suppose I have quotes looking like:
Open, High, Low, Close, Volume, Datetime
The base would be 1 minute quote.
I have around hundreds of symbols each having years of quotes. It's around 1-3 ...
0
votes
0answers
129 views
The Code Behind The Stocks App on the Iphone [closed]
I've almost completed my iPhone application that has a graphing capability. The code behind it generates CorePlot graphs and the code generates graphs upon user selection of certain information: The ...
3
votes
3answers
594 views
Pre-market stock quotes in Google Docs?
Retrieving stock market quotes in Google Docs is straightforward; e.g.:
=GoogleFinance("AAPL")
However, I'm wondering if anyone knows of a (perhaps hidden?) option for retrieving pre-market quotes ...
0
votes
2answers
762 views
Update Magento stocks with CSV and PHP script
Just found this great article: http://www.blog.magepsycho.com/updating-product-qty-in-magento-in-an-easier-faster-way/ but something works not very well.
When I have a CSV with the columns "sku" and ...
0
votes
2answers
95 views
How can one analyze the greatest percentage gain (burst) of numbers in sequence in an array?
There are algorithms for detecting the maximum subarray within an array (both contiguous and non-continguous). Most of them are based around having both negative and positive numbers, though. How is ...
-1
votes
2answers
323 views
Stock exchange server algorithm [closed]
I am looking for an algorithm that will calculate the intrinsic value of a stock based on the number of people buying /selling it and additionally consider the calls/puts to fluctuate the value of the ...
0
votes
1answer
288 views
HighStock setup
I am working with HighStock to create a chart for stocks of various companies. In the API, it does not tell me how to retrieve the data about a stock, it is simply retrieving it in a JSON file. I am ...
2
votes
2answers
2k views
How to Access Yahoo Finance YQL query with historical data
I'm new to YQL. Perhaps this is very trivial, but I couldn't quite figure this out. I know, for instance, how to query current stock data from Yahoo/YQL using the YQL console:
...
0
votes
1answer
828 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 ...
0
votes
1answer
73 views
Welle's Wilder Accumulative Swing Index PHP calculation - Cannot return proper value
I am trying to get the accumulative swing index for an aapl stock chart. I am using this calculation for reference.
...
1
vote
2answers
465 views
Creating a simple stock inventory program - 2nd attempt
I have asked this question before and followed the feedback as best as I could but I am still having one problem with storing the info that the user enters into the array.
Here is the first attempt:
...
1
vote
0answers
148 views
Data sources for stock screening? [closed]
I am trying to automatically compile a list of stock symbols that fit certain criteria, e.g. of all stocks that
have a minimum daily volume, or
are traded on NASDAQ and have a market cap of ...
0
votes
1answer
189 views
Magento - Mass updating of stock levels fails
I am trying to use following code with latest Magento V1.7.1:
http://www.sonassi.com/knowledge-base/magento-kb/mass-update-stock-levels-in-magento-fast/
I updates stock quantities from CSV file.
It ...
4
votes
2answers
2k views
Get free historic stock market/exchange data (e.g. S&P 500, NYSE)?
I am developing an application that relies on stock market information. For the moment, I use Yahoo Finance CSV API. Unfortnautely OpenTick stopped it's service, Google Finance API will soon, too.
...
0
votes
1answer
625 views
How to Backtest a Strategy in Python
I need to be able to determine whether a particular "trade" (indicated by "signal") resulted in a profit or loss by indicating a win or loss for each. I need Python to check the next location (the ...
1
vote
3answers
178 views
Python: Determining Profit and Loss
I need to be able to determine whether a particular "trade" (indicated by "signal") resulted in a profit or loss by indicating a win or loss. I need Python to check the next location in the High and ...
0
votes
0answers
45 views
CSS Module Hack [duplicate]
Possible Duplicate:
CSS Stock Ticker Fix
Since I am using a module stock ticker for my website I need to do a bit of hacking to make it look better. I have tried for a few days now to ...
1
vote
2answers
139 views
Display stock portolio in android with clojure
Would writing an Android stock portfolio display app in Clojure be a good learning exercise? I'm totally new to Clojure. My impression is that the functional programming style of Clojure might be ...
0
votes
2answers
123 views
Convert list of ticker symbols into list in Python
I need to convert a list of ticker symbols:
T
GOOG
KO
PEP
as examples in a a text file to a python list: ['T','GOOG','KO',PEP']. However, the current code I'm using keeps adding a space after each ...
3
votes
3answers
430 views
Python IndexError: list index out of range
I'm attempting to get Python to populate the lists with the closing prices of 500 stocks. While the code seems to work fine for just a few stocks, the large amount poses a problem. Python keeps giving ...
0
votes
2answers
93 views
How do I check lists of numeric data for a certain number using an “if” statement in Python?
Currently, I am attempting to retrieve numeric data from different CSV files. I then place that data in lists in Python. However, I'm struggling to get Python to determine if there is a value in each ...
0
votes
1answer
196 views
How do I loop through a list of stock tickers in Matlab?
This is the current code I'm attempting to use in order to loop through a "list" of tickers to load the corresponding file. However, Matlab doesn't seem to like to accept separate strings. I'm not ...
0
votes
1answer
206 views
Get the finance stocks key development links from Reuters
I am developing an android application which gives stock information using YQL. In the Yahoo interactive charts there are key developments as shown in the link: ...
3
votes
2answers
428 views
Is there a way to automatically get general info of many stocks like P/E ratio, Yield, and so on?
I know some ways to get daily stock prices and volumes in R or python, but just wondering whether these is a way (using either R or python) to get more info about stocks such as P/E ratio, company ...
-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', ...
1
vote
1answer
468 views
database design: stock & option trades
A database has two tables: one for stocks (equities), and one for options. These are separate table because they have different information. For example, the stocks table has a ticker symbol column, ...
3
votes
2answers
775 views
Downloading complete historical stock data including delisted companies? [closed]
There are several posts on SO that point to sources for downloading historical stock quotes, but these are all for currently listed symbols. The resulting dataset suffers from survivorship bias. Is ...
-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
1answer
81 views
Creating a candlestickgraph in android
I was looking at stockcharts - http://code.google.com/p/stock-chart for creating candlestickgraphs in my application. I could not find any good tutorials on it. Does anyone know of some good tutorial ...
0
votes
1answer
1k views
Interactive Brokers automated trading
I've tried to setup Interactive Broker's C++ API in Visual Studio 2008, but I know very limited C++ and I keep getiing errors. :<
1) Is there any way to use some kind of light scripting language ...
0
votes
1answer
271 views
CorePlot stipes filling
I'm trying to set a stripes filling for a graph created with CorePlot. I've found an example on internet:
CPColor *firstStripesColor = [CPColor colorWithComponentRed:1.0 green:1.0 blue:1.0 ...
1
vote
1answer
522 views
Getting stock symbol from company name
I have a company name and i want to get the stock symbol of that company and all the information related to it. I have tried using yahoo call back Stock ticker symbol lookup API but for some reason it ...
3
votes
1answer
239 views
Querying yahoo finance for data [closed]
I am querying yahoo finance to get the price of 2000 stocks. When i put all the two thousand stocks togetther in the symbol it returns http 414 error.How can i get past this.


