getting online Forex data

18 Ansichten (letzte 30 Tage)
Abolfazl Nejatian
Abolfazl Nejatian am 7 Jan. 2020
Bearbeitet: Saeid Kamandi am 29 Dez. 2021
Good evening everyone,
i have started a new work that i need to get an online rate of Euro to USD.
and i just use this code for this purpose,
apikey = '***********'; % my formal email address
c = quandl(apikey);
s = 'WGC/GOLD_DAILY_USD';
startdate = datetime('01-01-2010','InputFormat','MM-dd-yyyy');
enddate = datetime('now','InputFormat','MM-dd-yyyy');
periodicity = 'daily';
d = history(c,s,startdate,enddate,periodicity, ...
"limit",inf,"order","asc");
but the problem is this code can only give me daily and monthly data but i need tick, minutes and hourly data too.
so the question is, is there any way to fetch an online rate of Euro to USD (from anywhere freely or not) in the Matlab environment?
thanks in advance,
Abolfazl
  1 Kommentar
Andrew Janke
Andrew Janke am 31 Jan. 2020
This is really a market data question, and not a Matlab question. Do you have an existing market data vendor that you're working with? Lots of places have forex data, but if you want minute and tick data, you're going to have to pay for it. Once you've chosen a vendor, they provide web-based or other APIs that Matlab can work with.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Saeid Kamandi
Saeid Kamandi am 29 Dez. 2021
Bearbeitet: Saeid Kamandi am 29 Dez. 2021
Hi, Abolfazl, to get forex data, you need to use MetaTrader 4, the expert data export v3 can also help you, but this is the manual way to get the data.

Kategorien

Mehr zu Environment and Settings finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by