Why not do it yourself? It is very easy.
Here is an excellent library for Forex-trading with Oanda:
https://github.com/hootnot/oanda-api-v20
This is for example all the code you need to download the first 5000 price-candles:
Code:
accountID = your_account
token = your_token
client = oandapyV20.API(access_token=token)
params = {'count': 5000,'granularity': 'S5', 'from':'1971-01-01'}
r = v20instruments.InstrumentsCandles(instrument='USD_NOK', params=params)
client.request(r)
r.response['candles']
The first three lines ensures you get access. The next list a few parameters. Then the next line catches the info, before the last shows it on the screen.
If you do not know how to code, you will pick it up very fast by looking at the examples