0
votes
1answer
412 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
3answers
601 views

Differentiate between FIX and FAST protocol?

Sorry I am new to trading industry. Could anyone explain what is the difference between FIX and FAST? When to implement FIX and when FAST? Please reply..Thank you so much :)
0
votes
1answer
163 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 ...
2
votes
3answers
745 views

Is there any accurate implementation of IRR and PMT function in JavaScript?

I'm developing a new web-based financial application for our company that provides online real-time non-post-back calculation of IRR, and PMT. So, I'm looking for the implementation/library which ...
2
votes
2answers
188 views

Can't figure out how to calculate non-compounded tax and a mixture in the following method?

The following class just has one method that returns the divisor of a certain percent, so if I pass it 5, it will return 0.05. public class Adjustment { public decimal Amount {get;set;} ...
0
votes
0answers
461 views

DI+ and DI- Financial Indicator Calculations

I have an algorithmic platform developed in server-side Javascript using NodeJS coupled with MongoDB. Our current strategy uses a combination of technical indicators, which, for the sake of this ...
0
votes
1answer
314 views

Accounting system, bank emulator

Do you know any accounting system emulator, that could be used free? The following requirements should be met: defining accounts and currencies for them handling balances provide simple transfer ...
2
votes
1answer
727 views

apple App store / wp7 marketplace W-8BEN form - is ITIN required if my country has double taxation avoidance treaty wit US?

Hi I am about to submit my first paid app for apple's app store and soon wp7 marketplace. The paperwork required to avoid 30% taxation is pretty confusing for me. I am living in the EU. 1) I haven't ...
3
votes
3answers
742 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: ...
0
votes
1answer
194 views

OFX — Second Level Security?

We're working on a site that will make use of the OFX standard to provide access to customer financial data. However, for security we make use of secret question/secret answer, machine tagging, etc. ...
1
vote
4answers
553 views

How do I implement a real time *financial* statistics engine from SQL server data for dashboard display?

We currently use excel automation to calculate time series statistics and store the results in our SQL Server 2008 database for easy display/sorting/etc. later. I'm currently redesigning the home ...