0
votes
0answers
43 views

How to calculate the APR on an ARM in javascript

I am trying to calculate the APR for an ARM (in javascript) and have gotten stuck and am hopping somebody out there might be able to steer me in the right direction. Here is what I have tried so far: ...
0
votes
1answer
96 views

Pulling Upside/downside Capture Ratio from morningstar.com

First Time Long Time. New to this VBA thing, however catching on. I'm interested in pulling the upside/downside capture ratio for a lot of mutual funds and want to automate the process. The table I ...
1
vote
1answer
58 views

How to calculate comparison rate for a fixed home loan [closed]

How do I calculate a comparison rate for a fixed home loan. For an example, lets say the loan is Loan rate 5.5% Monthly fee $10 Years 30 How do I calculate the comparison rate for ...
1
vote
1answer
2k views

Yahoo finance api for real time quotes

I'm implementing a mobile finance app using phonegap. For this I need a real time quotes. After googling for a while I come to know that Yahoo provides real time stock quotes. So I created a 30 days ...
-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 ...
1
vote
0answers
302 views

Heavy Computation in Javascript

I am currently in the process of building a Finance library for Javascript(Browser and Node) One of the main features of the library is doing simulations with options, therefore there is a lot of ...
0
votes
1answer
170 views

How do I get the raw data behind this WSJ

I'm looking at http://online.wsj.com/mdc/public/npage/2_3051.html?mod=mdc_h_dtabnk&symb=DJIA#IndexComponents and wondering if there is a way to get hold of the data that wsj is showing, ...
2
votes
3answers
700 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 ...
1
vote
1answer
1k views

Calculating future value with compound interest with JavaScript

I'm trying to work on a script where the user inserts a monthly income and gets the future value with compound interest after 30 years. As it is now, I've assigned some values for testing purposes. ...
0
votes
0answers
455 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 ...
1
vote
0answers
420 views

Howto use Google Finance gadgets JavaScript API

How can i get access to the Google Finance gadgets JavaScript API (http://code.google.com/intl/de-DE/apis/finance/docs/finance-gadgets.html#JS_API) ?? I see the methods but how can i include the ...
28
votes
2answers
5k views

Precise Financial Calculation in JavaScript. What Are the Gotchas?

In the interest of creating cross-platform code, I'd like to develop a simple financial application in JavaScript. The calculations required involve compound interest and relatively long decimal ...
1
vote
1answer
261 views

Do you know any Javascript or Flash open source library to generate financial OHLC charts?

I've looking for a library that could generate this kind of graphics, but the only one that seems able to do it is JFreeChart (for Java), maybe someone else faced the same problem but in Javascript or ...
2
votes
2answers
207 views

Reading data from JavaScript updated html

Is it possible to read the realtime updated quotes in this website through actionscript3, without having to reload the page all the time, which would be network-heavy. In other words, is it possible ...
2
votes
1answer
3k views

How do I calculate daily, weekly, monthly compound interest accurately in Javascript?

I need a very accurate calculator formula. Right now my formula works for monthly contributions with monthly compounding, but when you use weekly contributions with monthly compounding, I don't know ...