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 ...
0
votes
1answer
58 views

Rounding in Python NumPy when adding nodes in Networkx

Where do I get the trailing 0 or 9 from ? I checked at each step that no rounding issues appear and I got the correct results. However, when I add this numbers to the graph, rounding problems arise. ...
0
votes
1answer
42 views

Rolling idxmax() in python?

I have a python DataFrame containing some financial data that I am trying to create some technical indicators for. I am trying to figure out how to use a moving window function to speed up the process ...
0
votes
0answers
70 views

Is there any library for 30/360 ICMA day count convention in Python?

My Google-fu fails me, I can't find anything on the topic. I could of course implement something myself, but it would be better if someone who knows more than me could point me in the right ...
1
vote
1answer
143 views

How to calculate rolling cumulative product on Pandas DataFrame

I have a time series of returns, rolling beta, and rolling alpha in a pandas DataFrame. How can I calculate a rolling annualized alpha for the alpha column of the DataFrame? (I want to do the ...
0
votes
1answer
220 views

Python - Binomial Option Pricing Code [closed]

I am trying to finish this code, but I keep getting an unknown error message. I don't understand what I am doing wrong. Sorry, I am new to python! I would appreciate any help!! import math def ...
1
vote
2answers
130 views

How to get a matplotlib Axes instance to plot to?

I need to make a candlestick chart (something like this) using some stock data. For this I want to use the function matplotlib.finance.candlestick(). To this function I need to supply quotes and "an ...
0
votes
1answer
89 views

Finding the Running Time in Python

I have the following code which works perfect: from __future__ import division from math import log, sqrt from scipy.stats import norm from datetime import datetime #Default ...
0
votes
1answer
111 views

Calculate (or look up) fundamental financial quantities for stocks

I've seen a number of ways to script code (for example, in python: ystockquote) that returns the stock price (or the historical closing prices) of a particular stock. Is there a way of scripting the ...
0
votes
1answer
394 views

Calculating IRR of a perpetuity with numpy / python

I am using numpy library for doing simple IRR calculations using the irr function. So for example, if I want to find the IRR of a cash flow, I do the following In [16]: import numpy as np cf ...
1
vote
1answer
348 views

From tick by tick data to Renko chart

I've tick by tick data for Forex pairs Here is a sample of EURUSD/EURUSD-2012-06.csv EUR/USD,20120601 00:00:00.207,1.23618,1.2363 EUR/USD,20120601 00:00:00.209,1.23618,1.23631 EUR/USD,20120601 ...
2
votes
1answer
1k views

From tick by tick data to candlestick

I've tick by tick data for Forex pairs Here is a sample of EURUSD/EURUSD-2012-06.csv EUR/USD,20120601 00:00:00.207,1.23618,1.2363 EUR/USD,20120601 00:00:00.209,1.23618,1.23631 EUR/USD,20120601 ...
2
votes
1answer
130 views

Numpy's npv calculation

I am computing a NPV with numpy and with my own code, and the results differ. I must be making a mistake somewhere. Any pointer? // Solution 1 r = .06 flows = {0:1200, 3:-450, 6:-450, 15:-450} print ...
5
votes
5answers
199 views

How can I consistently convert strings like “3.71B” and “4M” to numbers in Python?

I have some rather mangled code that almost produces the tangible price/book from Yahoo Finance for companies (a nice module called ystockquote gets the intangible price/book value already). My ...
1
vote
1answer
134 views

How can I store the results of parsed html?

I'm using Python's HTMLParser and BeautifulSoup to parse Yahoo finance data. There is a very nice package written to do this already but it doesn't get "tangbile price/book value", which is to say ...
0
votes
2answers
677 views

Mouse Hover in matplotlib candlestick for python

I have implemented this example: http://matplotlib.sourceforge.net/examples/pylab_examples/finance_demo.html?highlight=candlestick I would like to implement mouse hover features for the candlestick ...
-1
votes
1answer
518 views

get historical stock data in javascript

I am looking to create a javascript function that can be placed in a .html I would like to send the function a stock symbol, a starting date, and a ending date. I would like to have the function ...
-4
votes
2answers
857 views

Python with Bloomberg terminal? [closed]

I have no programming experience but it would be a big plus for me if I learned how to program and have that program interact with the Bloomberg terminal. I have begun to learn C++ but it seems a bit ...
1
vote
1answer
243 views

Google Finance recognizes my Python script as a bot and blocks it

I wrote a script that retrieves stock data on google finance and prints it out, nice and simple. It always worked, but since this morning I only get a page that tells me that I'm probably an automated ...
-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', ...
0
votes
1answer
145 views

Python, finance/accounting and nested data

I have this type of data: entity, account, month1, month2, ..., month12 abc, 2000.02, 1,3,...,3 abc, 2000.01,2,3,...,5 xzf, 1000.00, 2,4,...,6 I need to add up all the entities, but first I need to ...
4
votes
2answers
221 views

Algorithm for iteratively reversing a complex function?

This algorithm finds a given value n by iterating between a lower bound and upper bound, similar to binary search. How can I improve this algorithm? A few details. The value n is almost always less ...
1
vote
1answer
664 views

Is YQL not reliably returning the correct data - Any replacements?

I'm writing an application that chooses companies based upon market cap and dividend yield. It uses Yahoo!'s YQL REST API to get this data. It seemed to work well yesterday, but today I saw that my ...
0
votes
2answers
481 views

Python- Get Stock Information for a company for a range of dates

Trying to get more than just the stock information at the current time period, and I can't figure out if Google Finance allows for retrieving information for more than just one date. For example, if ...
4
votes
4answers
1k views

Rolling median in python

I have some stock data based on daily close values. I need to be able to insert these values into a python list and get a median for the last 30 closes. Is there a python library that does this? ...
6
votes
1answer
1k views

Financial python library

I'm looking for a python library that provides simple set of financial calculations, such as MACD, EMAs and other indicators. I've been looking around for it, but either all projects that were trying ...
20
votes
2answers
5k views

Financial technical analysis in python

Do you know if there is any financial technical analysis module available for python ? I know Numpy has a little but I'm looking for classic technical indicators like RSI , Macd, EMA and so on. Was ...
3
votes
2answers
973 views

Finance Lib with portfolio optimization method in python

I'm looking for a finance library in python which offers a method similar to the MATLAB's portalloc . It is used to optimize a portfolio. Thank you.
6
votes
1answer
873 views

Algorithm to determine exchange rate

Given a data set of various currency pairs, how do I efficiently compute the implied fx rate for a pair not supplied in the data set? For example, say my database/table looks like this (this data is ...
6
votes
3answers
2k views

How to speed-up python nested loop?

I'm performing a nested loop in python that is included below. This serves as a basic way of searching through existing financial time series and looking for periods in the time series that match ...
11
votes
4answers
3k views

What are your “must-have” Python Packages for Finance?

With the recent SEC proposal requiring that most Asset-Backed Securities issuers file a python computer program to document the flow of funds (or waterfall) provisions of the transaction, I thought it ...
2
votes
3answers
477 views

Fixed income data online

I am looking for a resource to download fixed income data online, much like there is access to stock data from yahoo. At the very least I'd like the treasury bonds. I use python, but any help would ...
0
votes
2answers
398 views

Python and a “time value of money” problem

(I asked this question earlier today, but I did a poor job of explaining myself. Let me try again) I have a client who is an industrial maintenance company. They sell service agreements that are ...
6
votes
2answers
3k views

Basic Financial Library for Python

I am looking for a financial library for Python that will enable me to do a discounted cash flow analysis. I have looked around and found the QuantLib, which is overkill for what I want to do. I ...
1
vote
2answers
616 views

How best to hold 1000 different data series using TimeSeries module in Python?

I want to create a massive TimeSeries object which will hold 1000 different financial markets data series, each storing 1500 daily-data points. I'm quite new to the TimeSeries module and am a little ...
4
votes
3answers
2k views

Python: smarter way to calculate loan payments

How to calculate the monthly fee on a loan? Given is: a: an amount to loan. b: the loan period (number of months). c: the interest rate p.a. (interests is calculated and added every month, 1/12 of ...
2
votes
3answers
2k views

Accessing Reuters data in Python

I am currently successfully downloading live Bloomberg market prices, as well as historical series, using the service's COM API and win32com. Does anyone have any experience doing the same for Reuters ...
5
votes
3answers
643 views

Holiday files for G20 countries

For proper financial FX option pricing I require the exact number of business days between two dates. These dates can be up to 10 years in the future, for 2 different countries. I therefore need to ...
17
votes
4answers
12k views

cumulative normal distribution in Python

I am looking for a function in Numpy or Scipy (or any rigorous Python library) that will give me the cumulative normal distribution function in Python. This is for Black Scholes option pricing. I can ...