Link to home
Start Free TrialLog in
Avatar of theideabulb
theideabulbFlag for United States of America

asked on

Need to get daily value of 1 dollar in Euro and British Pound

I would like to know if there is a way for me to schedule a task to grab the value of the British Pound and Euro for $1 USD.   So for example, today the GPB is .60 and the Euro is .67.  I found that on a website, but  I am wondering if anyone has used a website to grab that value every day.
Avatar of Amick
Amick
Flag of United States of America image

Avatar of theideabulb

ASKER

right, i found plenty of sites that can convert for me, but I am looking to grab it automatically everyday.  I am not sure how I would grab stuff from that page.
I haven't used that site myself, but like most they offer data feeds.  Once you sign up (some charge a fee) they provide data feeds in various formats.  That site offers:  xml, csv, html.  
http://www.xe.com/dfs/product.php

They probably give you a url and access key. Then you can use cfhttp to grab the data from their site every day. It's pretty simple.
ASKER CERTIFIED SOLUTION
Avatar of _agx_
_agx_
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Note that the terms of use for xe.com prohibit automated extraction from their public page.

You may already be aware that Microsoft has shipped a connection to MSN MoneyCentral Investor Currency Rates with Excel for some time.

In Excel 2007 go to the Data tab, select Existing Connections, then select MSN MoneyCentral Investor Currency Rates, enter the target cell and press OK.  If you accept A1 as the starting cell, Euros expressed as US dollars should be found at B17, and British Pounds at B10.  The inverse is found in column C.

Note that the terms of use for xe.com prohibit automated extraction from their public page.

Good point.  

BTW: The code was just an example. I was *not* suggesting anyone scrape their main site. That's why I mentioned having to sign up (pay a fee) and most likely being provided with a private url and access key.
.... and note the url is just a static sample page (http://www.xe.com/dfs/sample-usd.xml) it's not a live feed.