Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Oanda data load

Hi all,

About 2 years ago, I got the following link to extract data from Oanda (a currency site) from this forum.

It has worked perfectly ever since until 01/04/2014.

I have no idea what has changed an also no idea how to adjust the link to make it work again.

Does anybody have any ideas to help me fix this?

Here you find the codes which extracts the data from Oanda:

For i = '01/01/2011' to Today()

Let dd = Date(i, 'MM/DD/YY');

tEuroRates:

LOAD

    Date($(i))                                                     As ExchangeDate,

    Currency,

    Code,

    Evaluate([EUR/1 Unit])                                      As ToEUR,

    Evaluate([Units/1 EUR])                                     As FromEUR,

    Year($(i))                                                     As Year,

    Month($(i))                                                 As Month,

    Day($(i))                                                     As Day,

    Week($(i))                                                     As Week,

    WeekYear($(i)) & '-' & Num(Week($(i)),'00')                 As RollingWeek,

    Weekday($(i))                                                 As WeekDay,

    Date(MonthStart($(i)),'YYYY-MM')                             As RollingMonth,

    Right(year($(i)),2) & '-Q' & ceil(Month($(i))/3)              As [YearQtr],

    'Q' & Ceil(Month($(i))/3)                                     As Quarter

  

   

FROM

    [http://www.oanda.com/convert/fxdaily?date=$(dd)&date_fmt=us&exch=EUR&lang=en&sel_list=USD_HUF_UAH_RU...]

    (html, codepage is 1252,  embedded labels, table is @1);  

Next

Store tEuroRates into D:\QlikView\QV Storage\DATA\QVD\EuroRates.QVD;

drop table tEuroRates;

Thanks!

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Evelien,

Try to replace table is @1 with table is @2 

Regards,

Michael

View solution in original post

3 Replies
Anonymous
Not applicable
Author

Evelien,

Try to replace table is @1 with table is @2 

Regards,

Michael

Anonymous
Not applicable
Author

Michael,

it works fine now.

Can you explain how you know this?

Or how I can find out the next time this happens?

Thanks

Anonymous
Not applicable
Author

Evelien,

I did not "know" this.  I just tried using wizard (Web Files), and there were 5 tables.  The first one returned a few empty fields, and the 2nd exactly what you wanted.  Apparently they've changed the web page layout a little.

Regards,

Michael