4
votes
1answer
221 views

Which are the order matching algorithms most commonly used by electronic financial exchanges?

Which are the order matching algorithms most commonly used by electronic financial exchanges? Is there a list of order matching algorithms somewhere?
0
votes
1answer
159 views

How to keep track changing items in a stock portfolio?

I have a system where people can pick some stocks and it values their portfolios but I'm having trouble doing this in a efficient way on a daily basis because I'm creating entries for days that don't ...
5
votes
2answers
170 views

How do portfolio software generate their portfolio suggestions so quickly when the possibilities are huge? [closed]

I hope this does not get closed because it is related to algorithms that I have not been able to figure out(its also pretty long because I'm so confused about how its being done). Basically many ...
0
votes
3answers
475 views

Implementing a Fast Fourier Transform for Option Pricing

So, I'm in need of some tips regarding a small project I'm doing. My goal is an implementation of a Fast Fourier Transform algorithm (FFT) which can be applied to the pricing of options. First ...
4
votes
2answers
220 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
3answers
249 views

Recursive Rate of Return (RoR)

I can't figure out how to recursively calculate the rate of return on an investment, where the principal is unknown, and only the rates and the duration of the rates are known. For example, if I had ...
-1
votes
1answer
612 views

Interest Calculation on Savings Account

I am trying to find interest on a savings account for the following transactions in an mvc.net application: Date Balance ----------- ------- 01-Apr-2011 100 05-Apr-2011 200 ...
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 ...
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 ...
0
votes
1answer
294 views

Calculating annual percentage rate when repayment amount is not constant

I need to calculate APR for loans. Constant repayment loans were covered clearly here Calculating annual percentage rate (need some help with inherited code) My problem is where the repayment amount ...
1
vote
1answer
132 views

How to manage transactions, debt, interest and penalty?

I am making a BI system for a bank-like institution. This system should manage credit contracts, invoices, payments, penalties and interest. Now, I need to make a method that builds an invoice. I ...
3
votes
7answers
2k views

Common strategies to deal with rounding errors in currency-intensive soft?

What is your advice on: compensation of accumulated error in bulk math operations on collections of Money objects. How is this implemented in your production code for your locale? theory behind ...
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 ...