0
votes
0answers
25 views

improvements to this php function to calculate monthly returns from a set of price data

I have made this function that should take a set of price data and calculate a set of monthly returns. The idea is that is should be able to cope with irregular time intervals. For example I have ...
0
votes
1answer
49 views

PHP file_get_contents error

I am building a stock analysis website to use stock information such as price history etc. I will implement some of my own algorithms once I get the data but I am getting trouble obtaining the ...
0
votes
1answer
40 views

PHP: Stripslashes of Yahoo finance .CSV array

Im trying to delete the slashes of a array output. I am using the .csv file from yahoo finance. Somehow i can't get it work, the slashes don't strip. The output i get is "Google .inc" with slashes. ...
1
vote
0answers
143 views

Yahoo Finance using PHP and JSON

There are alot of question about this topic but mine isnt answered. I'm kinda new to the whole JSON idea so this is what i want. I want to have stocks visible on my website that changes when the ...
-1
votes
1answer
690 views

Yahoo CSV to HTML via PHP — no longer works

I was using a PHP script to convert Yahoo finance quotes to an HTML web page. But suddenly the web page stopped showing the data after a year of working perfectly and there were no code changes at ...
1
vote
1answer
363 views

Stock price data - current and historical - paid/free

There are countless questions asking where you can get reliable stock data for a commercial app for free but this seems a pretty hopeless task. Does anyone know anywhere it can be found for a ...
1
vote
0answers
253 views

How to calculate annuity (in PHP)? [closed]

I'm not even sure if I'm using the right term, however I've got the following: I've borrowed 25.000, which I'm going to pay back in 2 years (24 months). Per month I should pay 0.491% of interest and ...
1
vote
5answers
204 views

creating a fully functioned e-commerce website

I have created about 4 e-commerce websites during the last few year. But they were all dommy sites whereby when the users checked out their items, they did not get to give their account detailes ...
0
votes
2answers
330 views

Can a PayPal transaction include a third party?

The situation is as follows: there's a website that connects sellers and buyers, like Ebay. Among other things the owner of the website needs to know the details of each transaction initialized from ...
0
votes
0answers
217 views

Making a custom PHP form by using a custom API

I am trying to make a simple module for phpBMS. It is mostly straightforward, and it is quite easy to make a form and define a table to add, remove or modify records. Here is the sample provided by ...
4
votes
1answer
3k views

MySQL: Use CASE/ELSE value as join parameter

I'm trying to join the NAME and PHOTO from USERS table to the TRANSACTIONS table based on who is the payer or payee. It keeps telling me can't find the table this -- What am I doing wrong? SELECT ...
6
votes
3answers
1k views

How do I safely perform money related calculations in PHP?

I'm working on a few report output scripts that need to do some rudimentary calculations on some money values. I am aware of the limitations of floating point arithmetic for this purpose, however the ...
77
votes
15answers
26k views

Programmatically access currency exchange rates [closed]

I'm setting up an online ordering system but I'm in Australia and for international customers I'd like to show prices in US dollars or Euros so they don't have to make the mental effort to convert ...