Skip to content

Instantly share code, notes, and snippets.

@willzjc
Last active January 7, 2018 04:43
Show Gist options
  • Save willzjc/156841b4debbe5b7d6f4d285f5592215 to your computer and use it in GitHub Desktop.
Save willzjc/156841b4debbe5b7d6f4d285f5592215 to your computer and use it in GitHub Desktop.
Chord diagram transition - G10 Currency Pairs
license: mit

Chord Diagram with transitions to see sentiments of each year

===============================================

Forked from below:

This Chord diagram was created to show the Fish Trade Flows in US dollars between world regions. To show how the exports change through the years I used transitions between the chords. This was possible thanks to a stack overflow answer by AmeliaBR.

The data was obtained from FAO Fisheries Yearbooks. It spans 9 years, from 2004 to 2015. The final version of this visualization can be viewed at Databyou.

This research was funded by the project SAF21 - Social science aspects of fisheries for the 21st Century. SAF21 is a project financed under the EU Horizon 2020 Marie Skłodowska-Curie (MSC) – ITN - ETN programme (project 642080).

This bl.ock was created by Luz K. Molina.

forked from databayou's block: Chord diagram transition interactive

/*** Define parameters and tools ***/
var csvfilter = "";
var ccyfilter = "";
var width = 760,
height = 820,
outerRadius = Math.min(width, height) / 2 - 120,//100,
innerRadius = outerRadius - 10;
var dataset = "y2013.json";
//string url for the initial data set
//would usually be a file path url, here it is the id
//selector for the <pre> element storing the data
//create number formatting functions
var formatPercent = d3.format("%");
var numberWithCommas = d3.format("0,f");
//create the arc path data generator for the groups
var arc = d3.svg.arc()
.innerRadius(innerRadius)
.outerRadius(outerRadius);
//create the chord path data generator for the chords
var path = d3.svg.chord()
.radius(innerRadius - 4);// subtracted 4 to separate the ribbon
//define the default chord layout parameters
//within a function that returns a new layout object;
//that way, you can create multiple chord layouts
//that are the same except for the data.
function getDefaultLayout() {
return d3.layout.chord()
.padding(0.03)
.sortSubgroups(d3.descending)
.sortChords(d3.ascending);
}
var last_layout; //store layout between updates
var regions; //store neighbourhood data outside data-reading function
/*** Initialize the visualization ***/
var g = d3.select("#chart_placeholder").append("svg")
.attr("width", width)
.attr("height", height)
.append("g")
.attr("id", "circle")
.attr("transform",
"translate(" + width / 2 + "," + height / 2 + ")");
//the entire graphic will be drawn within this <g> element,
//so all coordinates will be relative to the center of the circle
g.append("circle")
.attr("r", outerRadius);
//this circle is set in CSS to be transparent but to respond to mouse events
//It will ensure that the <g> responds to all mouse events within
//the area, even after chords are faded out.
/*** Read in the neighbourhoods data and update with initial data matrix ***/
//normally this would be done with file-reading functions
//d3. and d3.json and callbacks,
//instead we're using the string-parsing functions
//d3.csv.parse and JSON.parse, both of which return the data,
//no callbacks required.
d3.csv("regionsfish.csv", function(error, regionData) {
if (error) {alert("Error reading file: ", error.statusText); return; }
regions = regionData;
//store in variable accessible by other functions
//regions = d3.csv.parse(d3.select("#regions").text());
//instead of d3.csv
updateChords(dataset);
//call the update method with the default dataset
}); //end of d3.csv function
/* Create OR update a chord layout from a data matrix */
function updateChords( datasetURL ) {
d3.json(datasetURL, function(error, matrix) {
if (error) {alert("Error reading file: ", error.statusText); return; }
//var matrix = JSON.parse( d3.select(datasetURL).text() );
// instead of d3.json
/* Compute chord layout. */
layout = getDefaultLayout(); //create a new layout object
layout.matrix(matrix);
/* Create/update "group" elements */
var groupG = g.selectAll("g.group")
.data(layout.groups(), function (d) {
return d.index;
//use a key function in case the
//groups are sorted differently
});
groupG.exit()
.transition()
.duration(1500)
.attr("opacity", 0)
.remove(); //remove after transitions are complete
var newGroups = groupG.enter().append("g")
.attr("class", "group");
//the enter selection is stored in a variable so we can
//enter the <path>, <text>, and <title> elements as well
//Create the title tooltip for the new groups
newGroups.append("title");
//Update the (tooltip) title text based on the data
groupG.select("title")
.text(function(d, i) {
return numberWithCommas(d.value)
+ " Total Google Interest for "
+ regions[i].name;
});
//create the arc paths and set the constant attributes
//(those based on the group index, not on the value)
newGroups.append("path")
.attr("id", function (d) {
return "group" + d.index;
//using d.index and not i to maintain consistency
//even if groups are sorted
})
.style("fill", function (d) {
return regions[d.index].color;
});
//update the paths to match the layout
groupG.select("path")
.transition()
.duration(1500)
//.attr("opacity", 0.5) //optional, just to observe the transition////////////
.attrTween("d", arcTween( last_layout ))
// .transition().duration(100).attr("opacity", 1) //reset opacity//////////////
;
//create the group labels
newGroups.append("svg:text")
.attr("xlink:href", function (d) {
return "#group" + d.index;
})
.attr("dy", ".35em")
.attr("color", "#fff")
.text(function (d) {
return regions[d.index].name + ' (' + (100* ((d.endAngle - d.startAngle) / 2)/Math.PI).toFixed(1) + '%)';
});
//position group labels to match layout
groupG.select("text")
.transition()
.duration(1500)
.attr("transform", function(d) {
d.angle = (d.startAngle + d.endAngle) / 2;
//store the midpoint angle in the data object
return "rotate(" + (d.angle * 180 / Math.PI - 90) + ")" +
" translate(" + (innerRadius + 26) + ")" +
(d.angle > Math.PI ? " rotate(180)" : " rotate(0)");
//include the rotate zero so that transforms can be interpolated
})
.text(function (d) {
return regions[d.index].name + ' (' + (100* ((d.endAngle - d.startAngle) / 2)/Math.PI).toFixed(1) + '%)';
})
.attr("text-anchor", function (d) {
return d.angle > Math.PI ? "end" : "begin";
});
/* Create/update the chord paths */
var chordPaths = g.selectAll("path.chord")
.data(layout.chords(), chordKey );
//specify a key function to match chords
//between updates
//create the new chord paths
var newChords = chordPaths.enter()
.append("path")
.attr("class", "chord");
// Add title tooltip for each new chord.
newChords.append("title");
// Update all chord title texts
chordPaths.select("title")
.text(function(d) {
if (regions[d.target.index].name !== regions[d.source.index].name) {
return [numberWithCommas(d.source.value),
" Google Rating for ",
regions[d.source.index].name,
regions[d.target.index].name,
"\n",
numberWithCommas(d.target.value),
" Google Rating for ",
regions[d.target.index].name,
regions[d.source.index].name
].join("");
//joining an array of many strings is faster than
//repeated calls to the '+' operator,
//and makes for neater code!
}
else { //source and target are the same
return numberWithCommas(d.source.value)
+ " exports ended in "
+ regions[d.source.index].name;
}
});
//handle exiting paths:
chordPaths.exit().transition()
.duration(1500)
.attr("opacity", 0)
.remove();
//update the path shape
chordPaths.transition()
.duration(1500)
//.attr("opacity", 0.5) //optional, just to observe the transition
.style("fill", function (d) {
return regions[d.source.index].color;
})
.attrTween("d", chordTween(last_layout))
//.transition().duration(100).attr("opacity", 1) //reset opacity
;
//add the mouseover/fade out behaviour to the groups
//this is reset on every update, so it will use the latest
//chordPaths selection
groupG.on("mouseover", function(d) {
chordPaths.classed("fade", function (p) {
//returns true if *neither* the source or target of the chord
//matches the group that has been moused-over
return ((p.source.index != d.index) && (p.target.index != d.index));
});
});
//the "unfade" is handled with CSS :hover class on g#circle
//you could also do it using a mouseout event:
/*
g.on("mouseout", function() {
if (this == g.node() )
//only respond to mouseout of the entire circle
//not mouseout events for sub-components
chordPaths.classed("fade", false);
});
*/
last_layout = layout; //save for next update
}); //end of d3.json
}
function arcTween(oldLayout) {
//this function will be called once per update cycle
//Create a key:value version of the old layout's groups array
//so we can easily find the matching group
//even if the group index values don't match the array index
//(because of sorting)
var oldGroups = {};
if (oldLayout) {
oldLayout.groups().forEach( function(groupData) {
oldGroups[ groupData.index ] = groupData;
});
}
return function (d, i) {
var tween;
var old = oldGroups[d.index];
if (old) { //there's a matching old group
tween = d3.interpolate(old, d);
}
else {
//create a zero-width arc object
var emptyArc = {startAngle:d.startAngle,
endAngle:d.startAngle};
tween = d3.interpolate(emptyArc, d);
}
return function (t) {
return arc( tween(t) );
};
};
}
function chordKey(data) {
return (data.source.index < data.target.index) ?
data.source.index + "-" + data.target.index:
data.target.index + "-" + data.source.index;
//create a key that will represent the relationship
//between these two groups *regardless*
//of which group is called 'source' and which 'target'
}
function chordTween(oldLayout) {
//this function will be called once per update cycle
//Create a key:value version of the old layout's chords array
//so we can easily find the matching chord
//(which may not have a matching index)
var oldChords = {};
if (oldLayout) {
oldLayout.chords().forEach( function(chordData) {
oldChords[ chordKey(chordData) ] = chordData;
});
}
return function (d, i) {
//this function will be called for each active chord
var tween;
var old = oldChords[ chordKey(d) ];
if (old) {
//old is not undefined, i.e.
//there is a matching old chord value
//check whether source and target have been switched:
if (d.source.index != old.source.index ){
//swap source and target to match the new data
old = {
source: old.target,
target: old.source
};
}
tween = d3.interpolate(old, d);
}
else {
//create a zero-width chord object
///////////////////////////////////////////////////////////in the copy ////////////////
if (oldLayout) {
var oldGroups = oldLayout.groups().filter(function(group) {
return ( (group.index == d.source.index) ||
(group.index == d.target.index) )
});
old = {source:oldGroups[0],
target:oldGroups[1] || oldGroups[0] };
//the OR in target is in case source and target are equal
//in the data, in which case only one group will pass the
//filter function
if (d.source.index != old.source.index ){
//swap source and target to match the new data
old = {
source: old.target,
target: old.source
};
}
}
else old = d;
/////////////////////////////////////////////////////////////////
var emptyChord = {
source: { startAngle: old.source.startAngle,
endAngle: old.source.startAngle},
target: { startAngle: old.target.startAngle,
endAngle: old.target.startAngle}
};
tween = d3.interpolate( emptyChord, d );
}
return function (t) {
//this function calculates the intermediary shapes
return path(tween(t));
};
};
}
/* Activate the buttons and link to data sets */
d3.select("#y2011").on("click", function() {
updateChords( "y2011.json" );
csvfilter="2011";
//disableButton(this);
});
d3.select("#y2012").on("click", function() {
updateChords( "y2012.json" );
csvfilter="2012";
//disableButton(this);
});
d3.select("#y2013").on("click", function() {
updateChords( "y2013.json" );
csvfilter="2013";
task_delete_tables();
//disableButton(this);
});
d3.select("#y2014").on("click", function() {
updateChords( "y2014.json" );
csvfilter="2014";
task_delete_tables();
//disableButton(this);
});
d3.select("#y2015").on("click", function() {
updateChords( "y2015.json" );
csvfilter="2015";
//disableButton(this);
task_delete_tables();
});
d3.select("#y2016").on("click", function() {
updateChords( "y2016.json" );
csvfilter="2016";
//disableButton(this);
task_delete_tables();
});
d3.select("#y2017").on("click", function() {
csvfilter="2017";
updateChords( "y2017.json" );
//disableButton(this);
task_delete_tables();
});
function injectHTML(inject_content){
//step 1: get the DOM object of the iframe.
var iframe = document.getElementById('target_iframe');
alert(iframe);
var html_string = '<html><head></head><body><p>' + inject_content + '</p></body></html>';
/* if jQuery is available, you may use the get(0) function to obtain the DOM object like this:
var iframe = $('iframe#target_iframe_id').get(0);
*/
//step 2: obtain the document associated with the iframe tag
//most of the browser supports .document. Some supports (such as the NetScape series) .contentDocumet, while some (e.g. IE5/6) supports .contentWindow.document
//we try to read whatever that exists.
var iframedoc = iframe.document;
if (iframe.contentDocument)
iframedoc = iframe.contentDocument;
else if (iframe.contentWindow)
iframedoc = iframe.contentWindow.document;
if (iframedoc){
// Put the content in the iframe
iframedoc.open();
iframedoc.writeln(html_string);
iframedoc.close();
} else {
//just in case of browsers that don't support the above 3 properties.
//fortunately we don't come across such case so far.
alert('Cannot inject dynamic contents into iframe.');
}
}
/*
function disableButton(buttonNode) {
d3.selectAll("button")
.attr("disabled", function(d) {
return this === buttonNode? "true": null;
});
}
*/
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="details">
<h1>G10 Currency Sentiments</h1>
<div id="yearbuttons">
<button id="y2013" class="current">2013</button>
<button id="y2014" class="">2014</button>
<button id="y2015" class="">2015</button>
<button id="y2016" class="">2016</button>
<button id="y2017" class="">2017</button>
</div>
<!--This script is to highlight each year button while on it-->
<script type="text/javascript">
$('#yearbuttons button').on('click', function(){
$('button.current').removeClass('current');
$(this).addClass('current');
});
function refresh_tables(ccy){
ccyfilter = ccy;
var tableDiv = d3.select(".table_placeholder").append("div").attr("id", "tableDiv1");
var divs = tableDiv.selectAll("div");
divs.remove();
}
</script>
<div id="legend">
<table class="table1">
<tr>
<td bgcolor="#FFFFFF" width="10%">
</td>
<td width="90%"><h3>Currencies</h3>
</td>
</tr>
<tr>
<td bgcolor="#FF00FF" width="10%">
</td>
<td><a class="two" id="NA" href = "#" onclick="ccyfilter='USD';" >USD</a>
<table class="table2">
<tr>
<td><h3>Information</h3></td>
</tr>
<tr>
<td><div class="thisframe"></td>
</tr>
</table>
</td>
</tr>
<tr>
<td bgcolor="#0000FF">
</td>
<td><a class="two" id="NA" href = "#" onclick="ccyfilter='GBP';">GBP</a>
<table class="table2">
<tr>
<td><h3>Countries</h3></td>
</tr>
<tr> <td>Austria<br/>Belgium<br/>Denmark<br/>Finland<br/>France<br/>Germany<br/>Greece<br/>Ireland<br/>Italy<br/>Luxembourg<br/>Netherlands<br/>Portugal<br/>Spain<br/>Sweden<br/>UK<br/>Bulgaria<br/>Cyprus<br/>Czech<br/>Estonia<br/>Hungary<br/>Latvia<br/>Lithuania<br/>Malta<br/>Poland<br/>Romania<br/>Slovakia<br/>Slovenia</td>
</tr>
</table>
</td>
</tr>
<tr>
<td bgcolor="#6495ED">
</td>
<td><a class="two" id="NA" href = "#">CAD</a>
<table class="table2">
<tr>
<td><h3>Countries</h3></td>
</tr>
<tr>
<td>Faroe Islands<br/>Iceland<br/>Norway<br/>Switzerland</td>
</tr>
</table>
</td>
</tr>
<tr>
<td bgcolor="#F4A460">
</td>
<td><a class="two" id="NA" href = "#" onclick="ccyfilter='EUR';">EUR</a>
<table class="table2">
<tr>
<td><h3>Countries</h3></td>
</tr>
<tr>
<td>Israel<br/>Japan<br/>South Africa</td>
</tr>
</table>
</td>
</tr>
<tr>
<td bgcolor="#8E8E38">
</td>
<td><a class="two" id="NA" href = "#" onclick="ccyfilter='JPY';" >JPY</a>
<table class="table2">
<tr>
<td><h3>Countries</h3></td>
</tr>
<tr>
<td>Albania<br/>Bosnia<br/>Croatia<br/>Serbia-Monte<br/>TFYROM</td>
</tr>
</table>
</td>
</tr>
<tr>
<td bgcolor="#D8BFD8">
</td>
<td><a class="two" id="NA" href = "#" oonclick="refresh_tables('SEK');">SEK</a>
<table class="table2">
<tr>
<td><h3>Countries</h3></td>
</tr>
<tr>
<td>Algeria<br/>Morocco<br/>Tunisia</td>
</tr>
</table>
</td>
</tr>
<tr>
<td bgcolor="#00EEEE">
</td>
<td><a class="two" id="NA" href = "#">CHF</a>
<table class="table2">
<tr>
<td><h3>Countries</h3></td>
</tr>
<tr>
<td>Benin<br/>Burkina<br/>Cape Verde<br/>Cote dIvoire<br/>Gambia<br/>Ghana<br/>Guinea<br/>Guinea Bissau<br/>Liberia<br/>Mali<br/>Mauritania<br/>Niger<br/>Nigeria<br/>Senegal<br/>Sierra<br/>Togo</td>
</tr>
</table>
</td>
</tr>
<tr>
<td bgcolor="#97FFFF">
</td>
<td><a class="two" id="NA" href = "#" onclick="refresh_tables('AUD');">AUD</a>
<table class="table2">
<tr>
<td><h3>Countries</h3></td>
</tr>
<tr>
<td >Australia<br/></td>
</tr>
</table>
</td>
</tr>
</table>
</div>
</div>
<div id="chart_placeholder"></div>
<div class="table_control"></div>
<div class="table_placeholder"></div>
<script type="text/javascript" src="chord.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script type="text/javascript" src="table_manipulation.js"></script>
</body>
</html>
Currency Date Year Rating Newsinfo Weblink
CADCHF 20171217 2017 100 Interactive Chart, CAD/CHF technical analysis and real-time alerts for Cana[..] http://www.fxmania.com/currencies/CAD-CHF/40124756.html%3Ffxmaniaen%3Dcg0g4g0bnl0jl6itqo70vb9s64
CADEUR 20171217 2017 100 23 Feb 2017 [..]. A partir du samedi 25 fǸvrier, ȿ minuit heure du serveur,[..] https://www.wakfu.com/en/mmorpg/news/announcements/650363-troisieme-cadeau-anniversaire%3Fpage%3D3
CADGBP 20171203 2017 100 GBP/USD News. Access the most up-to-date news on the GBP USD from the finan[..] https://za.investing.com/currencies/gbp-usd-news
CADAUD 20170903 2017 100 9 Oct 2017 [..]. Find the inter-bank exchange rate on 9 October 2017 for the [..] https://www.exchangerates.org.uk/CAD-AUD-09_10_2017-exchange-rate-history.html
GBPSEK 20170716 2017 100 Interactive Chart, GBP/SEK technical analysis and real-time alerts for Brit[..] http://www.fxmania.com/currencies/GBP-SEK/40826752.html%3Ffxmaniaen%3D5a897ie1tvjmu3smo44bqmbij5
CADJPY 20170709 2017 100 Detail page of the symbol 'CAD/JPY Spot' with master data, quote data, late[..] https://www.teletrader.com/cad-jpy-spot/currencies/details/tts-76592914/performance6M/asc%3Fculture%3Den-GB
AUDCHF 20170528 2017 100 Interactive Chart, AUD/CHF technical analysis and real-time alerts for Aust[..] http://www.fxmania.com/currencies/AUD-CHF/40100258.html%3Ffxmaniaen%3Dmeolsm4j04lc9606obb15g3dt6
AUDCAD 20170312 2017 100 Download End of Day and Intraday, Currency and Exchange Rate Quotes for Aus[..] titial?url=http://www.fxcalc.com/currency/rate/audcad.htm
USDJPY 20161106 2016 100 Forex Trading Alert originally published on Apr 7, 2016, 11:16 AM. Earlier [..] http://www.kitco.com/commentaries/2016-04-08/Forex-Trading-Alert-USD-JPY-Declines-Are-Gaining-Steam.html
GBPAUD 20160626 2016 100 GBP/AUD exchange rate. Charts, forecast poll, current trading positions and[..] https://www.fxstreet.com/rates-charts/gbpaud
GBPJPY 20160619 2016 100 ForexLive European morning FX news wrap: Pound thumped again on Brexit date[..] http://www.nasdaq.com/article/forexlive-european-morning-fx-news-wrap-pound-thumped-again-on-brexit-date-announcement-cm687782
GBPCAD 20160619 2016 100 11/17/2016 - More GBP/CAD news[..]. [..]. GBP[..] https://www.centralcharts.com/en/stock-exchange-news/pr_7277-gbp-cad
EURGBP 20160619 2016 100 6 Dec 2016 [..]. On the 6th December 2016 the spot inter-bank market saw: Ope[..] https://www.poundsterlinglive.com/best-exchange-rates/british-pound-to-euro-exchange-rate-on-2016-12-06
AUDGBP 20160619 2016 100 AUD GBP Exchange Rate Soars on Weak US Dollar and Rising Risk Appetite. The[..] http://nine.currency-news.com.au/
GBPEUR 20160619 2016 100 GBP EUR: Get all information on the British Pound to European Euro Exchange[..] http://markets.businessinsider.com/currencies/GBP-EUR
GBPUSD 20160619 2016 100 Get latest market information about GBP/USD pair including GBP USD Live Rat[..] http://infoyol.ml/forex-live-charts-gbpusd-787652.html
USDGBP 20160619 2016 100 14 Jun 2016 [..]. Date14 Jun 2016. /. CategoriesForex Market News. Market Rou[..] http://www.firewoodfx.com/id/post/date/2016/06/14/
EURCAD 20160110 2016 100 1 Sep 2016 [..]. Historical Rates for the EUR/CAD currency conversion on 01 S[..] https://www.poundsterlinglive.com/best-exchange-rates/euro-to-canadian-dollar-exchange-rate-on-2016-09-01
USDCAD 20160110 2016 100 FX levels to watch ÿ? GBP/USD, EUR/USD, USD/JPY, USD/CAD. Britain's PM has[..] https://www.ig.com/au/forex-news/2016/10/03/fx-levels-to-watch--gbp-usd--eur-usd--usd-jpy--usd-cad-34644
CADUSD 20160110 2016 100 The Canadian dollar (TPI:USDCAD) plunged with dollar fetching C$1.454, its [..] https://www.marketwatch.com/(S(rnsydaynixa5x55oiibxm45))/story/russian-ruble-canadian-dollar-hit-hard-by-oils-slide-2016-01-15
AUDEUR 20151129 2015 100 16 Dec 2017 [..]. The AUD EUR exchange rate fluctuated on Friday as markets r[..] http://nine.currency-news.com.au/news/aud-eur/aud-eur-exchange-rate-fluctuates-on-narrowing-eurozone-trade-surplus-1238/
EURAUD 20150726 2015 100 31 Jul 2015 [..]. Bullish Iron Ore sees Euro to Australian Dollar (EUR/AUD) E[..] https://www.euroexchangeratenews.co.uk/date/2015/07/
USDEUR 20150705 2015 100 AASTOCKS.com offers stock analysis with 5-days forecast, 1 and live comment[..] http://www.aastocks.com/en/forex/market/dbindepth.aspx%3Fcountry%3D3%26indicator%3D1901492%26startdate%3D2014/07/07%26enddate%3D2015/07/07
EURUSD 20150628 2015 100 24 Jun 2015 [..]. Interest rate and Federal Reserve announcements, as well as[..] http://etfdb.com/currency-etfs/the-ultimate-guide-to-currency-etf-trading/
SEKUSD 20150517 2015 100 20 May 2015 [..]. Stockholm, 2015-05-20 08:00 CEST (GLOBE NEWSWIRE) --. - Net[..] https://globenewswire.com/news-release/2015/05/20/737471/0/en/Vostok-Nafta-Investment-Ltd-Three-Months-Report-Covering-the-Period-January-1-2015-March-31-2015.html
EURSEK 20150315 2015 100 Dynamics course / Swedish Krona, for 1 EUR EUR / SEK. Date, Cbr course [..]. [..] https://fortrader.org/en/currencyrates/archive/ecb/2015/03/04/eursek
JPYGBP 20150301 2015 100 Company profile Santen Pharmaceutical Corp Ltd. Santen Pharmaceutical is a [..] https://www.sharewise.com/gb/company_infos/Santen_Pharm/profile
USDSEK 20150208 2015 100 Find the inter-bank exchange rate on 2 June 2015 for the US Dollar to Swedi[..] https://www.exchangerates.org.uk/USD-SEK-02_06_2015-exchange-rate-history.html
CHFGBP 20150118 2015 100 GO TO PAGE. EUR/USD - Live Rate, Forecast, News and Analysis. FX Signal dat[..] http://lbkdwjwkhfek.gq/free-daily-forex-signals-eur-usd-3405326.html
GBPCHF 20150111 2015 100 15 Jan 2015 [..]. On the 15th January 2015 the spot inter-bank market saw: Op[..] https://www.poundsterlinglive.com/best-exchange-rates/british-pound-to-swiss-franc-exchange-rate-on-2015-01-15
CHFJPY 20150111 2015 100 Forecast ID: 2742. Total Profit: 3,972. Forex. YearWeek: 201501. Closed Pro[..] http://www.forcastcity.com/en/node/426
CHFUSD 20150111 2015 100 USD CHF: Get all information on the United States Dollar to Swiss Franc Exc[..] http://markets.businessinsider.com/currencies/USD-CHF
USDCHF 20150111 2015 100 15 Jan 2015 [..]. The Swiss National Bank (SNB) stunned markets on Thursday, [..] https://www.cnbc.com/2015/01/15/swiss-franc-sours-stocks-tank-as-euro-peg-scrapped.html
EURCHF 20150111 2015 100 24 Oct 2017 [..]. The euro is rising sharply on Tuesday against the Swiss fra[..] https://www.fxstreet.com/news/eur-chf-jumps-toward-11650-highest-since-snb-shock-201710241859
CHFEUR 20150111 2015 100 Latest CHF market news, analysis and Swiss Franc trading forecast from lead[..] https://www.dailyfx.com/chf
SEKEUR 20140824 2014 100 News funding update. NEWSLETTER DECEMBER 2014. Kommuninvest sets 2015 fundi[..] http://kommuninvest.se/wp-content/uploads/2015/01/Newsletter-nr-4-2014.pdf
JPYEUR 20140706 2014 100 https://www.cmcmarkets.com/en-au/news-and-analysis/the-euro-and-pound-rise-[..] https://www.cmcmarkets.com/en-au/sitemap-news-archived.xml
USDAUD 20130728 2013 100 We have long understood that the Fed's tapering timing and schedule are dat[..] http://www.marketwatch.com/story/dollar-falls-after-bank-of-japan-fed-updates-2013-07-11
JPYUSD 20130623 2013 100 27 Jun 2013 [..]. A rush of Japanese economic data paint a mostly upbeat pict[..] http://www.marketwatch.com/story/japan-data-paint-mostly-strong-picture-2013-06-27
AUDUSD 20130602 2013 100 Daily financial analyses of Silver, Gold, Crude Oil, USD/CAD, AUD/USD, USD/[..] https://www.trading212.de/en/Financial-Analyses%3Fdate%3D2013-06-24%26tz%3DTZ1
AUDJPY 20130602 2013 100 You are not logged in, you need subscription to view up-to-date forecasts, [..] http://forecastcity.com/hy/forecasts/Forex/daily-trading-opportunity/AUDJPY/10296
AUDSEK 20130505 2013 100 InstaForex Forex Broker ÿ? Forex broker information for InstaForex, find t[..] https://www.earnforex.com/forex-brokers/InstaForex/page/7/
EURJPY 20130407 2013 100 April 11, 2013, 04:07:37 AM EDT By Investing.com [..]. The Fed minutes, which[..] http://www.nasdaq.com/article/forex-usdjpy-steady-near-key-100-yen-level-cm235758
CHFSEK 20130217 2013 100 14 Aug 2017 [..]. In 2012, the company produced 89.856 million tonnes of crud[..] http://comparic.com/price-oil-barrel-quotes-oil-price/
JPYCAD 20121230 2012 100 Range Analyses for EUR, CHF, GBP, JPY, CAD, AUD, NZD, GOLD SILVER. Daily Ra[..] http://www.forex-goodies.com/statistics/range-analyses-for-eur-chf-gbp-jpy-cad-aud-nzd-gold-silver/
EURCAD 20170611 2017 99 23 Jun 2017 [..]. On the 23rd June 2017 the spot inter-bank market saw: Open:[..] https://www.poundsterlinglive.com/best-exchange-rates/euro-to-canadian-dollar-exchange-rate-on-2017-06-23
USDAUD 20150802 2015 99 8 Sep 2015 [..]. Find the inter-bank exchange rate on 8 September 2015 for th[..] https://www.exchangerates.org.uk/USD-AUD-08_09_2015-exchange-rate-history.html
CHFSEK 20130818 2013 99 Forex Signal 00030: 2013.05.02 08:15 Sell CADJPY Price: 96.503 SL: 96.803 T[..] https://www.pinterest.com/pin/797277940252543934/
AUDSEK 20130609 2013 97 QuoTrek Mobile brings you world market quotes, charts and news; go to the i[..] http://docshare.tips/ctm-201306_587b774cb6d87fd96a8b51c3.html
USDJPY 20130602 2013 97 Find Latest Business News on Indian Economy, Earnings News including Quarte[..] http://www.moneycontrol.com/news/business/markets-business/page-1795/
USDJPY 20130407 2013 97 Forex - USD/JPY jumps to multi-year high ahead of jobs report. 04/01/2013 0[..] http://www.fxmsolutions.com/markets-news%3Fid%3Dforex---usdjpy-jumps-to-multi-year-high-ahead-of-jobs-report-242632
AUDSEK 20140810 2014 96 EANS-News: Flughafen Wien Group Continues Upswing: Substantial Passenger Gr[..] https://www.presseportal.de/suche.htx%3Flangid%3D2%26q%3DBank%2520of%2520America%2520Corporation
JPYGBP 20150913 2015 95 Company profile Chubu Securities Financing Co Ltd Chubu Securities Financin[..] https://www.sharewise.com/gb/company_infos/CSF/profile
AUDSEK 20140525 2014 95 55% InstaForex bonus. INSTAFOREX COMPANY NEWS-bonus55_right_banner- png Ins[..] http://www.tradingsystemforex.com/brokers/104746-instaforex-company-news-7.html
USDEUR 20160619 2016 94 1.17941, 1.17958, 0, 2017.11.17 / 20:59:58. Bid, Ask, Change, %, Date/Time [..] https://www.teletrade.eu/analytics/quote/EURUSD/42
AUDSEK 20131013 2013 94 See ÿ?Economic Projections of Federal Reserve Board Members and Federal Re[..] https://vdocuments.site/q4-2013-fx-market-monitor.html
USDJPY 20160619 2016 93 8 Jun 2016 [..]. Historical Rates for the USD/JPY currency conversion on 08 J[..] https://www.poundsterlinglive.com/best-exchange-rates/us-dollar-to-japanese-yen-exchange-rate-on-2016-06-08
EURSEK 20150517 2015 93 15 May 2015 [..]. On the 15th May 2015 the spot inter-bank market saw: Open: [..] https://www.poundsterlinglive.com/best-exchange-rates/euro-to-swedish-krona-exchange-rate-on-2015-05-15
JPYEUR 20131208 2013 93 3 Sep 2012 [..]. Previous: 3.5% Important Dates: May 1 2012 : Actual Differen[..] http://pipsalert.blogspot.com/2012/09/trading-news-rba-rate-statement-and.html
AUDCAD 20170416 2017 92 None /books.google.com.au/books?id=3Dg9DwAAQBAJ&pg=PT210&lpg=PT210&dq=AUDCAD+date:201704+news&source=bl&ots=9jI_UJQD3B&sig=MaDePJNKwSc96uOx12scp0VSVa8&hl=en&sa=X&ved=0ahUKEwiWjPGKsLnYAhUJHZQKHYzSCIo4AhDoAQgoMAQ
JPYGBP 20170108 2017 92 11 Dec 2017 [..]. News about 100 JPY To EUR, Get latest market information ab[..] http://www.limrin.com/%3Fs%3DNews_about_100_JPY_To_EUR
AUDSEK 20131020 2013 92 See ÿ?Economic Projections of Federal Reserve Board Members and Federal Re[..] https://vdocuments.site/q4-2013-fx-market-monitor.html
AUDCAD 20171029 2017 91 16 Oct 2017 [..]. AUD/CAD 0.9825 , -0.0007 , -0.07%. After opening [..]. Haddad[..] https://www.businessinsider.com.au/australia-dollar-weak-us-inflation-data-2017-10
AUDEUR 20161120 2016 91 15 Nov 2016 [..]. ÿ?We have quite a few events and data releases that should[..] https://www.businessinsider.com.au/the-australian-dollar-is-soaring-against-everything-except-the-greenback-2016-11
EURSEK 20161023 2016 91 10 Jul 2016 [..]. Find the inter-bank exchange rate on10 July 2016 for the Eu[..] https://www.exchangerates.org.uk/EUR-SEK-10_07_2016-exchange-rate-history.html
AUDSEK 20131103 2013 91 7 Nov 2015 [..]. Current account deficits: In early 2013, 11 countries had cu[..] https://docslide.com.br/documents/jpmfxmarketsweeklyus2015-05-291725316.html
GBPCAD 20160626 2016 90 6 Jun 2016 [..]. After losing ground over the bank holiday weekend the GBP/CA[..] https://news.torfx.com/post/2016-06-06_gbpcad-exchange-rate-hits-three-week-low-after-brexit-polls/
JPYCAD 20130210 2013 90 Jumps in six major exchange rate returns are modeled using high-frequency d[..] http://www.sciencedirect.com/science/article/pii/S0264999315004216
JPYEUR 20150322 2015 89 27 Nov 2017 [..]. This Pin was discovered by iFOREX. Discover (and save) your[..] https://www.pinterest.com.au/pin/458522805786616960/
AUDUSD 20160501 2016 88 3 May 2016 [..]. -Recent comments regarding AUD/USD noted that ÿ?important r[..] https://www.dailyfx.com/forex/technical/elliott_wave/aud-usd/2016/05/03/eliottWaves_aud-usd.html
AUDSEK 20160807 2016 87 Get latest market information about USD/SEK pair including USD SEK Live Rat[..] https://www.dailyfx.com/usd-sek
GBPJPY 20160710 2016 87 Currency quotes and news from Reuters.com for GBP/JPY. Forexpros gbp jpy [..][..] http://wf-opencap.tk/forexpros-gbp-jpy-528174.html
CADGBP 20150118 2015 87 Examine the current British Pound Canadian Dollar rate and access to our GB[..] http://taxandinvesmentinfo.tk/wyfed/gbp-cad-forex-hupi.php
JPYCAD 20130414 2013 87 Have you done a thorough account recovery? https://www.kraken.com/help/faq#[..] https://bitcointalk.org/index.php%3Ftopic%3D290799.600
AUDEUR 20170129 2017 86 11/10/2017 01:58:02. The NZD/USD is showing a -0.10% loss on the day to 0.6[..] http://www.fxmania.com/currencies/AUD-EUR/40036978.html%3Ffxmaniaen%3D30b0erive3m7v31eubmrq2obi1
CADGBP 20160619 2016 86 Given a currency appreciation of NOK with 10% against USD, CAD, GBP and EUR[..] http://www.newsweb.no/newsweb/attachment.do%3Fname%3DGSF%2BAnnual%2BReport%2B2015.pdf%26attId%3D148668
CHFSEK 20140504 2014 86 The Mountain Man Is Back, This Time In Computerized Trading Rooms I nvented[..] http://tbiyaefdrslle.gq/forex-articles-pdf-9616842.html
JPYCAD 20130609 2013 86 Find the current Canadian Dollar Japanese Yen rate and access to our CAD JP[..] https://www.investing.com/currencies/cad-jpy
EURSEK 20130203 2013 86 Trading ׺ Forex CFD ׺ Trading Markets ׺ CFD Trading ׺ Forex Trading ׺ [..] https://www.oanda.com/currency/average
USDEUR 20171217 2017 85 Convert Dollars to Euros. USD-EUR exchange rates (Taux de change, Verbrauch[..] https://www.dollars2euro.com/
AUDEUR 20171210 2017 85 All the latest Australian Dollar to Euro (AUD/EUR) exchange rate news and u[..] https://www.audnews.com.au/exchange-rate/aud-eur/
AUDSEK 20160821 2016 85 Get latest market information about USD/SEK pair including USD SEK Live Rat[..] https://www.dailyfx.com/usd-sek
GBPSEK 20160814 2016 85 Current exchange rate BRITISH POUND (GBP) to SWEDISH KRONA (SEK) including [..] https://www.bloomberg.com/quote/GBPSEK:CUR
JPYUSD 20160710 2016 85 With BoJ running out of ammo (although a comprehensive assessment of policy[..] https://en.swissquote.com/fx/news-and-live-signals/daily-forex-news/2016/07/29
GBPCAD 20160703 2016 85 Turbulent Week Ends in GBP CAD Gains. By Rewan Tremethick on July 12 2016 i[..] https://news.torfx.com/post/2016-07-12_turbulent-week-ends-in-gbp-cad-gains/
USDJPY 20160207 2016 85 Mr. Yen Sakakibara says USD/JPY slowly to 90 in 2017. Mon 26 Sep 2016 02: 2[..] http://www.forexlive.com/news/!/mr-yen-sakakibara-says-usdjpy-slowly-to-90-in-2017-20160926
JPYEUR 20150614 2015 85 AASTOCKS.com offers stock analysis with 5-days forecast, 1 and live comment[..] http://aastocks.com/en/forex/market/dbindepth.aspx%3Fcountry%3D15%26indicator%3D140102%26startdate%3D2014/06/04%26enddate%3D2015/06/04
EURSEK 20141214 2014 85 Use our free currency converter, exchange rate charts, economic calendar, i[..] https://www.ofx.com/en-au/forex-news/historical-exchange-rates/yearly-average-rates/
AUDEUR 20130721 2013 85 Published On: 2013-07-04 22:25:00. Market: Foreign Exchange. The EUR/AUD fo[..] https://www.royalpip.com/bg/news/index/42880
CADUSD 20171203 2017 84 Convert Canadian Dollars to Dollars and Dollars to Canadian Dollars. CAD-US[..] https://www.dollars2dollars.com/
CADEUR 20171203 2017 84 23 Feb 2017 [..]. A partir du samedi 25 fǸvrier, ȿ minuit heure du serveur,[..] https://www.wakfu.com/en/mmorpg/news/announcements/650363-troisieme-cadeau-anniversaire%3Fpage%3D3
CADUSD 20161106 2016 84 7 Jan 2016 [..]. Weakness in the Canadian Economy driving its currency lower;[..] http://www.zerohedge.com/news/2016-01-07/usdcad-reaches-12-year-high-here-comes-reversal
CADGBP 20161009 2016 84 Find the inter-bank exchange rate on10 April 2016 for the Canadian Dollar t[..] http://www.exchangerates.org.uk/CAD-GBP-10_04_2016-exchange-rate-history.html
AUDEUR 20160828 2016 84 Get detailed financial information on Australian Dollar (CURRENCY:AUD) incl[..] http://finance.google.com/finance%3Fq%3DAUDEUR
EURCAD 20160117 2016 84 1 Sep 2016 [..]. Historical Rates for the EUR/CAD currency conversion on 01 S[..] https://www.poundsterlinglive.com/best-exchange-rates/euro-to-canadian-dollar-exchange-rate-on-2016-09-01
GBPCHF 20150118 2015 84 15 Jan 2015 [..]. On the 15th January 2015 the spot inter-bank market saw: Op[..] https://www.poundsterlinglive.com/best-exchange-rates/british-pound-to-swiss-franc-exchange-rate-on-2015-01-15
CADAUD 20141228 2014 84 7 matches [..]. Archive for May, 2012. Random video. SUBSCRIBE [..]. Weekly Gol[..] https://www.earnforex.com/videos/date/2012/05/
CADCHF 20140330 2014 84 View the basic CADCHF=X stock chart on Yahoo Finance. Change the date range[..] https://finance.yahoo.com/q%3Fs%3DCADCHF%3DX
CADAUD 20130922 2013 84 June 12, 2013, 09:13:47 AM [..]. Conversion into real currencies EUR, SEK, US[..] https://bitcointalk.org/index.php%3Ftopic%3D232515.msg%25msg_id%25
USDAUD 20130908 2013 84 Check our updated for AUDUSD News including real time updates, technical an[..] https://www.fxstreet.com/currencies/audusd
AUDUSD 20130901 2013 84 9 Dec 2013 [..]. What was the Australian Dollar to US Dollar historical excha[..] https://www.exchangerates.org.uk/AUD-USD-09_12_2013-exchange-rate-history.html
USDJPY 20130609 2013 84 Find Latest Business News on Indian Economy, Earnings News including Quarte[..] http://www.moneycontrol.com/news/business/markets-business/page-1795/
USDEUR 20171203 2017 83 Convert Dollars to Euros. USD-EUR exchange rates (Taux de change, Verbrauch[..] https://www.dollars2euro.com/
CADGBP 20160424 2016 83 Find the inter-bank exchange rate on 4 December 2016 for the Canadian Dolla[..] https://www.exchangerates.org.uk/CAD-GBP-04_12_2016-exchange-rate-history.html
CADGBP 20160313 2016 83 203(AUD) Australian Dollar(AUD) To Indian Rupee(INR) Currency Rates Today -[..] http://aud.fxexchangerate.com/inr/203-currency-rates.html
CADUSD 20160117 2016 83 The Canadian dollar (TPI:USDCAD) plunged with dollar fetching C$1.454, its [..] https://www.marketwatch.com/(S(rnsydaynixa5x55oiibxm45))/story/russian-ruble-canadian-dollar-hit-hard-by-oils-slide-2016-01-15
CHFSEK 20150111 2015 83 AID=/20160223/news03/160229729 http://www.ajc.com/news/news/crime-law/ stor[..] http://mplmurmansk.ru/node/48049
AUDEUR 20130609 2013 83 Thank you so much for teaching James so well. More importantly, your friend[..] http://www.knbeducation.com/_blog/My_Blog/post/Thank_you_KnB!!!/%3Fpage%3D239
USDAUD 20170903 2017 82 Range: 1d | 3d | 5d | 10d | 1m | 3m | 5m | 1y | 3y | 5y | 10y | 20y | 30y |[..] https://stooq.com/q/%3Fs%3Dusdaud%26c%3D1d%26t%3Dc%26a%3Dlg%26b%3D0
USDCAD 20170709 2017 82 28 Jul 2017 [..]. Yesterday, the greenback extended losses against the Canadi[..] http://www.futuresmag.com/2017/07/28/will-usdcad-drop-further
CADJPY 20161127 2016 82 Date, Symbol, Trend, Strength, Difference, RoCT, HShT, HShD2, PV [..]. 2016-1[..] http://www.forcastcity.com/en/forecasts/Forex/daily-trading-opportunity/CADJPY%3Fpage%3D6
CHFSEK 20160619 2016 82 15 Jun 2016 [..]. Rest assured, you will be notified if requirements or dates[..] https://www.axitrader.com/au/market-news-blog/axitrader-news/2016/06/brexit-changes-to-margin-requirements
AUDEUR 20160529 2016 82 972(AUD) Australian Dollar(AUD) To Euro(EUR) Currency Rates Today - FX Exch[..] http://aud.fxexchangerate.com/eur/972-currency-rates.html
AUDUSD 20150906 2015 82 1 Sep 2015 [..]. Trading the News: Australia Gross Domestic Product (GDP) Rep[..] https://www.dailyfx.com/forex/fundamental/daily_briefing/daily_pieces/trading_news_reports/2015/09/01/AUDUSD-Risks-Fresh-2015-Lows-on-Dismal-Australia-2Q-GDP-Report.html
AUDSEK 20150802 2015 82 7 juil. 2016 [..]. Le 7 avril 2016, les AutoritǸs canadiennes en valeurs mob[..] https://lautorite.qc.ca/fileadmin/lautorite/bulletin/2016/vol13no27/vol13no27_6.pdf
AUDSEK 20150628 2015 82 The legislative start date was 2011 but the mortgage collapse caused a deep[..] https://twbrian.wordpress.com/2015/06/20/
CHFSEK 20150301 2015 82 In most cases, stop loss levels, take profit levels, exit dates, money mana[..] http://kenyanbestforum.com/index.php%3Faction%3Dprofile%3Bu%3D7930%3Barea%3Dshowposts%3Bstart%3D225
AUDSEK 20150111 2015 82 Close Out trades. 9.7. Value Dates. The Value Date for a foreign exchange t[..] http://halifax.com.au/sitesfile/wp-content/uploads/2015/01/Halifax-Margin-FX-PDS-26-11-15.pdf
SEKUSD 20140727 2014 82 Graph and download economic data from 1971-01-04 to 2017-12-22 about Sweden[..] https://fred.stlouisfed.org/series/DEXSDUS
USDAUD 20171217 2017 81 USD AUD: Get all information on the United States Dollar to Australian Doll[..] http://markets.businessinsider.com/currencies/USD-AUD
USDJPY 20161120 2016 81 Forex Trading Alert originally published on Apr 7, 2016, 11:16 AM. Earlier [..] http://www.kitco.com/commentaries/2016-04-08/Forex-Trading-Alert-USD-JPY-Declines-Are-Gaining-Steam.html
USDCAD 20161106 2016 81 United States Dollar (B) VS Canadian Dollar Spot (USD/Cad) share price and [..] https://www.advfn.com/stock-market/FX/USDCAD/stock-price
EURSEK 20161106 2016 81 Find the inter-bank exchange rate on11 March 2016 for the Euro to Swedish K[..] https://www.exchangerates.org.uk/EUR-SEK-11_03_2016-exchange-rate-history.html
USDJPY 20160724 2016 81 11 Feb 2016 [..]. Just like two days ago, when for the first time since 2011 [..] https://www.zerohedge.com/news/2016-02-11/bank-japan-intervention-sends-usdjpy-soaring
EURCAD 20160228 2016 81 Download past episodes or subscribe to future episodes of DailyFX TV: Forex[..] https://itunes.apple.com/au/podcast/dailyfx-tv-forex-trading-news-and-analysis/id797646945%3Fmt%3D2
USDCAD 20160117 2016 81 FX levels to watch ÿ? GBP/USD, EUR/USD, USD/JPY, USD/CAD. Britain's PM has[..] https://www.ig.com/au/forex-news/2016/10/03/fx-levels-to-watch--gbp-usd--eur-usd--usd-jpy--usd-cad-34644
AUDEUR 20140622 2014 81 30 Apr 2014 [..]. Dollar Falls After GDP Disappoints, Fed Continues With Tape[..] http://www.forexnews.com/blog/2014/04/
GBPSEK 20140330 2014 81 Examine the current British Pound Swedish Krona rate and access to our GBP [..] https://au.investing.com/currencies/gbp-sek
CADAUD 20140202 2014 81 5 Oct 2016 [..]. With the price of iron ore causing Australian Dollar (AUD) f[..] https://www.futurecurrencyforecast.com/news/aud/aud-cad/
CADGBP 20121230 2012 81 Get detailed financial information on Canadian Dollar (CURRENCY:CAD) includ[..] https://finance.google.com/finance%3Fq%3Dcadusd
USDCAD 20170716 2017 80 28 Jul 2017 [..]. Yesterday, the greenback extended losses against the Canadi[..] http://www.futuresmag.com/2017/07/28/will-usdcad-drop-further
EURCAD 20170702 2017 80 1 Dec 2017 [..]. EUR/CAD has been impulsively bullish the gains recently brea[..] https://www.instaforex.com/forex_analysis/104595/
GBPJPY 20160626 2016 80 GBPJPY historical. 148.316, 148.349, -0.17, 2017.10.16 / 14:21:52. Bid, Ask[..] https://www.teletrade.eu/analytics/quote/GBPJPY/2
AUDCAD 20151101 2015 80 [..]. 2015-11-23T03:50:28-08:00 http://www.cabs-cad.com/news/autocad-release-[..] http://www.cabs-cad.com/sitemap.xml
CADCHF 20150816 2015 80 Date, Sat, 11/28/2015 - 21:33. Current, uptrend. Forecast, continuation of [..] http://forcastcity.com/en/forecasts/Forex/weekly/CADCHF/3883
USDEUR 20150628 2015 80 EURUSD historical. 1.17606, 1.17623, 0, 2017.10.04 / 22:12:52. Bid, Ask, Ch[..] http://teletrade.bg/analytics/quote/EURUSD/86
USDEUR 20150118 2015 80 Canara Bank Recruitment 2015, 24 Manager-Security Posts Last Date 03rd Augu[..] https://www.pinterest.com.au/pin/429741989417257689/
EURJPY 20130714 2013 80 AccountOpen Real AccountDeposit FundsWithdraw Funds ׺ NewsNews Economic Ca[..] https://www.trading212.de/en/news%3Fdate%3D2013-07-04%26tz%3DTZ1
USDJPY 20170409 2017 79 13 Apr 2017 [..]. The USD/JPY pair broke down during the day on Wednesday, sl[..] https://www.dailyforex.com/forex-technical-analysis/2017/04/usdjpy-and-audusd-forecast-april-13-2017/78771
JPYUSD 20161113 2016 79 United States Dollar (B) VS Japanese Yen Spot (USD/JPY) share price and USD[..] https://www.advfn.com/stock-market/FX/USDJPY/stock-price
AUDSEK 20161030 2016 79 10 Oct 2016 [..]. Sign up for free SEK AUD rate alerts or just get daily/week[..] https://www.exchangerates.org.uk/SEK-AUD-10_10_2016-exchange-rate-history.html
USDJPY 20160710 2016 79 11 Feb 2016 [..]. Just like two days ago, when for the first time since 2011 [..] https://www.zerohedge.com/news/2016-02-11/bank-japan-intervention-sends-usdjpy-soaring
AUDEUR 20160306 2016 79 3 Jan 2016 [..]. Find the inter-bank exchange rate on 3 January 2016 for the [..] https://www.exchangerates.org.uk/AUD-EUR-03_01_2016-exchange-rate-history.html
EURCAD 20160103 2016 79 1 Sep 2016 [..]. Historical Rates for the EUR/CAD currency conversion on 01 S[..] https://www.poundsterlinglive.com/best-exchange-rates/euro-to-canadian-dollar-exchange-rate-on-2016-09-01
EURCAD 20140316 2014 79 26 Jun 2015 [..]. ÿ?Again no domestic news out of Canada as CAD relies on ge[..] https://www.poundsterlinglive.com/cad/2179-projections-for-canadian-dollar-cad-43434
JPYCAD 20131208 2013 79 12 Jan 2013 [..]. Find the inter-bank exchange rate on12 January 2013 for the[..] https://www.exchangerates.org.uk/JPY-CAD-12_01_2013-exchange-rate-history.html
JPYUSD 20130602 2013 79 27 Jun 2013 [..]. A rush of Japanese economic data paint a mostly upbeat pict[..] http://www.marketwatch.com/story/japan-data-paint-mostly-strong-picture-2013-06-27
EURJPY 20130127 2013 79 View the basic EURJPY=X stock chart on Yahoo Finance. Change the date range[..] https://finance.yahoo.com/q%3Fs%3Deurjpy%3DX
USDCAD 20171203 2017 78 Canadian Dollar / UBS: Watch For Break Above 1.2930 In USD/CAD Exchange Rat[..] http://finance.google.ca/finance/company_news%3Fq%3DCURRENCY:CAD%26ei%3DRY8AWoDnMYe3jAG4_rGABg%26startdate%3D2017-11-01%26enddate%3D2017-12-01%26start%3D10%26num%3D10
CADUSD 20170723 2017 78 31 Jul 2017 [..]. CAD/USD Conversion Table History. See below quick comparisi[..] https://www.poundsterlinglive.com/best-exchange-rates/canadian-dollar-to-us-dollar-exchange-rate-on-2017-07-31
AUDCAD 20170115 2017 78 20 Jan 2017 [..]. Due to the huge popularity of our Revit Essentials training[..] https://www.bmarq.co.uk/blog/page/5/
JPYUSD 20161106 2016 78 United States Dollar (B) VS Japanese Yen Spot (USD/JPY) share price and USD[..] https://www.advfn.com/stock-market/FX/USDJPY/stock-price
EURAUD 20160807 2016 78 8 Dec 2016 [..]. Historical Rates for the EUR/USD currency conversion on 08 D[..] https://www.poundsterlinglive.com/best-exchange-rates/euro-to-us-dollar-exchange-rate-on-2016-12-08
AUDCAD 20160807 2016 78 Stay up to date with ThinkMarkets with the latest financial news, complete [..] https://www.thinkmarkets.com/au/market-news/%3Fpage%3D104
AUDSEK 20160424 2016 78 7 juil. 2016 [..]. http://www.lautorite.qc.ca/files/pdf/reglementation/valeur[..] https://lautorite.qc.ca/fileadmin/lautorite/bulletin/2016/vol13no27/vol13no27_6-2.pdf
EURCAD 20160410 2016 78 Euro Exchange Rates (EUR/GBP, EUR/USD) Fluctuate Following Eurozone Inflati[..] https://www.euroexchangeratenews.co.uk/date/2016/04/page/8/
EURSEK 20150531 2015 78 15 May 2015 [..]. On the 15th May 2015 the spot inter-bank market saw: Open: [..] https://www.poundsterlinglive.com/best-exchange-rates/euro-to-swedish-krona-exchange-rate-on-2015-05-15
USDEUR 20150315 2015 78 Risk Warning: Trading Forex and CFDs on margin carries a high level of risk[..] http://www.teletrade-asia.com/en/analytics/quote/EURUSD/73
GBPSEK 20150208 2015 78 GBPSEK historical. 11.13406, 11.13867, 0.04, 2017.11.17 / 20:58:59. Bid, As[..] http://ttrade-asia.com/en/analytics/quote/GBPSEK/11
JPYCAD 20141026 2014 78 Find the inter-bank exchange rate on10 November 2014 for the Japanese Yen t[..] https://www.exchangerates.org.uk/JPY-CAD-10_11_2014-exchange-rate-history.html
EURAUD 20140112 2014 78 Currency quotes and news from Reuters.com for. [..]. EUR / USD. 1.2012. Data [..] https://www.reuters.com/finance/currencies/quote
USDAUD 20130602 2013 78 6 Sep 2013 [..]. Historical Rates for the USD/AUD currency conversion on 06 S[..] https://www.poundsterlinglive.com/best-exchange-rates/us-dollar-to-australian-dollar-exchange-rate-on-2013-09-06
USDAUD 20130512 2013 78 AUDUSD touches a three year low: Mecklai August 06, 2013 05:04 PM IST [..]. W[..] http://www.moneycontrol.com/news/tags/rba.html
GBPAUD 20170430 2017 77 Find the inter-bank exchange rate on 4 October 2017 for the British Pound t[..] https://www.exchangerates.org.uk/GBP-AUD-04_10_2017-exchange-rate-history.html
AUDCAD 20170212 2017 77 None /books.google.com.au/books?id=4T4EAAAAMBAJ&pg=PA86&lpg=PA86&dq=AUDCAD+date:201702+news&source=bl&ots=wxIIrbSrOO&sig=sCSEZg-n3wjfPrO9HvX70JQh9y0&hl=en&sa=X&ved=0ahUKEwj-roLur7nYAhWCpJQKHeneBiI4AhDoAQgrMAQ
CADCHF 20161113 2016 77 Date, Symbol, Trend, Strength, Difference, RoCT, HShT, HShD2, PV [..]. 2016-1[..] http://www.forecastcity.com/en/forecasts/Forex/daily-trading-opportunity/CADCHF%3Fpage%3D6
GBPSEK 20160619 2016 77 Close [X]. News. 08 Aug 2017 13:39. Option expiries for today's 10:00 ET NY[..] https://www.teletrade.eu/analytics/quote/GBPSEK
CADCHF 20160403 2016 77 Find the inter-bank exchange rate on 4 May 2016 for the Canadian Dollar to [..] https://www.exchangerates.org.uk/CAD-CHF-04_05_2016-exchange-rate-history.html
EURUSD 20150308 2015 77 3 Aug 2015 [..]. EUR/USD Conversion Table History. See below quick comparisio[..] https://www.poundsterlinglive.com/best-exchange-rates/euro-to-us-dollar-exchange-rate-on-2015-08-03
USDSEK 20150308 2015 77 Pound to Euro Exchange Rate News Predictions and Forecasts for the British [..] http://www.currencywatch.co.uk/best-us-dollar-exchange-rates/us-dollar-to-swedish-krona-exchange-rate-on-2015-04-03
EURCAD 20171210 2017 76 EUR/CAD exchange rate. Charts, forecast poll, current trading positions and[..] https://www.fxstreet.com/rates-charts/eurcad
GBPAUD 20170521 2017 76 QUANT FORECAST INDICATORS DASHBOARD RELATIVE ANALYSIS [..]. To Sep 1, 2017 GB[..] https://www.wingcharts.com/%3Fsymbol%3DGBP/AUD
GBPSEK 20161002 2016 76 Historical volatility is an indicator that shows price volatility. The inst[..] https://www.afxgroup.com/en/traders-dashboard
USDJPY 20160814 2016 76 16 Aug 2016 [..]. Americas Roundup: Dollar edges off lows after Fed's Dudley [..] http://www.firewoodfx.com/post/date/2016/08/16/
GBPCHF 20160626 2016 76 Date, Symbol, Trend, Strength, Difference, RoCT, HShT, HShD2, PV [..]. 2016-0[..] https://forecastcity.com/en/forecasts/forex/daily-trading-opportunity/GBPCHF%3Fpage%3D11
USDCAD 20160619 2016 76 Forex - USD/CAD moves higher after U.S., Canadian data. [..]. Oct 06, 2016 06[..] http://www.moneycontrol.com/news/business/markets-business/forex-usdcad-moves-higher-after-us-canadian-data-958690.html
CHFSEK 20151115 2015 76 3 Feb 2015 [..]. Other Market Moving News: The move by the RBA also weighed o[..] http://www.finances.com/analyses-and-opinions/analysis-opinions/60511-trading-outlook-audusd-10.htm
EURUSD 20150705 2015 76 7 Aug 2015 [..]. EUR/USD Conversion Table History. See below quick comparisio[..] https://www.poundsterlinglive.com/best-exchange-rates/euro-to-us-dollar-exchange-rate-on-2015-08-07
EURUSD 20150125 2015 76 6 Jan 2015 [..]. If you want to swap currencies today, you will get the rate [..] https://ftalphaville.ft.com/2015/01/06/2079862/the-dubious-relationship-between-yields-and-exchange-rates/
CHFUSD 20150118 2015 76 USD CHF: Get all information on the United States Dollar to Swiss Franc Exc[..] http://markets.businessinsider.com/currencies/USD-CHF
USDJPY 20141214 2014 76 Get detailed financial information on US Dollar (CURRENCY:USD) including re[..] https://finance.google.com/finance%3Fq%3Dusdjpy
CHFJPY 20131222 2013 76 CHFJPY 4 h 29/3/2012 CHFJPY on the lines of Jean-four hours chart bearish p[..] https://tradersunion.com/forexforum/showthread.php%3F385-CHFJPY%26p%3D656676%26viewfull%3D1
EURJPY 20131208 2013 76 TR4DER - EUR/JPY [EURJPY=X] 2 Year Chart and Summary, Quotes, News, Forum, [..] http://www.tr4der.com/info/EURJPY%3DX/2-years/
GBPAUD 20171203 2017 75 [..]. Czech Koruna Danish Krone Euro Georgian lari Gram Silver Hungarian Fori[..] https://za.investing.com/currencies/gbp-usd-news
AUDCAD 20171112 2017 75 BER Currency News articles keep you up-to-date on events from around the wo[..] http://bestexchangerates.com/info/news/
JPYEUR 20171029 2017 75 1 Nov 2016 [..]. Previously We look at the sell-off from Friday's USD/JPY hig[..] http://www.tag618.com/featured-chart/foreign-exchange-usd-dxy-usdjpy-eurjpy
GBPJPY 20170604 2017 75 2 Jun 2017 [..]. Protected: GBP-JPY. Date: 2017. June 2. FridayAuthor: A * F [..] https://akosforex.com/2017/06/02/gbp-jpy-5/
USDCAD 20151206 2015 75 1 Dec 2015 [..]. The U.S. dollar edged lower against major rivals Tuesday, fa[..] http://www.marketwatch.com/story/yen-gains-on-reports-of-currency-hedging-by-japans-mega-pension-fund-2015-12-01
AUDEUR 20151101 2015 75 16 Dec 2017 [..]. The AUD EUR exchange rate fluctuated on Friday as markets r[..] http://nine.currency-news.com.au/news/aud-eur/aud-eur-exchange-rate-fluctuates-on-narrowing-eurozone-trade-surplus-1238/
AUDUSD 20150823 2015 75 13 Aug 2015 [..]. AUD/USD Conversion Table History. See below quick comparisi[..] https://www.poundsterlinglive.com/best-exchange-rates/australian-dollar-to-us-dollar-exchange-rate-on-2015-08-13
USDEUR 20150111 2015 75 Canara Bank Recruitment 2015, 24 Manager-Security Posts Last Date 03rd Augu[..] https://www.pinterest.com.au/pin/429741989417257689/
JPYCAD 20141130 2014 75 Therefore a dedicated server-side API from bitcoin.de has been integrated i[..] http://wyzemerchant.com/apk/app/447235185/euro-rates-apk-download
JPYCAD 20140406 2014 75 Category: Finance; Release Date: 2014-08-01; Current Version: 1.4; Adult Ra[..] http://constructii-instalatii.ro/apk/app/896450742/forex-trade-calculator-a-position-size-pip-value-trading-tool-for-the-fx-day-trader
JPYCAD 20140323 2014 75 Archive for March, 2013. Random video [..]. Weekly Gold and Forex Trading New[..] https://www.earnforex.com/videos/date/2013/03/
EURJPY 20130106 2013 75 View the basic EURJPY=X stock chart on Yahoo Finance. Change the date range[..] https://finance.yahoo.com/q%3Fs%3Deurjpy%3DX
AUDSEK 20170917 2017 74 Thankfully, there are ways you can make sure you're informed about AUD/SEK [..] https://www.finder.com.au/aud-sek-exchange-rates
GBPAUD 20170910 2017 74 Forex news gbp aud. [..]. Get your FREE Pound to Australian Dollar (GBP/AUD) [..] http://infolokerpabrik.tk/forex-news-gbp-aud-549671.html
USDJPY 20170402 2017 74 13 Apr 2017 [..]. The USD/JPY pair broke down during the day on Wednesday, sl[..] https://www.dailyforex.com/forex-technical-analysis/2017/04/usdjpy-and-audusd-forecast-april-13-2017/78771
JPYEUR 20170212 2017 74 11 Dec 2017 [..]. News about 100 JPY To EUR, Get latest market information ab[..] http://www.limrin.com/%3Fs%3DNews_about_100_JPY_To_EUR
JPYCAD 20160710 2016 74 COM - Exchange with USD EUR GBP JPY CAD BTC LTC XRP NMC XDG STR ETH. [..]. Qu[..] https://bitcointalk.org/index.php%3Ftopic%3D290799.3360
AUDCAD 20150405 2015 74 24 Mar 2017 [..]. With no Australian data left this week, remaining Australia[..] https://www.audnews.com.au/aud-cad-exchange-rate-slides-aud-damaging-trade-report-7005
USDAUD 20150201 2015 74 AUDUSD: Retail trader data shows 53.7% of traders are net-long with the rat[..] http://200.149.119.147/finance/company_news%3Fq%3DCURRENCY:AUD%26ei%3DJtnHWLDgLou3e-65vdgH%26startdate%3D2015-01-01%26enddate%3D2015-02-01%26start%3D40%26num%3D10
EURJPY 20130210 2013 74 The bullish move in EUR/JPY. Find the latest EUR JPY news from around the w[..] http://zxnuhetoveqe.cf/5ad3268f.html
GBPJPY 20171203 2017 73 READ MORE. Trading GBP/JPY - News Technical Currency Analysis. 2017-12- 05 [..] http://infoyol.ml/gbpjpy-forex-system-36465.html
EURCAD 20170924 2017 73 Technical Analysis on EUR/CAD 18th of September. 2017-09-18 [..]. Fundamental[..] http://en.maximusfx.com/Analytics/ShowAnalysis/18_09_2017ec
EURCAD 20170430 2017 73 Interactive Chart, EUR/CAD technical analysis and real-time alerts for Euro[..] http://www.fxmania.com/currencies/EUR-CAD/40978124.html%3Ffxmaniaen%3D30b0erive3m7v31eubmrq2obi1
USDJPY 20170319 2017 73 8 Mar 2017 [..]. On the data front, today, another quiet session ahead, atten[..] https://www.fxcompare.com.au/forex-news/mar-2017/forex-trends-2017-03-08/
EURAUD 20170319 2017 73 3 May 2017 [..]. Historical Rates for the EUR/AUD currency conversion on 03 M[..] https://www.poundsterlinglive.com/best-exchange-rates/euro-to-australian-dollar-exchange-rate-on-2017-05-03
USDJPY 20170108 2017 73 26 Jan 2017 [..]. BAML says the year-to-date experience has been one of lower[..] https://www.cnbc.com/2017/01/26/us-rates-buy-dollar-and-sell-yen-bank-of-america.html
EURCAD 20160124 2016 73 1 Sep 2016 [..]. Historical Rates for the EUR/CAD currency conversion on 01 S[..] https://www.poundsterlinglive.com/best-exchange-rates/euro-to-canadian-dollar-exchange-rate-on-2016-09-01
EURCAD 20150823 2015 73 8 Jul 2015 [..]. Find the inter-bank exchange rate on 8 July 2015 for the Eur[..] https://www.exchangerates.org.uk/EUR-CAD-08_07_2015-exchange-rate-history.html
AUDUSD 20150201 2015 73 View the basic AUDUSD=X stock chart on Yahoo Finance. Change the date range[..] https://au.finance.yahoo.com/q%3Fs%3Daudusd%3Dx
AUDEUR 20141207 2014 73 4 Aug 2016 [..]. While movement in the commodities market and Australia's eco[..] https://www.futurecurrencyforecast.com/news/aud/aud-eur/
AUDEUR 20140302 2014 73 Currency Chart. Get access to our expert market analyses and discover how y[..] https://www.ofx.com/en-au/forex-news/
USDJPY 20130505 2013 73 Find Latest Business News on Indian Economy, Earnings News including Quarte[..] http://www.moneycontrol.com/news/business/markets-/page-1781/
USDAUD 20171210 2017 72 Check our updated for AUDUSD News including real time updates, technical an[..] https://www.fxstreet.com/currencies/audusd
AUDCAD 20170702 2017 72 12 Jul 2017 [..]. Autodesk has announced a whole range of incentives to encou[..] http://www.techdatanewsflash.co.uk/single-post/2017/07/13/Autodesk-incentives-aim-to-get-customers-investing-more
EURJPY 20170625 2017 72 Interactive Chart, EUR/JPY technical analysis and real-time alerts for Euro[..] http://www.fxmania.com/currencies/EUR-JPY/40978392.html
EURCAD 20170319 2017 72 31 Mar 2017 [..]. On the 31st March 2017 the spot inter-bank market saw: Open[..] https://www.poundsterlinglive.com/best-exchange-rates/euro-to-canadian-dollar-exchange-rate-on-2017-03-31
EURAUD 20170212 2017 72 12 Jul 2017 [..]. AUD/USD has been at it all morning. NZD/USD is a bit of an [..] http://www.forexlive.com/news/!/more-usd-weakness-eur-aud-yen-nzd-and-more-all-up-20170712
AUDSEK 20170205 2017 72 Rates Table Converter 1 Australian Dollar Rates table Top 10 Jun 08, 2017 0[..] http://sunnysidebtc.tk/koqop/swedish-krona-to-australian-dollar-exchange-rate-2316.php
EURCAD 20160424 2016 72 Euro Exchange Rates (EUR/GBP, EUR/USD) Fluctuate Following Eurozone Inflati[..] https://www.euroexchangeratenews.co.uk/date/2016/04/page/8/
USDJPY 20160403 2016 72 7 Apr 2016 [..]. Kitco News' contributed commentary features articles and opi[..] http://www.kitco.com/commentaries/2016-04-08/Forex-Trading-Alert-USD-JPY-Declines-Are-Gaining-Steam.html
JPYGBP 20150920 2015 72 Company profile Chubu Securities Financing Co Ltd Chubu Securities Financin[..] https://www.sharewise.com/gb/company_infos/CSF/profile
GBPAUD 20150830 2015 72 Forex rates gbp aud. [..]. Reuters.co.uk for the latest currency news, curren[..] http://jobporalekha.tk/forex-rates-gbp-aud-371430.html
JPYCAD 20150405 2015 72 Category: Finance; Release Date: 2014-08-01; Current Version: 1.4; Adult Ra[..] http://constructii-instalatii.ro/apk/app/896450742/forex-trade-calculator-a-position-size-pip-value-trading-tool-for-the-fx-day-trader
EURUSD 20150315 2015 72 3 Aug 2015 [..]. EUR/USD Conversion Table History. See below quick comparisio[..] https://www.poundsterlinglive.com/best-exchange-rates/euro-to-us-dollar-exchange-rate-on-2015-08-03
CADGBP 20150125 2015 72 Examine the current British Pound Canadian Dollar rate and access to our GB[..] http://taxandinvesmentinfo.tk/wyfed/gbp-cad-forex-hupi.php
JPYCAD 20150111 2015 72 In interview with CoinDesk, Arruebarrena explained how NTT Data, which last[..] http://202.169.175.81/finance/company_news%3Fq%3DCURRENCY:JPY%26ei%3DZN82WZD0HZGV0ATGpZvIBg%26startdate%3D2015-01-01%26enddate%3D2015-02-01%26start%3D60%26num%3D10
SEKUSD 20141207 2014 72 28 Nov 2012 [..]. November 28, 2012 01:30 ET | Source: Alliance Oil Company L[..] https://globenewswire.com/news-release/2012/11/28/507779/0/en/Alliance-Oil-announces-preference-share-issue.html
USDJPY 20141116 2014 72 12 Apr 2016 [..]. Year to date, the dollar USDJPY, -0.01% has fallen 10.5% ag[..] http://www.marketwatch.com/story/6-reasons-for-the-japanese-yens-big-2016-rally-2016-04-12
EURSEK 20131013 2013 72 2, Listing date: 2013-10-24. 3. 4, Shortname, ISIN code, Call / Put, EU / A[..] https://www.ngnews.se/attachments/79926%3Flocale%3Dsv
AUDCAD 20130721 2013 72 30 Jul 2013 [..]. I have the -attedit code under control, but I cannot figure[..] http://forums.augi.com/showthread.php%3F151135-How-to-insert-today-s-date-into-attributed-block
AUDUSD 20130707 2013 72 Ripple Price Prediction: A Quick Comparison of XRP vs Bitcoin - December 6t[..] http://www.clickbaitmedia.net/wp-content/uploads/0qe4/0glzu.php%3Fylj%3Dxem-vs-xrp
EURJPY 20130224 2013 72 7 Nov 2016 [..]. The spread between EUR/JPY and EUR/USD 3m risk reversals is [..] https://www.fxstreet.com/news/buy-eur-usd-skew-against-eur-jpy-socgen-201611071035
AUDEUR 20171126 2017 71 GO TO PAGE. Yahoo Finance - Business Finance, Stock Market, Quotes, News. A[..] http://xsjjzivqng.ga/forex-aud-eur-history-3263723.html
CADAUD 20170702 2017 71 Forex news from ForexLive. The fastest Foreign Exchange [..]. Final BOJ meeti[..] http://www.forexlive.com/%3Fs%3DAUD
EURAUD 20170625 2017 71 4 days ago [..]. On this page, you will find free news and analysis about the[..] https://tradecaptain.com/euro
AUDEUR 20170312 2017 71 Find the inter-bank exchange rate on 3 September 2017 for the Australian Do[..] https://www.exchangerates.org.uk/AUD-EUR-03_09_2017-exchange-rate-history.html
USDJPY 20161211 2016 71 11 Feb 2016 [..]. Just like two days ago, when for the first time since 2011 [..] http://www.zerohedge.com/news/2016-02-11/bank-japan-intervention-sends-usdjpy-soaring
AUDCAD 20161002 2016 71 EPLAN Data Portal: Access for AutoCAD and ERP Users. 04/11/2016 10:40 - At [..] https://www.eplanusa.com/us/company/news/all-news/page/4/%3Feplan_setCookie%3D1
CADAUD 20161002 2016 71 The wells drilled during the 2015 campaign continue to deliver strong produ[..] http://www.vermilionenergy.com/news/news.cfm%3FnewsReleaseAction%3Dview%26releaseId%3D164
GBPUSD 20160626 2016 71 Get latest market information about GBP/USD pair including GBP USD Live Rat[..] http://infoyol.ml/forex-live-charts-gbpusd-787652.html
EURJPY 20160612 2016 71 I have been involved with forex and forex trading for a few years now. It i[..] http://www.forexprofitpros.com/eurjpy-consolidating-within-bullish-pennant/
JPYCAD 20160529 2016 71 COM - Exchange with USD EUR GBP JPY CAD BTC LTC XRP NMC XDG STR ETH. [..]. Bi[..] https://bitcointalk.org/index.php%3Ftopic%3D290799.3600
EURAUD 20160501 2016 71 Guangdong Wens Foodstuff Group to pay 2016 H1 div on Nov. 10. Guangdong Wen[..] http://www.reuters.com/sectors/industries/overview%3FindustryCode%3D113%26lc%3Dint_mb_1001
GBPAUD 20160313 2016 71 The Pound to Australian dollar exchange rate (GBP/AUD) was boosted Tuesday [..] http://194.78.99.23/finance/company_news%3Fq%3DCURRENCY:AUD%26ei%3D8mNuWbCBJMG-U_DGipAF%26startdate%3D2016-02-01%26enddate%3D2016-03-01%26start%3D40%26num%3D10
USDCAD 20160131 2016 71 18 Jan 2016 [..]. The continued deterioration in oil prices has led a sharp a[..] https://www.ig.com/en-ch/indices-news/2016/01/18/will-the-boc-spark-further-usd-cad-upside--30154
USDAUD 20150906 2015 71 9 Dec 2015 [..]. Find the inter-bank exchange rate on 9 December 2015 for the[..] https://www.exchangerates.org.uk/USD-AUD-09_12_2015-exchange-rate-history.html
EURCHF 20150118 2015 71 24 Oct 2017 [..]. The euro is rising sharply on Tuesday against the Swiss fra[..] https://www.fxstreet.com/news/eur-chf-jumps-toward-11650-highest-since-snb-shock-201710241859
USDAUD 20141214 2014 71 Australian Dollar (B) VS United States Dollar Spot (Aud/USD) share price an[..] https://www.advfn.com/stock-market/FX/AUDUSD/stock-price
EURAUD 20131208 2013 71 TR4DER - EUR/USD [EURUSD=X] 1 Year Chart and Summary, Quotes, News, Forum, [..] http://www.tr4der.com/info/EURUSD%3DX/1-year/
AUDUSD 20130512 2013 71 It's been mostly one way traffic since the RBA cut the cash rate three week[..] http://www.directfx.co.nz/FX%2BNews/x_archive/2013-05.html
AUDUSD 20130505 2013 71 Currency quotes and news from Reuters.com for AUD/USD. https://www.reuters.com/finance/currencies/quote%3FsrcCurr%3DAUD%26destCurr%3DUSD
AUDCAD 20130217 2013 71 Land Surveying Software based on IntelliCAD, and Windows CE based Surveying[..] http://www.microsurvey.com/
AUDSEK 20171203 2017 70 11/03/2017 12:04:03. A -0.05% loss takes the EUR/JPY to 132.8895. 11/03/201[..] http://www.fxmania.com/currencies/AUD-SEK/40894303.html%3Ffxmaniaen%3Dequ9uo9gulnapa4b7ls14g2tn7
USDCAD 20170903 2017 70 Forex - USD/CAD almost unchanged after downbeat Canadian data. June 07, 201[..] http://www.nasdaq.com/article/forex-usdcad-almost-unchanged-after-downbeat-canadian-data-cm800215
CADJPY 20170723 2017 70 Detail page of the symbol 'CAD/JPY Spot' with master data, quote data, late[..] https://www.teletrader.com/cad-jpy-spot/currencies/details/tts-76592914/performance6M/asc%3Fculture%3Den-GB
EURUSD 20161106 2016 70 21 Nov 2016 [..]. 8. The euro is currently trading at $1.06. Investors have v[..] http://fortune.com/2016/11/21/dollar-euro-parity-2017/
GBPAUD 20161002 2016 70 The Pound to Australian Dollar exchange rate (GBP/AUD) appears to have foun[..] http://188.43.64.119/finance/company_news%3Fq%3DCURRENCY:AUD%26ei%3DYQQ5WeiPJ5XAsAGq_afoBg%26startdate%3D2016-10-01%26enddate%3D2016-11-01%26start%3D50%26num%3D10
CADAUD 20160508 2016 70 Author: Surenchik Date of post: 17-Nov-2017. Ethtrade [..]. Registrar URL Dat[..] http://cieleckimeble.pl/znr/cryptocurrency%2Btraders%2Btwitter
AUDCAD 20160417 2016 70 Stay up to date with ThinkMarkets with the latest financial news, complete [..] https://www.thinkmarkets.com/au/market-news/%3Fpage%3D104
USDAUD 20160214 2016 70 None /books.google.com.au/books?id=b4wwDwAAQBAJ&pg=PA50&lpg=PA50&dq=USD+AUD+rate:201602+news&source=bl&ots=B6n_tGEwVm&sig=GKfUWGTLpP7r5vQBM1KJ5XnZPXw&hl=en&sa=X&ved=0ahUKEwjeuLHbqLnYAhWHqlQKHYMiCv04AhDoAQgvMAQ
EURCAD 20150809 2015 70 8 Mar 2015 [..]. Find the inter-bank exchange rate on 8 March 2015 for the Eu[..] https://www.exchangerates.org.uk/EUR-CAD-08_03_2015-exchange-rate-history.html
AUDCHF 20150802 2015 70 RBA shift tone As expected the RBA August Board meeting retained the cash r[..] https://en.swissquote.com/fx/news-and-live-signals/daily-forex-news/2015/08/04
EURJPY 20150628 2015 70 AASTOCKS.com offers stock analysis with 5-days forecast, 1 and live comment[..] http://aastocks.com/en/forex/market/dbindepth.aspx%3Fcountry%3D15%26indicator%3D140102%26startdate%3D2014/06/04%26enddate%3D2015/06/04
EURCAD 20150621 2015 70 EURCAD historical. 1.47195, 1.47234, 0.16, 2017.10.06 / 12:17:00. Bid, Ask,[..] http://teletrade.bg/analytics/quote/EURCAD/10
EURCAD 20150531 2015 70 Conservatives Victorious, but GBP/USD Eases Lower on US Jobs Data It's offi[..] https://www.euroexchangeratenews.co.uk/date/2015/05/page/13/
EURUSD 20150118 2015 70 6 Jan 2015 [..]. If you want to swap currencies today, you will get the rate [..] https://ftalphaville.ft.com/2015/01/06/2079862/the-dubious-relationship-between-yields-and-exchange-rates/
JPYUSD 20141102 2014 70 See the latest price data and market sentiment for the US dollar against th[..] https://www.ig.com/au/forex/markets-forex/usd-jpy
EURAUD 20140921 2014 70 9 May 2014 [..]. On the 9th May 2014 the spot inter-bank market saw: Open: 1 [..] https://www.poundsterlinglive.com/best-exchange-rates/euro-to-us-dollar-exchange-rate-on-2014-05-09
EURSEK 20140914 2014 70 9 Jun 2014 [..]. Historical Rates for the EUR/SEK currency conversion on 09 J[..] https://www.poundsterlinglive.com/best-exchange-rates/euro-to-swedish-krona-exchange-rate-on-2014-06-09
CHFCAD 20130106 2013 70 View the basic CADCHF=X stock chart on Yahoo Finance. Change the date range[..] https://finance.yahoo.com/q%3Fs%3DCADCHF%3DX
USDSEK 20171217 2017 69 12 Nov 2017 [..]. Historical Rates for the USD/SEK currency conversion on 12 [..] https://www.poundsterlinglive.com/best-exchange-rates/us-dollar-to-swedish-krona-exchange-rate-on-2017-11-12
USDEUR 20171210 2017 69 Convert Dollars to Euros. USD-EUR exchange rates (Taux de change, Verbrauch[..] https://www.dollars2euro.com/
CADUSD 20171126 2017 69 30 Nov 2017 [..]. TradingView UK. U.S. Dollar / Canadian Dollar (FX:USDCAD). [..] https://uk.tradingview.com/chart/USDCAD/nuBFMTxY-USDCAD-outlook-before-major-news/
USDJPY 20170910 2017 69 Pound Sterling (GBP) Live: Outlook Forecasts and Latest News presented in r[..] https://www.poundsterlinglive.com/data/currencies/usd-pairs/USDJPY-exchange-rate/
EURCAD 20170903 2017 69 Technical Analysis on EUR/CAD 18th of September. 2017-09-18 [..]. Fundamental[..] http://en.maximusfx.com/Analytics/ShowAnalysis/18_09_2017ec
GBPJPY 20170709 2017 69 Quote from: Dargo on July 24, 2017, 07:50:00 PM [..]. Sorry, but I don't have[..] https://bitcointalk.org/index.php%3Ftopic%3D290799.4645%3Bimode
USDCAD 20170611 2017 69 canadian dollar forecast currency USD CAD canadian dollar real time forex c[..] https://www.forexdirectory.net/cad.html
JPYCAD 20170611 2017 69 14 Dec 2017 [..]. [ANN] KRAKEN.COM - Exchange with USD EUR GBP JPY CAD BTC LT[..] https://bitcointalk.org/index.php%3Ftopic%3D290799.5800
GBPJPY 20170430 2017 69 21 Apr 2017 [..]. In this show of strength, the GBP/JPY pair rally during the[..] http://www.eracash.com/2017/04/gbpjpy-forecast-april-21-2017-technical.html
USDJPY 20170416 2017 69 13 Apr 2017 [..]. The USD/JPY pair broke down during the day on Wednesday, sl[..] https://www.dailyforex.com/forex-technical-analysis/2017/04/usdjpy-and-audusd-forecast-april-13-2017/78771
GBPAUD 20170226 2017 69 QUANT FORECAST INDICATORS DASHBOARD RELATIVE ANALYSIS [..]. To Sep 1, 2017 GB[..] https://www.wingcharts.com/%3Fsymbol%3DGBP/AUD
USDJPY 20170101 2017 69 26 Jan 2017 [..]. BAML says the year-to-date experience has been one of lower[..] https://www.cnbc.com/2017/01/26/us-rates-buy-dollar-and-sell-yen-bank-of-america.html
GBPAUD 20160710 2016 69 The Pound vs Australian Dollar: Latest GBP/AUD Forecasts, News and Analysis[..] http://www.poundsterlinglive.com/aud%3Fstart%3D280
USDCAD 20160626 2016 69 Forex - USD/CAD moves higher after U.S., Canadian data. [..]. Oct 06, 2016 06[..] http://www.moneycontrol.com/news/business/markets-business/forex-usdcad-moves-higher-after-us-canadian-data-958690.html
GBPEUR 20160626 2016 69 GBP EUR: Get all information on the British Pound to European Euro Exchange[..] http://markets.businessinsider.com/currencies/GBP-EUR
AUDEUR 20160619 2016 69 6 Nov 2016 [..]. Find the inter-bank exchange rate on 6 November 2016 for the[..] https://www.exchangerates.org.uk/AUD-EUR-06_11_2016-exchange-rate-history.html
USDJPY 20160612 2016 69 8 Jun 2016 [..]. Historical Rates for the USD/JPY currency conversion on 08 J[..] https://www.poundsterlinglive.com/best-exchange-rates/us-dollar-to-japanese-yen-exchange-rate-on-2016-06-08
JPYCAD 20160612 2016 69 19 Jun 2016 [..]. I see strength in Gold, JPY, CAD and CHF. Fundamental Analy[..] https://www.dailyforex.com/forex-technical-analysis/2016/06/forex-forecast-pairs-in-focus-june-19-2016/60595
USDJPY 20160424 2016 69 7 Apr 2016 [..]. Kitco News' contributed commentary features articles and opi[..] http://www.kitco.com/commentaries/2016-04-08/Forex-Trading-Alert-USD-JPY-Declines-Are-Gaining-Steam.html
EURAUD 20151213 2015 69 12 Aug 2015 [..]. Historical Rates for the EUR/USD currency conversion on 12 [..] https://www.poundsterlinglive.com/best-exchange-rates/euro-to-us-dollar-exchange-rate-on-2015-08-12
AUDCAD 20151213 2015 69 28 Dec 2015 [..]. Connecting and extracting data from GeoNB. GeoNB. Note that[..] http://www.atlantic-cad.com/2015/12/28/autocad-connecting-geonb/
GBPAUD 20150906 2015 69 9 Sep 2015 [..]. Find the inter-bank exchange rate on 9 September 2015 for th[..] https://www.exchangerates.org.uk/GBP-AUD-09_09_2015-exchange-rate-history.html
JPYCAD 20150830 2015 69 CFTC - Commitments of Traders: speculators less bearish on EUR, JPY, CAD [..][..] http://www.moneycontrol.com/news/tags/jpy.html
AUDEUR 20150712 2015 69 16 Dec 2017 [..]. The AUD EUR exchange rate fluctuated on Friday as markets r[..] http://nine.currency-news.com.au/news/aud-eur/aud-eur-exchange-rate-fluctuates-on-narrowing-eurozone-trade-surplus-1238/
CADUSD 20150315 2015 69 The median reading on the Fed's quarterly ÿ?dot plot,ÿݠwhich measures Fe[..] http://www.marketwatch.com/story/dollar-trapped-in-a-tight-range-ahead-of-fomc-outcome-2015-03-18
AUDJPY 20131020 2013 69 AUD/JPY Technical Outlook before Cash Rate After the AUD/JPY currency pair [..] https://www.pinterest.com.au/pin/726416614866336951/
AUDUSD 20130811 2013 69 Find Latest Business News on Indian Economy, Earnings News including Quarte[..] http://www.moneycontrol.com/news/business/markets-/page-1948/
AUDUSD 20130623 2013 69 07/10/2013 06:53:17 Forex [..]. AUD/USD hit 0.9411 during late Asian trade, t[..] https://www.snpinvestments.com/markets-news%3Fid%3Dforex---audusd-edges-lower-amid-us-shutdown-concerns--253530
USDAUD 20130526 2013 69 AUDUSD touches a three year low: Mecklai August 06, 2013 05:04 PM IST [..]. W[..] http://www.moneycontrol.com/news/tags/rba.html
AUDUSD 20130519 2013 69 It's been mostly one way traffic since the RBA cut the cash rate three week[..] http://www.directfx.co.nz/FX%2BNews/x_archive/2013-05.html
EURAUD 20171217 2017 68 Emerging Markets: A crucial EUR outlook - TDS. By Sandeep Kanihama | 59 min[..] https://www.fxstreet.com/news
GBPSEK 20171210 2017 68 Detail page of the symbol 'GBP/SEK Spot' with master data, quote data, late[..] https://www.teletrader.com/gbp-sek-spot/traders/screen/tts-76592929/performance3M
USDCAD 20171029 2017 68 USD CAD: Get all information on the United States Dollar to Canadian Dollar[..] http://markets.businessinsider.com/currencies/USD-CAD
CADJPY 20170903 2017 68 Interactive Chart, CAD/JPY technical analysis and real-time alerts for Cana[..] http://www.fxmania.com/currencies/CAD-JPY/40100580.html%3Ffxmaniaen%3Derv8v3t3p4hdqt6p8861ju6d06
USDCAD 20170730 2017 68 28 Jul 2017 [..]. Yesterday, the greenback extended losses against the Canadi[..] http://www.futuresmag.com/2017/07/28/will-usdcad-drop-further
EURJPY 20170702 2017 68 Thursday, 26.10.2017, 07:24. EUR/JPY Recorded an Almost 3-Year High - Next [..] https://www.jfdbrokers.com/en/research-education/jfd-research/strategic-report/8-forex/13053-eur-jpy-recorded-an-almost-3-year-high-next-resistance-at-136-90-h1.html
GBPSEK 20170423 2017 68 Find the inter-bank exchange rate on 4 October 2017 for the British Pound t[..] https://www.exchangerates.org.uk/GBP-SEK-04_10_2017-exchange-rate-history.html
USDJPY 20170115 2017 68 26 Jan 2017 [..]. BAML says the year-to-date experience has been one of lower[..] https://www.cnbc.com/2017/01/26/us-rates-buy-dollar-and-sell-yen-bank-of-america.html
JPYCAD 20161106 2016 68 Find the inter-bank exchange rate on11 August 2016 for the Japanese Yen to [..] https://www.exchangerates.org.uk/JPY-CAD-11_08_2016-exchange-rate-history.html
USDGBP 20160626 2016 68 14 Jun 2016 [..]. Date14 Jun 2016. /. CategoriesForex Market News. Market Rou[..] http://www.firewoodfx.com/id/post/date/2016/06/14/
USDJPY 20160410 2016 68 7 Apr 2016 [..]. Kitco News' contributed commentary features articles and opi[..] http://www.kitco.com/commentaries/2016-04-08/Forex-Trading-Alert-USD-JPY-Declines-Are-Gaining-Steam.html
JPYCAD 20151213 2015 68 Weekly Trading Outlook August 3 Focus on data, meetings and currencies (USD[..] http://www.amirapress.com/tag/weekly-trading-outlook-august-3-focus-on-data-meetings-and-currencies-usd-gbp-aud-jpy-cad
AUDCAD 20151004 2015 68 27 Oct 2015 [..]. Runtime errors, as in the image above are pretty rare in Au[..] http://www.atlantic-cad.com/2015/10/27/autocad-runtime-error/
USDEUR 20150308 2015 68 Risk Warning: Trading Forex and CFDs on margin carries a high level of risk[..] http://www.teletrade-asia.com/en/analytics/quote/EURUSD/73
GBPCAD 20150201 2015 68 2015-02-27 | OzForex. US Dollar vs [..]. There are no other domestic data out[..] http://www.tranzfers.com/Common/Region/Change%3FCultureId%3Den-CA%26ReturnUrl%3D%252FPublic%252FHome%252FMarketInfoDetails%252F123741
USDEUR 20150125 2015 68 9 Jan 2015 [..]. Goldman last made a meaningful downward revision to their EU[..] http://www.zerohedge.com/news/2015-01-09/goldman-slashes-eurusd-forecast-parity
EURSEK 20141019 2014 68 EUR/SEK rallied hard to 9.2817 after the ECB's 1.7bn covered bond purchases[..] https://cs.swissquote.com/fx/news-and-live-signals/daily-forex-analysis/2014/10/28
CHFCAD 20130414 2013 68 Why does it matter? ÿ? Bible News Prophecy Radio [..][..] SintesiFX - SintesiF[..] https://www.pinterest.co.uk/pin/497436721314527720/
AUDEUR 20130120 2013 68 Get latest market information about EUR/AUD pair including EUR AUD Live Rat[..] https://www.dailyfx.com/eur-aud
AUDEUR 20170716 2017 67 Interactive Chart, AUD/EUR technical analysis and real-time alerts for Aust[..] http://www.fxmania.com/currencies/AUD-EUR/40036978.html%3Ffxmaniaen%3D2otc1ncl086o2lkc825t3m3l31
USDJPY 20170326 2017 67 8 Mar 2017 [..]. On the data front, today, another quiet session ahead, atten[..] https://www.fxcompare.com.au/forex-news/mar-2017/forex-trends-2017-03-08/
GBPSEK 20170226 2017 67 http://en.boerse-frankfurt.de/currencies/chart/GBP
AUDUSD 20161106 2016 67 30 Nov 2016 [..]. USD/AUD Conversion Table History. See below quick comparisi[..] https://www.poundsterlinglive.com/best-exchange-rates/us-dollar-to-australian-dollar-exchange-rate-on-2016-11-30
SEKUSD 20160925 2016 67 https://www.cmcmarkets.com/en-au/news-and-analysis/the-euro-and-pound-rise-[..] https://www.cmcmarkets.com/en-au/sitemap-news-archived.xml
GBPAUD 20160918 2016 67 QUANT FORECAST INDICATORS DASHBOARD RELATIVE ANALYSIS [..][..] Great British Po[..] https://www.wingcharts.com/%3Fsymbol%3DGBP%252FAUD%26period%3Dw
GBPAUD 20160619 2016 67 Find financial news for Australian Dollar (CURRENCY:AUD) using Google Finan[..] http://187.7.117.18/finance/company_news%3Fq%3DCURRENCY:AUD%26ei%3DicxaWeCYF4zCe5_ZkuAB%26startdate%3D2016-06-01%26enddate%3D2016-07-01%26start%3D40%26num%3D10
AUDUSD 20160508 2016 67 4 Aug 2017 [..]. AUD/USD lifted 4.1% over the month of July because of a weak[..] https://www.commbank.com.au/guidance/economy/what-makes-the-australian-dollar-move--201605.html
USDAUD 20150719 2015 67 Find financial news for Australian Dollar (CURRENCY:AUD) using Google Finan[..] http://200.149.119.147/finance/company_news%3Fq%3DCURRENCY:AUD%26ei%3D_L7EWODaAYSje5bbhcgJ%26startdate%3D2015-07-01%26enddate%3D2015-08-01%26start%3D10%26num%3D10
USDSEK 20150614 2015 67 Pound to Euro Exchange Rate News Predictions and Forecasts for the British [..] http://www.currencywatch.co.uk/best-us-dollar-exchange-rates/us-dollar-to-swedish-krona-exchange-rate-on-2015-07-06
USDEUR 20150322 2015 67 Risk Warning: Trading Forex and CFDs on margin carries a high level of risk[..] http://www.teletrade-asia.com/en/analytics/quote/EURUSD/73
GBPAUD 20131229 2013 67 The Pound to Australian dollar exchange rate (GBP/AUD) was boosted Tuesday [..] http://62.231.75.247/finance/company_news%3Fq%3DCURRENCY:AUD%26ei%3DjeaNWdmyK4qCswH9y724Dg%26startdate%3D2013-12-01%26enddate%3D2014-01-01%26start%3D40%26num%3D10
CHFCAD 20130818 2013 67 http://jwallacephoto.com/blog/wp-content/uploads/2013/08/square-register- p[..] https://www.pinterest.co.uk/pin/565131453233299857/
USDSEK 20130616 2013 67 29 Nov 2017 [..]. Get the latest price quotes and detailed information on USD[..] http://starunload.gq/1-usd-in-sek-forex-219296.html
AUDEUR 20130526 2013 67 The central bank also cautioned against the current strength of the Austral[..] http://62.75.10.16/finance/company_news%3Fq%3DCURRENCY:AUD%26ei%3DDDaPWdmdMo3ysQGrk57gDQ%26startdate%3D2013-04-01%26enddate%3D2013-05-01%26start%3D60%26num%3D10
AUDEUR 20130303 2013 67 30 Jun 2013 [..]. The dynamic financial markets in Australia reflect many yea[..] https://afma.com.au/data/afmr/2013%2520AFMR.PDF
AUDEUR 20130224 2013 67 [..]. to Australian Dollar (EUR/AUD) exchange rate climb. The EUR/AUD pairing[..] https://www.futurecurrencyforecast.com/news/eur/eur-aud/
AUDJPY 20130113 2013 67 Tweet. Log In. or. Register. to leave comments. Home ׺ News ׺ Rules ׺ Re[..] https://www.dukascopy.com/fxcomm/technical_analysis/%3Faction%3Dblog%26nickname%3DAngleRMS%26post_id%3D175851
EURCAD 20171119 2017 66 EUR/CAD exchange rate. Charts, forecast poll, current trading positions and[..] https://www.fxstreet.com/rates-charts/eurcad
AUDCAD 20170917 2017 66 Free realtime forex chart for AUDCAD (Australian Dollar / Canadian Dollar) [..] http://forex.tradingcharts.com/chart/Australian%2520Dollar_Canadian%2520Dollar.html
JPYCAD 20170827 2017 66 CFTC - Commitments of Traders: speculators less bearish on GBP, JPY, CAD,. [..] http://www.moneycontrol.com/news/business/markets-business/cftc-commitmentstraders-speculators-less-bearishgbp-jpy-cad-aud-1518481.html
USDCAD 20170820 2017 66 31 Aug 2017 [..]. The USD/CAD currency pair today suffered a major decline af[..] https://www.earnforex.com/news/2017/08/31/usdcad-declines-drastically-on-us-and-canada-data/
JPYCAD 20170730 2017 66 Interactive Chart, JPY/CAD technical analysis and real-time alerts for Japa[..] http://www.fxmania.com/currencies/JPY-CAD/40100329.html%3Ffxmaniaen%3D5a897ie1tvjmu3smo44bqmbij5
GBPJPY 20170226 2017 66 2 May 2017 [..]. Historical Rates for the GBP/JPY currency conversion on 02 M[..] https://www.poundsterlinglive.com/best-exchange-rates/british-pound-to-japanese-yen-exchange-rate-on-2017-05-02
USDJPY 20161113 2016 66 Forex Trading Alert originally published on Apr 7, 2016, 11:16 AM. Earlier [..] http://www.kitco.com/commentaries/2016-04-08/Forex-Trading-Alert-USD-JPY-Declines-Are-Gaining-Steam.html
AUDUSD 20160807 2016 66 25 Aug 2016 [..]. AUD:USD interest rate differential Figure 1 shows there is [..] http://thewire.fiig.com.au/article/commentary/opinion/2016/08/25/aud-usd-overvalued-by-nearly-10-cents
USDJPY 20160717 2016 66 11 Feb 2016 [..]. Just like two days ago, when for the first time since 2011 [..] https://www.zerohedge.com/news/2016-02-11/bank-japan-intervention-sends-usdjpy-soaring
GBPAUD 20160717 2016 66 The Pound vs Australian Dollar: Latest GBP/AUD Forecasts, News and Analysis[..] http://www.poundsterlinglive.com/aud%3Fstart%3D280
EURAUD 20160717 2016 66 7 Dec 2016 [..]. Historical Rates for the EUR/USD currency conversion on 07 D[..] https://www.poundsterlinglive.com/best-exchange-rates/euro-to-us-dollar-exchange-rate-on-2016-12-07
AUDGBP 20160626 2016 66 AUD GBP Exchange Rate Soars on Weak US Dollar and Rising Risk Appetite. The[..] http://nine.currency-news.com.au/
AUDUSD 20160228 2016 66 11 Feb 2016 [..]. Stock Market Rout Weighs on Commodity-Correlated 'Aussie'. [..] https://news.torfx.com/post/2016-02-11_audusd-softens-on-fears-of-imminent-fed-rate-hike/
EURCAD 20160214 2016 66 8 Feb 2016 [..]. On the 8th February 2016 the spot inter-bank market saw: Ope[..] https://www.poundsterlinglive.com/best-exchange-rates/euro-to-canadian-dollar-exchange-rate-on-2016-02-08
JPYCAD 20151018 2015 66 Find Latest Business News on Indian Economy, Earnings News including Quarte[..] http://www.moneycontrol.com/news/business/markets-/page-1258/
AUDEUR 20150830 2015 66 11 Aug 2017 [..]. Risk-aversion caused investors to sell the AUD EUR exchange[..] http://exchangeratenews.com.au/aud-eur-one-month-lows-30190
AUDUSD 20150809 2015 66 13 Aug 2015 [..]. AUD/USD Conversion Table History. See below quick comparisi[..] https://www.poundsterlinglive.com/best-exchange-rates/australian-dollar-to-us-dollar-exchange-rate-on-2015-08-13
USDAUD 20150809 2015 66 8 Dec 2015 [..]. Find the inter-bank exchange rate on 8 December 2015 for the[..] https://www.exchangerates.org.uk/USD-AUD-08_12_2015-exchange-rate-history.html
USDSEK 20150503 2015 66 22 May 2015 [..]. Historical Rates for the USD/SEK currency conversion on 22 [..] https://www.poundsterlinglive.com/best-exchange-rates/us-dollar-to-swedish-krona-exchange-rate-on-2015-05-22
AUDJPY 20141012 2014 66 86.295, 86.337, -0.65, 2017.08.29 / 05:15:48. Bid, Ask, Change, %, Date/Tim[..] https://www.teletrade.eu/analytics/quote/AUDJPY/24
EURJPY 20140907 2014 66 9 Aug 2014 [..]. Find the inter-bank exchange rate on 9 August 2014 for the E[..] https://www.exchangerates.org.uk/EUR-JPY-09_08_2014-exchange-rate-history.html
AUDUSD 20130616 2013 66 Daily financial analyses of Silver, Gold, Crude Oil, USD/CAD, AUD/USD, USD/[..] https://www.trading212.de/en/Financial-Analyses%3Fdate%3D2013-06-24%26tz%3DTZ1
AUDEUR 20130602 2013 66 Thank you so much for teaching James so well. More importantly, your friend[..] http://www.knbeducation.com/_blog/My_Blog/post/Thank_you_KnB!!!/%3Fpage%3D239
EURJPY 20130519 2013 66 News Details for (FEJ) CURRENCY WARRANT EUR/JPY. Ctr, Links, Date, News , S[..] https://www.ozsuper.com/ax_b/b_FEJ.php
AUDEUR 20130519 2013 66 News Details for (FXE) CURRENCY WARRANT AUD/EUR. Ctr, Links, Date, News, Sc[..] https://www.ozsuper.com/ax_b/b_FXE.php
EURJPY 20130203 2013 66 The bullish move in EUR/JPY. Find the latest EUR JPY news from around the w[..] http://zxnuhetoveqe.cf/5ad3268f.html
EURCAD 20171217 2017 65 EUR/CAD exchange rate. Charts, forecast poll, current trading positions and[..] https://www.fxstreet.com/rates-charts/eurcad
AUDCAD 20171015 2017 65 16 Oct 2017 [..]. AUD/CAD 0.9825 , -0.0007 , -0.07%. After opening [..]. Haddad[..] https://www.businessinsider.com.au/australia-dollar-weak-us-inflation-data-2017-10
CADGBP 20170924 2017 65 Friday, September 8th: The British pound started to rise again against the [..] https://www.tititudorancea.com/z/cad_to_gbp_exchange_rates_canadian_dollar_british_pound.htm
AUDCAD 20170319 2017 65 Download End of Day and Intraday, Currency and Exchange Rate Quotes for Aus[..] titial?url=http://www.fxcalc.com/currency/rate/audcad.htm
AUDCAD 20170129 2017 65 20 Jan 2017 [..]. Due to the huge popularity of our Revit Essentials training[..] https://www.bmarq.co.uk/blog/page/5/
USDCAD 20151220 2015 65 USD CAD: Get all information on the United States Dollar to Canadian Dollar[..] http://markets.businessinsider.com/currencies/USD-CAD
GBPCAD 20150823 2015 65 24 Aug 2015 [..]. Encouraging news helped to bolster the GBP/CAD pairing to a[..] https://news.torfx.com/post/2015-08-24_pound-to-canadian-dollar-exchange-rate-hit-seven-year-high-today/
GBPAUD 20150719 2015 65 7 Sep 2015 [..]. Find the inter-bank exchange rate on 7 September 2015 for th[..] https://www.exchangerates.org.uk/GBP-AUD-07_09_2015-exchange-rate-history.html
USDAUD 20150412 2015 65 [..]. price of core commodities like iron ore and slowing Australian growth r[..] https://www.futurecurrencyforecast.com/news/usd/usd-aud/
EURAUD 20150329 2015 65 3 Feb 2015 [..]. Historical Rates for the EUR/USD currency conversion on 03 F[..] https://www.poundsterlinglive.com/best-exchange-rates/euro-to-us-dollar-exchange-rate-on-2015-02-03
USDAUD 20150315 2015 65 Find the inter-bank exchange rate on 3 March 2015 for the US Dollar to Aust[..] https://www.exchangerates.org.uk/USD-AUD-03_03_2015-exchange-rate-history.html
USDCAD 20150201 2015 65 22 Feb 2015 [..]. Traders could look to buy the pair at market C$1.2540, keep[..] https://www.ig.com/sg/trading-ideas/2015/02/23/usd-cad-a-tactical-buy-23039
USDJPY 20141130 2014 65 12 Apr 2016 [..]. Year to date, the dollar USDJPY, -0.01% has fallen 10.5% ag[..] http://www.marketwatch.com/story/6-reasons-for-the-japanese-yens-big-2016-rally-2016-04-12
AUDCAD 20140914 2014 65 14 Oct 2014 [..]. The 2015 releases of AutoCAD for Mac and AutoCAD LT for Mac[..] https://www.businesswire.com/news/home/20141014005063/en/AutoCAD-Mac-2015-AutoCAD-LT-Mac-2015
AUDCAD 20140907 2014 65 14 Oct 2014 [..]. The 2015 releases of AutoCAD for Mac and AutoCAD LT for Mac[..] https://www.businesswire.com/news/home/20141014005063/en/AutoCAD-Mac-2015-AutoCAD-LT-Mac-2015
AUDCHF 20130630 2013 65 Date, Symbol, Trend, Strength, Difference, RoCT, HShT, HShD2, PV. 2013-07-0[..] http://fxpersian.com/en/forecasts/Forex/daily-trading-opportunity/AUDCHF%3Fpage%3D37
CADCHF 20130224 2013 65 News. Swiss Franc Update February 08, 2015. ICM Capital is pleased to annou[..] http://www.icmcapital.co.uk/press_release/2015-02-08.php
USDEUR 20171126 2017 64 8 Nov 2017 [..]. USDJPY starting to turn. EURUSD steady. USDCAD weighed down [..] https://www.ebcfx.com/news/36/USDJPY-starting-to-turn-EURUSD-steady-USDCAD-weighed-down-by-cross-flows-again-CAD-EUR-USD-JPY-GBP
AUDCAD 20171105 2017 64 BER Currency News articles keep you up-to-date on events from around the wo[..] http://bestexchangerates.com/info/news/
USDJPY 20170924 2017 64 Pound Sterling (GBP) Live: Outlook Forecasts and Latest News presented in r[..] https://www.poundsterlinglive.com/data/currencies/usd-pairs/USDJPY-exchange-rate/
GBPAUD 20170924 2017 64 Forex news gbp aud. [..]. Get your FREE Pound to Australian Dollar (GBP/AUD) [..] http://infolokerpabrik.tk/forex-news-gbp-aud-549671.html
AUDCHF 20170806 2017 64 Find the inter-bank exchange rate on 8 September 2017 for the Australian Do[..] https://www.exchangerates.org.uk/AUD-CHF-08_09_2017-exchange-rate-history.html
USDCAD 20170305 2017 64 31 Mar 2017 [..]. Some 20 and 50 CAD bills The USD/CAD today declined signifi[..] https://www.earnforex.com/news/2017/03/31/usdcad-declines-after-release-of-canadas-gdp-data/
JPYCAD 20170129 2017 64 Download End of Day and Intraday, Currency and Exchange Rate Quotes for Jap[..] titial?url=http://www.fxcalc.com/currency/rate/jpycad.htm
GBPJPY 20160529 2016 64 Europe Roundup: Shares trading mixed, Yen slips on intervention warning, Oi[..] http://www.firewoodfx.com/post/date/2016/05/09/
USDAUD 20160501 2016 64 5p 6p 7p 8p 9p 10p 11p 12a 1a 2a 3a 4a 5a 6a 7a 8a 9a 10a 11a 12p 1p 2p 3p [..] https://www.bloomberg.com/quote/AUDUSD:CUR
USDAUD 20160103 2016 64 Find the inter-bank exchange rate on 1 July 2016 for the US Dollar to Austr[..] https://www.exchangerates.org.uk/USD-AUD-01_07_2016-exchange-rate-history.html
AUDEUR 20151004 2015 64 6 Oct 2015 [..]. Since that date the Aussie is largely unchanged against the [..] https://www.businessinsider.com.au/the-australian-dollar-is-trading-higher-2015-10
EURUSD 20150823 2015 64 04/20/2015 08:44:57. EUR/USD suggesting that we could be gearing up for a r[..] http://www.fxmania.com/forex-analysis/eur-usd-suggesting-we-could-gearing-for-rebound/5687.html%3Ffxmaniaen%3Djdhblt0to02nsgp7qlpb65mdg1
CADEUR 20150816 2015 64 21 Apr 2015 [..]. LG's upcoming flagship device, the LG G4 will be launched o[..] http://www.firstpost.com/tech/news-analysis/lg-g4-to-be-launched-on-28-april-likely-to-come-with-snapdragon-808-soc-3666957.html
EURAUD 20150621 2015 64 1.49851, 1.49896, 0.04, 2017.09.01 / 05:34:30. Bid, Ask, Change, %, Date/Ti[..] https://www.teletrade.eu/analytics/quote/EURAUD/20
EURCAD 20150524 2015 64 Conservatives Victorious, but GBP/USD Eases Lower on US Jobs Data It's offi[..] https://www.euroexchangeratenews.co.uk/date/2015/05/page/13/
EURAUD 20150208 2015 64 26 Feb 2015 [..]. Yesterday's Construction Work figure in Australia came in j[..] http://www.torfx.com.au/blog/date/2015/02/
EURAUD 20140601 2014 64 Hi, I'm somewhat new (been trading on and off for several years but recentl[..] http://forums.babypips.com/t/eur-usd-6-5-14/65402
AUDJPY 20130616 2013 64 You are not logged in, you need subscription to view up-to-date forecasts, [..] http://forecastcity.com/hy/forecasts/Forex/daily-trading-opportunity/AUDJPY/10296
EURAUD 20121230 2012 64 Currency quotes and news from Reuters.com for EUR/USD. https://www.reuters.com/finance/currencies/quote%3FsrcCurr%3DEUR%26destCurr%3DUSD
JPYCAD 20171210 2017 63 Get free information about Japanese Yen to Canadian DollarRate,JPY to CAD C[..] http://cnfxonline.com/forex/currency/JPYCAD.html
JPYCAD 20171105 2017 63 Sorry, but I don't have any news to share at this time on the launch date f[..] https://bitcointalk.org/index.php%3Ftopic%3D290799.4625%3Bimode
USDCAD 20161211 2016 63 Moves toward the key topside target The USDCAD has been goosed higher on th[..] http://www.forexlive.com/news/!/forex-technical-analysis-usdcad-taking-off-after-weaker-data-20161021
USDAUD 20161009 2016 63 10 Aug 2016 [..]. Historical Rates for the USD/AUD currency conversion on 10 [..] https://www.poundsterlinglive.com/best-exchange-rates/us-dollar-to-australian-dollar-exchange-rate-on-2016-08-10
USDJPY 20160731 2016 63 11 Feb 2016 [..]. Just like two days ago, when for the first time since 2011 [..] https://www.zerohedge.com/news/2016-02-11/bank-japan-intervention-sends-usdjpy-soaring
EURCAD 20160626 2016 63 28 Jun 2016 [..]. Historical Rates for the EUR/CAD currency conversion on 28 [..] https://www.poundsterlinglive.com/best-exchange-rates/euro-to-canadian-dollar-exchange-rate-on-2016-06-28
JPYUSD 20160403 2016 63 7 Apr 2016 [..]. Asia Markets Wrap: The BoJ drops rates below zero, USDJPY ro[..] https://www.axitrader.com/au/market-news-blog/market-analysis/2016/04/markets-in-focus-forex-usdjpy-is-going-to-cripple-japan-it-cant-be-long-till-authorities-react
USDCAD 20160103 2016 63 18 Jan 2016 [..]. The continued deterioration in oil prices has led a sharp a[..] https://www.ig.com/en-ch/indices-news/2016/01/18/will-the-boc-spark-further-usd-cad-upside--30154
USDCAD 20151213 2015 63 1 Dec 2015 [..]. The U.S. dollar edged lower against major rivals Tuesday, fa[..] http://www.marketwatch.com/story/yen-gains-on-reports-of-currency-hedging-by-japans-mega-pension-fund-2015-12-01
USDJPY 20150823 2015 63 Friday, 08.05.2015, 08:58. USD/JPY (Rainbow M5) in the direction of other h[..] https://www.jfdbrokers.com/en/research-education/jfd-research/strategic-report/8-forex/6706-usd-jpy-rainbow-m5-in-the-direction-of-other-highs-on-the-way.html
EURSEK 20150628 2015 63 9.53826, 9.54271, 0.13, 2017.10.10 / 04:40:47. Bid, Ask, Change, %, Date/Ti[..] https://www.teletrade.eu/analytics/quote/EURSEK/5
EURAUD 20150412 2015 63 Navigation Path: HomeÿȓtatisticsÿȅCB/Eurosystem policy and exchange rat[..] https://www.ecb.europa.eu/stats/policy_and_exchange_rates/euro_reference_exchange_rates/html/eurofxref-graph-aud.en.html
EURSEK 20150208 2015 63 2 Jan 2015 [..]. Find the inter-bank exchange rate on 2 January 2015 for the [..] https://www.exchangerates.org.uk/SEK-EUR-02_01_2015-exchange-rate-history.html
EURSEK 20150118 2015 63 9.94145, 9.94515, -0.22, 2017.12.01 / 10:36:59. Bid, Ask, Change, %, Date/T[..] http://teletradecambodia.com/analytics/quote/EURSEK/18
EURJPY 20141102 2014 63 For the years 2005 to 2011, the trade relationship produced an average annu[..] https://www.fxcm.com/insights/eurjpy-currency-pair/
GBPAUD 20130818 2013 63 Date, Symbol, Trend, Strength, Difference, RoCT, HShT, HShD2, PV. 2013-08-1[..] http://forecastct.com/en/forecasts/Forex/daily-trading-opportunity/GBPAUD%3Fpage%3D36
AUDUSD 20130804 2013 63 Find Latest Business News on Indian Economy, Earnings News including Quarte[..] http://www.moneycontrol.com/news/business/markets-/page-1948/
USDJPY 20130616 2013 63 Find Latest Business News on Indian Economy, Earnings News including Quarte[..] http://www.moneycontrol.com/news/business/markets-business/page-1795/
AUDCHF 20130526 2013 63 Japanese Housing Starts rises more-than-expected. 28/06/2013 05:00:00 Econo[..] https://www.ezinvest.com/markets-news%3Fpage%3D7200
USDJPY 20130519 2013 63 Find Latest Business News on Indian Economy, Earnings News including Quarte[..] http://www.moneycontrol.com/news/business/markets-/page-1781/
USDJPY 20130414 2013 63 Forex - USD/JPY jumps to multi-year high ahead of jobs report. 04/01/2013 0[..] http://www.fxmsolutions.com/markets-news%3Fid%3Dforex---usdjpy-jumps-to-multi-year-high-ahead-of-jobs-report-242632
AUDCHF 20130414 2013 63 Dear Mr. Administrator and Mooderator's Please Allow me to Open this thread[..] http://forum.forexpeoples.com/showthread.php/23998-Daily-Technical-Analysis-for-AUDCHF-(Australian-Dollar-vs-Swiss-Franc)/page67
USDJPY 20130331 2013 63 Category: Finance; Release Date: 2013-03-07; Current Version: 3.90; Adult R[..] http://shampooch.ca/apk/app/591644846/stock-master-realtime-stocks
JPYUSD 20130106 2013 63 Live U.S. Dollar/Japanese Yen chart. Free online platform for market analys[..] https://www.tradingview.com/symbols/USDJPY/
JPYUSD 20171217 2017 62 Free historical data for the USD JPY (US Dollar Japanese Yen) currency pair[..] https://za.investing.com/currencies/usd-jpy-historical-data
AUDEUR 20170924 2017 62 Imagines VI, Toulouse 2018, CfP released! We are very pleased to announce t[..] http://www.imagines-project.org/category/news/
GBPJPY 20170917 2017 62 This post was originally published on this site. The GBP/JPY pair is consol[..] https://forexforum.asia/news/2017/09/11/gbpjpy-jumps-to-1-month-highs/
GBPCAD 20170730 2017 62 11 Jul 2017 [..]. UK data proved distinctly disappointing over the course of [..] https://news.torfx.com/post/2017-07-11_gbp-cad-under-pressure-ahead-of-anticipated-boc-rate-hike/
USDJPY 20170709 2017 62 27 Jul 2017 [..]. EUR/USD: Euro Must Be Watched by Traders. The Euro has gain[..] https://www.supertradertv.com/2017/07/27/top-trading-tips-eurusd-gold-usdjpy-11/
EURCAD 20170507 2017 62 5 May 2017 [..]. Historical Rates for the EUR/CAD currency conversion on 05 M[..] https://www.poundsterlinglive.com/best-exchange-rates/euro-to-canadian-dollar-exchange-rate-on-2017-05-05
AUDCHF 20170507 2017 62 Interactive Chart, AUD/CHF technical analysis and real-time alerts for Aust[..] http://www.fxmania.com/currencies/AUD-CHF/40100258.html%3Ffxmaniaen%3Dmeolsm4j04lc9606obb15g3dt6
USDJPY 20170423 2017 62 13 Apr 2017 [..]. The USD/JPY pair broke down during the day on Wednesday, sl[..] https://www.dailyforex.com/forex-technical-analysis/2017/04/usdjpy-and-audusd-forecast-april-13-2017/78771
AUDJPY 20170416 2017 62 Date, Symbol, Trend, Strength, Difference, RoCT, HShT, HShD2, PV. 2017-04-2[..] http://www.forcastcity.com/en/forecasts/Forex/daily-trading-opportunity/AUDJPY%3Fpage%3D4
USDCAD 20170226 2017 62 4 Nov 2016 [..]. Investing.com -. Investing.com - The U.S. rose to eight-mont[..] http://www.moneycontrol.com/news/business/markets-business/forex-usdcad-rises-to-8-month-highs-after-us-canadian-data-1006705.html
AUDCAD 20160731 2016 62 NAPA chooses AutoCAD OEM to deliver world-leading structural drawings. in I[..] http://www.hellenicshippingnews.com/napa-chooses-autocad-oem-to-deliver-world-leading-structural-drawings/
CADJPY 20160724 2016 62 Date, Sat, 10/08/2016 - 19:27. Current, range bound. Forecast, beginning of[..] http://www.forcastcity.com/en/forecasts/Forex/weekly/CADJPY/5037
USDCAD 20160717 2016 62 18 Mar 2016 [..]. Signs that USD/CAD was about to strengthen quickly evaporat[..] https://www.poundsterlinglive.com/cad/4041-us-dollar-to-canadian-dollar-has-bullish-outlook-according-to-j-p-morgan-s-hui
EURSEK 20160619 2016 62 Find the inter-bank exchange rate on 6 April 2016 for the Euro to Swedish K[..] https://www.exchangerates.org.uk/EUR-SEK-06_04_2016-exchange-rate-history.html
USDJPY 20160605 2016 62 8 Jun 2016 [..]. Historical Rates for the USD/JPY currency conversion on 08 J[..] https://www.poundsterlinglive.com/best-exchange-rates/us-dollar-to-japanese-yen-exchange-rate-on-2016-06-08
USDJPY 20160501 2016 62 May 4, 2016 [..]. Europe Roundup: Stocks slide for second consecutive day on [..] http://www.firewoodfx.com/post/date/2016/05/04/
USDAUD 20160313 2016 62 3 Mar 2016 [..]. Find the inter-bank exchange rate on 3 March 2016 for the US[..] https://www.exchangerates.org.uk/USD-AUD-03_03_2016-exchange-rate-history.html
EURCAD 20160131 2016 62 1 Sep 2016 [..]. Historical Rates for the EUR/CAD currency conversion on 01 S[..] https://www.poundsterlinglive.com/best-exchange-rates/euro-to-canadian-dollar-exchange-rate-on-2016-09-01
CADEUR 20160110 2016 62 Ezonecadeaux.com est une entreprise canadienne situǸe ȿ LǸvis dans la pr[..] https://ezonecadeaux.com.cutestat.com/
GBPAUD 20150823 2015 62 Forex rates gbp aud. [..]. Reuters.co.uk for the latest currency news, curren[..] http://jobporalekha.tk/forex-rates-gbp-aud-371430.html
AUDUSD 20150802 2015 62 13 Aug 2015 [..]. AUD/USD Conversion Table History. See below quick comparisi[..] https://www.poundsterlinglive.com/best-exchange-rates/australian-dollar-to-us-dollar-exchange-rate-on-2015-08-13
EURSEK 20150125 2015 62 Find the inter-bank exchange rate on 1 January 2015 for the Euro to Swedish[..] https://www.exchangerates.org.uk/EUR-SEK-01_01_2015-exchange-rate-history.html
GBPSEK 20140720 2014 62 1, Details on instruments to be listed at NDX Bonds Sweden. 2, Listing date[..] https://www.ngnews.se/attachments/65415%3Flocale%3Dsv
CHFGBP 20130804 2013 62 15. Mȏrz 2013 [..]. As Citi's Steven Englander suggested earlier, the develo[..] http://www.stock-channel.net/stock-board/archive/index.php3/t-266053-p-12.html
JPYGBP 20130728 2013 62 10 Mar 2008 [..]. If someone has already created the instrument list for. AUD[..] https://ninjatrader.com/support/forum/showthread.php%3Ft%3D6096
JPYGBP 20130721 2013 62 10 Mar 2008 [..]. If someone has already created the instrument list for. AUD[..] https://ninjatrader.com/support/forum/showthread.php%3Ft%3D6096
JPYUSD 20130707 2013 62 The USDJPY failed to break through the 100 level overnight, but is it just [..] http://www.forexnews.com/blog/2013/04/09/usdjpy-fails-to-make-100-and-other-top-forex-news/
JPYGBP 20130630 2013 62 READ MORE. USD-YEN ÿ? USD/JPY Forecasts, USD/JPY Forex News ÿ? Dollar. Fo[..] http://herekfil47.cf/forex-yen-usd-924928.html
AUDCHF 20130602 2013 62 Date, Symbol, Trend, Strength, Difference, RoCT, HShT, HShD2, PV. 2013-07-0[..] http://fxpersian.com/en/forecasts/Forex/daily-trading-opportunity/AUDCHF%3Fpage%3D37
GBPSEK 20130310 2013 62 GBP/SEK ÿ? 9.5934. GBP/ZAR ÿ? 13.7932. To request a up-to-the minute quot[..] http://smartcurrencybusiness.blogspot.com/2013_03_10_archive.html
EURJPY 20130113 2013 62 View the basic EURJPY=X stock chart on Yahoo Finance. Change the date range[..] https://finance.yahoo.com/q%3Fs%3Deurjpy%3DX
GBPAUD 20171217 2017 61 [..]. Czech Koruna Danish Krone Euro Georgian lari Gram Silver Hungarian Fori[..] https://za.investing.com/currencies/gbp-usd-news
EURJPY 20171217 2017 61 26 Dec 2017 [..]. The EUR/JPY is still the pest performing pair of the JPY, w[..] https://www.dailyforex.com/forex-technical-analysis/2017/12/eurjpy-technical-analysis-26-december-2017/88528
EURSEK 20171119 2017 61 11 Oct 2017 [..]. Historical Rates for the EUR/SEK currency conversion on 11 [..] https://www.poundsterlinglive.com/best-exchange-rates/euro-to-swedish-krona-exchange-rate-on-2017-10-11
GBPAUD 20170917 2017 61 Forex news gbp aud. [..]. Get your FREE Pound to Australian Dollar (GBP/AUD) [..] http://infolokerpabrik.tk/forex-news-gbp-aud-549671.html
USDJPY 20170723 2017 61 27 Jul 2017 [..]. EUR/USD: Euro Must Be Watched by Traders. The Euro has gain[..] https://www.supertradertv.com/2017/07/27/top-trading-tips-eurusd-gold-usdjpy-11/
USDCAD 20170702 2017 61 20 Jul 2017 [..]. While the USDCAD spot exchange rate is quoted and exchanged[..] https://investorsbuz.com/2017/07/20/usdcad-canadian-dollar-midday-drop-thursday-july-20/
EURCAD 20170521 2017 61 5 Jan 2017 [..]. Historical Rates for the EUR/CAD currency conversion on 05 J[..] https://www.poundsterlinglive.com/best-exchange-rates/euro-to-canadian-dollar-exchange-rate-on-2017-01-05
AUDEUR 20170507 2017 61 Find the inter-bank exchange rate on 5 October 2017 for the Australian Doll[..] https://www.exchangerates.org.uk/AUD-EUR-05_10_2017-exchange-rate-history.html
USDCAD 20170423 2017 61 canadian dollar forecast currency USD CAD canadian dollar real time forex c[..] https://www.forexdirectory.net/cad.html
AUDEUR 20170423 2017 61 Foreign Exchange Rate News and Forecasts. [..]. Currency News. Brought to you[..] http://nine.currency-news.com.au/
USDJPY 20170212 2017 61 Japanese Yen Technical Analysis: USD/JPY Rediscovers Its Uptrend The Japane[..] http://fxopenguide.freehostia.com/tag/seleriti
USDAUD 20161211 2016 61 Type of chart, candlestick, ohlc, line. Draw a line, Arbitrarily, Horizonta[..] https://teletrade.co.uk/analytics/quote/AUDUSD/18
AUDEUR 20160814 2016 61 8 Nov 2016 [..]. Find the inter-bank exchange rate on 8 November 2016 for the[..] https://www.exchangerates.org.uk/AUD-EUR-08_11_2016-exchange-rate-history.html
EURGBP 20160626 2016 61 6 Dec 2016 [..]. On the 6th December 2016 the spot inter-bank market saw: Ope[..] https://www.poundsterlinglive.com/best-exchange-rates/british-pound-to-euro-exchange-rate-on-2016-12-06
GBPCHF 20160619 2016 61 Date, Symbol, Trend, Strength, Difference, RoCT, HShT, HShD2, PV [..]. 2016-0[..] https://forecastcity.com/en/forecasts/forex/daily-trading-opportunity/GBPCHF%3Fpage%3D11
JPYEUR 20160612 2016 61 =GOOGLEFINANCE(currency:usdeur,price, DATE(2016,06,01)). That works just fi.. https://www.reddit.com/r/spreadsheets/comments/4outty/is_google_sheets_googlefinance_command_unreliable/
CADUSD 20160313 2016 61 The loonie (TPI:CADUSD) rose to a session high of 77.38 cents, its stronges.. http://www.marketwatch.com/(S(jpgxu155hzygvlzbebtr5r45))/story/canadian-dollar-jumps-to-5-month-high-after-strong-retail-sales-report-2016-03-18
EURAUD 20160214 2016 61 As expected, price soared to a new height for this year. I mentioned on the.. http://blog.mt5.com/PuReChArT/2016/02/04/day-4-eur-usd/
JPYUSD 20151018 2015 61 Euro, GBP under pressure on dovish ECB and BoE views Today's Economic Data:.. https://www.orbex.com/blog/tag/usdjpy/page/103
USDAUD 20150927 2015 61 9 Dec 2015 ... Find the inter-bank exchange rate on 9 December 2015 for the.. https://www.exchangerates.org.uk/USD-AUD-09_12_2015-exchange-rate-history.html
EURCAD 20140330 2014 61 26 Jun 2015 ... ÿ?Again no domestic news out of Canada as CAD relies on ge.. https://www.poundsterlinglive.com/cad/2179-projections-for-canadian-dollar-cad-43434
AUDEUR 20140202 2014 61 Monitor political and economic developments in Australia and the Eurozone, .. https://www.finder.com.au/aud-eur-exchange-rate
GBPAUD 20131201 2013 61 10 Dec 2013 ... Filed Under: AUD, Euro, Sterling strength, USD Tagged With:.. http://www.poundsterlingforecast.com/2013/12/
USDAUD 20130811 2013 61 Find the inter-bank exchange rate on 8 October 2013 for the US Dollar to Au.. https://www.exchangerates.org.uk/USD-AUD-08_10_2013-exchange-rate-history.html
USDAUD 20130707 2013 61 We have long understood that the Fed's tapering timing and schedule are dat.. http://www.marketwatch.com/story/dollar-falls-after-bank-of-japan-fed-updates-2013-07-11
JPYGBP 20130526 2013 61 30 Jun 2013 ... The dynamic financial markets in Australia reflect many yea.. https://afma.com.au/data/afmr/2013%2520AFMR.PDF
EURJPY 20130428 2013 61 13 Dec 2013 ... FXstreet.com (Barcelona) - EUR/JPY finally appears to be at.. https://www.fxstreet.com/news/171f5773-ccb0-4777-b8ce-3a114249f626
JPYGBP 20130421 2013 61 By DailyFX on Mar 26, 2013 04:48:00 GMT. Instruments covered today: EUR/ US.. https://www.forexnews.com/blog/category/research/technical-outlook/
JPYGBP 20130224 2013 61 Archive for January, 2012. Random video ... Daily Gold and Forex Trading Ne.. https://www.earnforex.com/videos/date/2012/01/
ccypair 30-Dec-12 6-Jan-13 13-Jan-13 20-Jan-13 27-Jan-13 3-Feb-13 10-Feb-13 17-Feb-13 24-Feb-13 3-Mar-13 10-Mar-13 17-Mar-13 24-Mar-13 31-Mar-13 7-Apr-13 14-Apr-13 21-Apr-13 28-Apr-13 5-May-13 12-May-13 19-May-13 26-May-13 2-Jun-13 9-Jun-13 16-Jun-13 23-Jun-13 30-Jun-13 7-Jul-13 14-Jul-13 21-Jul-13 28-Jul-13 4-Aug-13 11-Aug-13 18-Aug-13 25-Aug-13 1-Sep-13 8-Sep-13 15-Sep-13 22-Sep-13 29-Sep-13 6-Oct-13 13-Oct-13 20-Oct-13 27-Oct-13 3-Nov-13 10-Nov-13 17-Nov-13 24-Nov-13 1-Dec-13 8-Dec-13 15-Dec-13 22-Dec-13 29-Dec-13 5-Jan-14 12-Jan-14 19-Jan-14 26-Jan-14 2-Feb-14 9-Feb-14 16-Feb-14 23-Feb-14 2-Mar-14 9-Mar-14 16-Mar-14 23-Mar-14 30-Mar-14 6-Apr-14 13-Apr-14 20-Apr-14 27-Apr-14 4-May-14 11-May-14 18-May-14 25-May-14 1-Jun-14 8-Jun-14 15-Jun-14 22-Jun-14 29-Jun-14 6-Jul-14 13-Jul-14 20-Jul-14 27-Jul-14 3-Aug-14 10-Aug-14 17-Aug-14 24-Aug-14 31-Aug-14 7-Sep-14 14-Sep-14 21-Sep-14 28-Sep-14 5-Oct-14 12-Oct-14 19-Oct-14 26-Oct-14 2-Nov-14 9-Nov-14 16-Nov-14 23-Nov-14 30-Nov-14 7-Dec-14 14-Dec-14 21-Dec-14 28-Dec-14 4-Jan-15 11-Jan-15 18-Jan-15 25-Jan-15 1-Feb-15 8-Feb-15 15-Feb-15 22-Feb-15 1-Mar-15 8-Mar-15 15-Mar-15 22-Mar-15 29-Mar-15 5-Apr-15 12-Apr-15 19-Apr-15 26-Apr-15 3-May-15 10-May-15 17-May-15 24-May-15 31-May-15 7-Jun-15 14-Jun-15 21-Jun-15 28-Jun-15 5-Jul-15 12-Jul-15 19-Jul-15 26-Jul-15 2-Aug-15 9-Aug-15 16-Aug-15 23-Aug-15 30-Aug-15 6-Sep-15 13-Sep-15 20-Sep-15 27-Sep-15 4-Oct-15 11-Oct-15 18-Oct-15 25-Oct-15 1-Nov-15 8-Nov-15 15-Nov-15 22-Nov-15 29-Nov-15 6-Dec-15 13-Dec-15 20-Dec-15 27-Dec-15 3-Jan-16 10-Jan-16 17-Jan-16 24-Jan-16 31-Jan-16 7-Feb-16 14-Feb-16 21-Feb-16 28-Feb-16 6-Mar-16 13-Mar-16 20-Mar-16 27-Mar-16 3-Apr-16 10-Apr-16 17-Apr-16 24-Apr-16 1-May-16 8-May-16 15-May-16 22-May-16 29-May-16 5-Jun-16 12-Jun-16 19-Jun-16 26-Jun-16 3-Jul-16 10-Jul-16 17-Jul-16 24-Jul-16 31-Jul-16 7-Aug-16 14-Aug-16 21-Aug-16 28-Aug-16 4-Sep-16 11-Sep-16 18-Sep-16 25-Sep-16 2-Oct-16 9-Oct-16 16-Oct-16 23-Oct-16 30-Oct-16 6-Nov-16 13-Nov-16 20-Nov-16 27-Nov-16 4-Dec-16 11-Dec-16 18-Dec-16 25-Dec-16 1-Jan-17 8-Jan-17 15-Jan-17 22-Jan-17 29-Jan-17 5-Feb-17 12-Feb-17 19-Feb-17 26-Feb-17 5-Mar-17 12-Mar-17 19-Mar-17 26-Mar-17 2-Apr-17 9-Apr-17 16-Apr-17 23-Apr-17 30-Apr-17 7-May-17 14-May-17 21-May-17 28-May-17 4-Jun-17 11-Jun-17 18-Jun-17 25-Jun-17 2-Jul-17 9-Jul-17 16-Jul-17 23-Jul-17 30-Jul-17 6-Aug-17 13-Aug-17 20-Aug-17 27-Aug-17 3-Sep-17 10-Sep-17 17-Sep-17 24-Sep-17 1-Oct-17 8-Oct-17 15-Oct-17 22-Oct-17 29-Oct-17 5-Nov-17 12-Nov-17 19-Nov-17 26-Nov-17 3-Dec-17 10-Dec-17 17-Dec-17
USDJPY 38 43 39 45 42 55 56 39 44 42 45 47 23 63 97 63 52 49 73 60 63 53 97 84 63 53 55 38 44 43 47 39 50 30 38 49 41 39 25 47 24 28 30 26 32 41 36 36 31 42 42 29 33 35 35 54 52 59 31 44 23 35 34 27 36 35 36 33 26 31 32 28 23 19 25 23 17 20 36 30 24 11 22 32 20 23 19 25 37 44 34 38 37 37 26 46 55 48 72 48 65 60 76 51 49 46 50 36 30 36 40 41 31 21 44 20 27 22 32 29 24 24 21 26 32 39 48 48 35 29 26 41 29 28 21 24 25 33 63 35 30 33 27 27 27 24 33 27 20 27 31 24 24 25 25 24 18 47 52 37 54 58 85 60 50 49 31 38 46 41 72 68 53 69 62 51 42 43 60 62 69 93 59 56 79 66 81 63 48 76 55 60 41 38 60 45 43 50 46 44 46 100 66 81 56 58 71 48 58 69 73 68 59 50 55 61 51 58 59 58 73 67 74 79 69 62 55 59 53 45 42 54 46 50 48 37 62 51 61 49 53 52 54 55 50 69 53 64 47 42 53 50 57 57 55 51 55 55 44 57
AUDUSD 15 25 30 44 22 48 33 16 35 29 29 5 30 21 37 37 24 14 71 71 69 56 100 58 66 69 54 72 55 33 49 63 69 56 49 84 36 38 28 27 35 28 27 28 42 22 17 46 48 37 60 36 31 51 35 32 26 42 44 25 43 54 30 32 39 57 30 39 33 26 35 30 41 31 15 36 24 23 19 24 48 21 21 25 13 18 20 33 37 54 41 37 22 26 34 17 28 33 36 21 51 35 41 34 31 27 25 46 44 73 44 41 33 29 39 28 29 38 45 26 35 44 55 33 37 35 40 33 38 29 38 60 49 50 37 62 66 33 75 57 82 54 52 46 57 39 36 35 42 31 33 45 48 51 48 32 25 39 38 47 34 49 51 38 44 66 47 57 39 55 42 40 53 38 88 67 48 30 39 49 40 48 55 44 50 50 46 54 66 56 39 42 35 42 39 50 24 28 40 39 32 67 28 31 29 42 39 48 32 55 44 41 42 31 31 41 32 36 29 26 39 45 24 55 51 43 32 37 27 43 27 27 25 18 28 37 42 51 50 53 28 27 35 37 47 57 26 24 34 18 22 33 33 31 23 29 34 44 54 38
EURCAD 16 44 14 29 21 28 0 14 28 0 0 21 15 28 14 14 21 21 29 21 28 14 42 28 28 35 57 43 29 21 14 43 14 35 41 34 13 27 27 13 26 13 33 46 45 33 39 26 25 26 26 29 42 19 19 43 18 32 18 30 24 12 55 79 24 61 24 32 12 18 12 24 45 27 20 34 21 27 42 27 0 28 14 36 14 34 33 20 32 26 44 45 38 25 32 19 25 37 38 25 18 37 38 14 34 54 47 41 40 29 46 30 17 17 40 29 31 30 41 29 35 23 58 35 12 64 70 35 29 70 53 52 47 30 17 41 70 28 73 34 39 44 38 44 27 43 43 32 27 22 27 27 31 27 27 48 30 79 100 84 73 62 56 66 22 81 55 39 23 34 39 78 28 72 51 44 33 57 17 51 45 52 63 12 47 42 42 12 56 19 12 18 59 47 34 40 45 23 34 40 34 49 50 33 48 42 60 58 35 56 42 42 31 10 57 57 47 51 60 55 72 41 41 53 31 41 73 62 44 61 39 38 99 38 51 80 39 56 44 49 27 22 38 38 69 31 42 73 52 42 26 31 26 51 45 66 55 55 76 65
EURUSD 25 32 35 24 36 29 27 30 31 26 40 34 44 31 27 25 24 28 20 40 25 25 23 27 25 29 32 34 22 20 28 35 27 30 21 30 24 24 32 27 24 25 34 29 33 31 25 32 30 29 30 26 32 21 28 22 31 24 29 27 21 40 32 31 28 30 31 27 21 18 35 30 23 21 36 32 21 26 19 19 26 30 20 23 20 27 36 34 31 38 27 36 32 32 35 34 33 30 30 29 38 34 31 27 32 43 53 70 76 50 36 51 42 57 77 72 60 50 44 47 38 44 51 47 47 43 44 48 41 51 100 76 51 39 37 41 39 44 64 51 41 50 41 38 31 34 43 49 43 42 47 35 58 48 52 35 30 39 37 36 35 39 42 38 38 36 50 41 31 40 36 33 36 36 44 27 33 35 32 32 28 55 51 31 31 35 33 29 29 31 27 28 34 22 27 22 23 29 30 27 32 70 47 39 29 47 45 38 28 27 31 44 35 38 33 30 29 36 42 42 32 38 29 31 36 54 51 39 38 43 41 39 44 28 41 37 32 40 40 45 38 34 33 47 45 39 37 47 40 41 35 45 37 43 39 33 38 46 42 35
GBPAUD 11 14 0 9 18 0 19 23 27 18 27 22 14 9 22 9 32 14 37 27 36 18 31 27 50 27 23 23 19 46 32 42 28 63 44 18 30 39 17 13 17 26 38 34 42 29 37 41 61 54 60 52 67 32 36 43 24 37 43 31 27 28 28 8 27 31 43 29 24 12 24 35 29 30 26 27 31 26 27 35 45 27 18 37 13 18 21 21 46 33 37 38 33 37 20 33 24 40 16 40 24 44 29 36 9 27 34 23 52 26 26 42 22 30 33 22 48 39 30 34 26 38 38 26 22 41 49 26 30 45 30 41 34 65 19 45 49 33 62 72 69 39 32 39 42 24 24 24 31 31 52 38 41 28 32 39 19 40 39 44 22 43 29 46 46 35 36 71 41 51 29 29 36 46 44 50 58 44 37 37 36 67 100 55 69 66 27 20 52 45 31 38 34 23 67 33 70 33 47 47 40 43 47 35 48 41 42 33 30 21 44 60 13 30 47 23 30 69 45 26 23 20 40 41 40 33 77 43 25 76 50 42 36 35 18 29 25 54 18 52 45 25 42 21 31 74 61 64 47 37 27 30 37 46 26 42 42 75 56 61
USDCAD 19 12 17 14 25 14 12 25 20 20 28 17 3 17 28 14 8 17 17 11 14 17 17 28 25 28 46 14 9 17 11 23 20 14 11 19 11 8 16 8 3 5 10 18 23 18 13 20 17 36 16 18 16 20 30 29 37 21 19 31 26 34 10 24 27 14 22 18 17 20 17 22 18 22 32 11 14 8 33 16 19 8 19 17 19 25 13 21 18 23 8 18 36 22 10 25 22 32 40 5 17 22 33 27 27 21 23 49 53 65 32 43 39 37 44 25 45 47 44 48 39 26 30 23 28 39 32 25 19 14 26 46 40 42 41 54 53 57 47 31 32 32 42 26 34 24 53 45 21 30 28 43 44 75 63 65 36 63 100 81 56 71 56 57 50 56 53 60 43 54 42 58 44 33 56 40 48 56 27 34 45 76 69 46 38 62 31 29 30 36 27 54 35 58 36 43 45 47 60 50 59 81 60 41 47 38 63 27 38 40 31 50 48 51 35 39 35 62 64 34 31 52 27 23 52 61 50 59 35 45 31 39 69 43 56 61 82 80 57 68 38 35 66 49 70 56 34 52 48 39 43 39 68 35 36 36 55 78 49 55
USDAUD 46 21 0 21 60 20 0 20 30 60 0 29 20 20 39 50 20 0 0 78 59 69 78 29 20 30 50 61 41 40 100 51 61 50 38 19 84 47 19 28 56 0 37 19 27 0 36 18 27 36 0 21 39 53 26 34 0 18 17 34 43 26 17 17 17 0 51 36 18 52 34 17 36 38 19 0 19 38 29 39 19 19 20 20 39 19 0 37 0 18 0 46 18 35 35 18 26 26 18 17 51 26 71 29 28 51 33 41 24 74 33 50 32 32 48 65 35 17 49 65 41 57 41 25 56 24 33 49 33 33 25 49 16 67 16 99 66 40 55 47 71 46 23 61 15 15 22 53 30 38 23 38 22 45 54 17 51 64 31 16 31 47 0 70 39 46 31 62 56 39 39 47 16 47 64 47 32 32 16 32 16 24 57 17 17 51 17 26 35 36 43 0 17 49 16 16 32 63 55 16 16 46 31 15 45 22 61 16 33 23 15 15 29 36 14 29 22 42 28 35 29 44 36 52 37 22 15 44 39 47 39 15 15 23 24 24 31 39 46 45 37 31 30 30 82 30 37 22 15 44 58 22 22 57 14 29 14 50 72 81
EURJPY 41 75 62 37 79 66 74 24 72 48 53 35 43 54 100 42 24 61 43 53 66 12 24 41 18 18 55 25 80 24 24 55 43 30 29 29 23 57 28 39 28 34 28 28 33 27 22 33 48 76 39 31 53 32 42 31 31 39 36 26 25 42 41 31 21 46 16 44 11 21 10 36 27 40 35 52 35 29 36 12 24 41 18 43 0 23 11 6 66 33 27 11 16 48 32 59 63 21 42 21 21 16 27 35 17 36 50 40 24 15 15 30 19 25 20 39 27 35 20 5 39 20 20 10 29 20 15 24 15 45 70 30 45 10 39 15 25 34 29 28 53 14 33 23 9 41 18 18 36 23 27 23 13 27 19 31 15 14 33 29 29 24 52 42 56 46 24 24 19 33 28 24 28 43 39 38 24 14 20 34 71 49 59 26 25 31 36 16 21 22 47 40 20 15 10 29 19 19 10 34 19 42 24 23 18 13 14 19 15 14 13 18 31 22 22 17 18 21 30 34 31 13 18 36 18 39 40 53 38 24 33 23 24 32 72 68 19 29 51 27 5 19 41 46 36 26 54 18 31 26 31 48 44 35 26 56 17 34 39 61
AUDEUR 38 17 34 68 0 17 0 0 67 67 0 0 34 17 0 17 17 17 0 33 66 67 66 83 17 17 17 34 17 85 34 0 34 17 16 16 32 16 32 16 16 32 47 0 31 15 15 15 30 46 16 52 33 45 15 43 29 61 14 14 28 73 14 29 43 29 14 30 0 0 14 28 30 32 48 33 0 81 17 33 49 16 33 35 16 16 16 16 46 31 15 15 30 15 15 0 44 15 15 15 14 73 30 49 0 43 14 14 55 56 28 28 14 14 14 54 59 14 56 14 27 55 27 41 27 27 14 41 41 28 28 55 69 0 41 28 41 14 13 66 54 13 26 0 64 51 38 51 75 13 38 38 100 38 26 14 29 13 26 54 40 27 27 39 0 39 79 26 0 40 0 13 26 26 27 53 0 27 82 54 40 69 27 57 43 57 29 29 29 61 14 84 0 14 14 27 0 40 40 13 27 39 26 91 38 50 39 14 14 52 25 25 0 86 25 49 12 36 12 71 37 25 25 13 25 61 12 61 39 13 39 39 53 13 40 27 40 67 13 51 38 39 38 13 25 49 25 62 50 12 25 24 49 12 24 12 71 60 85 51
EURSEK 55 20 39 19 19 86 20 19 38 38 19 28 39 19 19 28 19 48 58 37 18 38 0 19 19 28 29 38 59 19 39 19 19 0 18 18 54 36 18 27 36 72 35 0 52 53 17 17 17 17 18 0 19 34 50 17 16 34 16 24 33 25 25 33 33 16 33 34 42 25 57 24 26 36 27 37 18 37 28 18 37 47 38 29 18 18 27 35 17 70 17 26 0 51 68 34 42 0 25 25 41 33 85 19 27 32 47 63 62 31 63 24 23 47 54 100 34 40 32 31 47 23 24 16 93 23 78 15 39 31 63 47 47 32 23 24 16 23 38 0 53 30 59 15 0 15 43 36 14 43 14 29 21 29 22 24 32 31 30 0 30 30 60 22 59 15 0 15 23 30 30 15 38 30 15 15 30 23 31 0 45 62 39 16 16 57 49 41 17 43 16 16 24 16 15 23 38 31 45 91 38 81 30 37 43 28 29 39 32 30 0 21 21 28 21 35 35 14 20 27 14 28 14 14 21 28 28 21 22 45 22 44 22 22 46 31 15 23 29 22 14 29 29 36 14 0 28 28 49 21 35 49 0 41 40 61 34 20 41 39
EURAUD 64 58 11 56 56 0 34 0 0 22 11 11 23 33 11 22 22 45 11 11 22 33 33 33 33 33 11 23 45 23 34 34 23 22 32 32 21 21 21 41 42 42 10 10 20 0 30 40 20 71 41 23 22 20 78 48 19 20 47 28 0 10 0 29 38 57 10 20 29 39 10 9 40 11 64 11 32 32 22 11 44 0 11 11 0 32 42 31 31 41 70 20 40 10 0 0 10 29 39 10 19 19 40 32 11 19 9 18 18 37 64 28 27 18 18 18 10 65 18 63 9 28 36 9 27 9 9 9 37 64 9 27 18 37 100 28 27 36 27 53 45 34 43 17 34 42 33 8 33 50 25 25 58 17 69 19 29 36 26 18 18 18 53 61 9 34 26 9 36 18 0 26 17 44 71 43 52 45 9 53 18 18 18 38 38 66 19 39 78 30 10 28 27 46 18 36 18 18 18 27 0 43 35 52 50 50 34 36 19 17 50 24 41 49 41 72 33 48 31 55 73 24 33 42 25 24 57 49 52 35 52 43 35 17 71 27 26 44 17 8 50 26 34 50 17 8 33 25 33 33 33 40 8 24 55 16 31 16 48 68
AUDCAD 0 18 18 36 0 36 0 71 53 35 35 0 0 35 52 35 18 18 54 17 0 35 0 18 0 0 18 36 0 72 36 0 18 35 0 0 0 34 34 0 17 0 33 0 16 0 48 16 0 0 50 0 0 16 31 30 46 49 30 15 45 0 15 46 46 30 0 16 16 15 31 15 48 34 0 52 17 0 18 17 35 0 0 18 17 0 17 0 65 65 0 33 16 16 16 16 16 46 16 16 0 46 0 35 0 30 15 29 29 44 44 15 58 15 0 0 16 45 74 15 29 59 29 29 29 0 58 14 29 15 0 29 15 60 0 44 15 14 14 28 14 14 14 14 68 27 27 0 80 27 40 40 0 13 69 45 15 28 14 43 14 28 14 55 0 41 42 0 43 14 28 42 70 42 28 28 0 43 29 28 14 15 29 30 30 30 0 62 78 32 31 29 59 59 14 14 71 28 56 57 0 28 14 14 0 13 41 43 30 28 27 78 39 65 39 77 52 51 13 100 65 52 39 27 92 52 26 52 42 42 14 14 0 40 29 72 14 42 41 54 13 0 27 0 27 13 66 13 13 26 65 13 91 64 75 25 12 38 26 18
GBPJPY 11 10 15 10 25 5 30 15 15 34 19 34 5 29 24 15 19 5 20 24 5 15 10 24 10 10 5 5 15 30 15 25 25 10 19 33 9 14 14 14 14 9 5 5 22 4 18 36 22 9 18 0 19 13 9 8 17 13 25 4 16 21 29 17 13 33 13 13 22 13 8 12 27 14 14 24 19 19 43 19 5 10 19 15 19 19 18 9 18 36 18 13 18 35 35 0 13 26 17 26 29 17 13 10 9 25 16 32 8 28 32 21 36 16 24 20 22 8 16 16 12 12 4 4 28 20 16 20 28 12 12 40 32 25 12 36 28 16 39 27 27 11 34 26 41 26 7 11 7 18 37 11 18 22 30 8 17 20 31 27 46 35 35 30 45 34 35 31 32 35 54 35 35 46 43 46 50 20 64 47 58 100 80 54 87 58 50 47 38 35 42 45 48 36 39 40 35 39 35 43 51 23 19 53 22 36 34 43 41 23 25 39 47 57 25 32 43 66 24 17 53 54 29 37 50 46 69 28 38 23 38 75 58 22 43 24 69 39 42 11 48 38 33 37 33 50 62 29 54 39 29 35 18 35 28 49 27 73 53 25
AUDJPY 32 19 67 9 9 19 19 37 37 37 27 27 47 37 45 37 19 9 28 27 28 46 100 0 64 18 38 29 47 19 37 57 29 9 18 27 9 18 0 35 17 26 69 35 34 34 34 8 25 17 9 0 36 33 41 32 32 17 24 47 24 24 16 0 32 48 48 34 25 24 8 24 42 0 27 27 0 18 27 9 9 18 9 38 9 36 17 17 9 17 34 9 17 66 25 33 32 24 57 16 48 24 17 27 26 8 15 8 0 8 31 39 30 23 30 7 25 23 15 15 23 8 23 8 15 8 23 30 15 15 15 31 31 39 23 38 31 8 37 15 45 36 36 14 14 28 7 14 14 14 14 7 21 21 36 8 0 22 29 30 51 37 51 22 7 36 29 7 15 7 51 52 37 51 37 51 7 22 38 44 15 46 23 16 31 24 0 32 33 50 40 23 15 8 22 30 7 15 52 30 15 7 37 14 35 48 14 53 8 29 42 41 14 27 27 34 34 27 33 33 54 27 41 35 62 27 41 20 43 22 51 57 29 42 45 7 22 37 51 35 35 22 14 28 28 27 42 28 27 14 20 27 34 40 20 40 20 33 20 9
USDEUR 7 27 26 7 26 19 13 19 13 13 25 25 27 13 38 32 13 26 39 0 13 32 25 31 19 45 7 20 0 13 7 20 13 13 25 37 18 24 18 24 24 12 6 18 41 0 0 6 23 6 12 7 19 28 28 39 22 12 16 11 28 39 39 27 22 17 11 17 6 17 28 22 18 6 18 31 6 31 13 19 13 44 19 7 6 37 18 18 18 23 29 41 29 52 23 29 17 17 29 33 11 39 29 26 43 43 75 80 68 32 21 38 52 26 68 78 67 33 11 31 37 16 32 11 41 37 48 26 37 32 80 100 32 22 42 26 27 21 51 20 40 35 20 29 34 30 24 24 44 24 14 20 57 49 15 16 16 15 25 36 40 25 20 30 30 30 30 25 31 31 20 20 36 10 36 15 20 21 26 5 36 94 52 28 21 32 33 16 0 6 28 27 22 21 26 5 15 15 20 20 5 40 25 40 44 38 49 26 11 35 43 28 24 42 19 23 19 23 41 18 9 42 19 19 5 32 23 28 25 30 25 30 15 19 36 15 25 15 25 15 39 10 24 44 19 24 33 14 24 29 9 23 38 23 14 18 64 83 69 85
CADUSD 8 10 7 7 0 7 13 16 13 20 13 16 10 13 13 7 10 7 7 22 10 39 10 6 13 19 27 20 23 13 13 13 23 13 9 19 25 9 19 25 25 19 21 21 21 15 24 12 12 12 15 7 13 12 37 40 25 24 22 22 25 11 6 25 33 37 17 15 12 17 25 14 9 16 12 19 51 6 13 19 35 22 19 10 19 16 15 6 21 18 9 24 12 23 9 6 9 26 23 23 17 37 26 13 12 19 38 49 40 46 35 49 18 43 37 69 29 25 30 40 21 46 38 16 27 37 16 29 24 27 22 38 54 41 21 32 35 34 42 23 34 33 36 18 20 28 30 32 27 32 27 25 27 57 56 36 39 39 100 83 49 39 26 36 43 35 23 61 45 39 23 49 52 26 50 33 39 21 21 47 16 43 29 20 25 22 31 25 26 24 17 22 16 19 24 21 10 18 44 18 29 84 21 35 52 15 33 21 35 31 37 29 34 21 21 17 22 30 25 25 24 26 7 10 26 40 36 29 23 15 10 25 36 25 31 39 49 31 78 25 37 30 17 37 59 41 36 31 19 12 10 29 36 19 19 23 69 84 54 53
GBPCAD 40 37 0 36 12 23 12 29 17 23 11 11 12 12 11 23 12 12 12 11 0 23 23 0 12 0 24 12 0 12 12 24 0 23 22 11 11 22 55 11 27 17 16 22 11 22 11 32 26 11 11 30 17 42 31 10 45 43 20 20 15 10 25 30 25 15 10 16 21 20 20 15 11 11 28 11 17 34 35 28 11 17 29 18 11 23 11 11 21 32 32 11 11 10 31 0 26 20 31 20 30 15 0 17 22 30 15 29 48 68 10 15 52 33 29 28 15 25 29 33 29 24 19 19 24 33 24 43 29 19 29 38 49 29 29 34 19 24 65 37 19 27 41 22 40 22 40 13 18 18 26 18 30 35 14 0 15 33 14 47 23 32 19 23 45 27 50 28 33 42 41 51 37 27 14 32 28 33 28 37 42 100 90 85 39 54 30 30 26 32 15 19 15 34 24 38 28 28 33 33 38 9 46 54 27 13 13 14 10 9 39 34 30 26 17 13 30 8 21 41 21 21 0 26 34 59 21 17 18 23 32 54 23 35 33 28 23 46 45 62 22 27 49 36 57 43 39 35 35 22 26 26 17 29 29 13 37 17 21 60
JPYUSD 0 63 41 20 40 20 42 20 0 20 20 20 0 20 59 20 20 0 20 20 20 40 79 0 20 100 20 62 0 41 0 0 0 40 19 0 19 19 19 19 38 38 37 19 0 0 18 18 18 0 19 21 0 0 53 0 0 18 17 34 17 52 35 0 17 0 0 0 0 18 0 0 0 19 39 20 0 19 0 20 40 39 40 21 20 0 19 0 18 37 36 0 36 18 18 18 70 18 53 35 52 35 18 39 38 0 33 0 33 33 33 34 49 0 33 0 0 17 33 33 16 17 0 16 0 0 49 0 33 33 17 17 33 17 16 17 17 33 16 0 16 31 0 16 0 0 61 15 30 0 15 15 15 15 0 17 17 32 16 16 0 16 16 16 47 15 16 32 33 0 63 0 48 32 16 47 16 0 33 0 0 17 16 17 85 17 0 0 0 0 52 17 33 50 49 16 32 32 0 0 0 78 79 16 31 60 31 0 0 16 15 30 59 15 0 15 44 14 14 0 15 15 30 30 45 15 30 44 16 0 32 0 16 31 48 16 48 16 0 46 15 16 31 0 15 29 15 15 45 0 0 0 0 0 28 14 0 29 43 62
USDSEK 15 0 0 0 14 14 28 14 0 27 13 13 14 27 0 13 14 27 14 0 13 13 26 27 67 27 27 14 41 0 27 14 28 27 52 0 0 13 0 13 13 0 0 38 25 12 37 37 0 25 13 14 13 0 24 12 12 0 0 34 23 0 23 0 0 12 0 12 12 0 23 0 0 0 26 0 13 13 53 40 13 0 13 14 0 13 13 25 25 12 12 25 0 24 12 0 0 0 24 0 12 35 24 26 0 11 34 33 22 11 100 0 0 22 77 33 12 11 11 44 44 34 66 11 11 11 22 44 67 45 34 11 34 11 33 45 45 22 54 11 22 10 11 10 52 31 10 31 10 20 0 31 10 21 42 23 12 0 11 11 11 0 43 21 42 41 32 21 22 21 21 0 11 21 33 11 11 22 33 54 0 22 33 12 23 0 23 12 12 0 0 56 0 34 0 0 11 43 21 54 0 32 43 21 20 20 10 33 23 11 0 30 20 30 20 39 10 19 19 10 0 10 10 41 0 20 20 10 21 11 11 10 11 10 11 11 21 21 11 20 10 42 0 20 10 20 30 30 0 20 0 39 10 20 19 19 0 19 29 69
GBPCHF 11 10 38 0 9 0 0 9 28 0 18 36 0 0 0 28 19 9 19 0 9 18 27 9 28 9 38 19 0 28 9 19 19 18 36 18 26 9 9 0 9 0 9 9 9 0 8 8 0 17 26 0 18 17 32 24 16 8 24 16 0 0 40 24 8 16 8 34 0 0 8 8 17 9 0 18 0 0 9 45 46 9 0 19 9 36 17 9 26 60 25 17 25 16 8 0 0 0 8 8 16 8 17 18 9 39 100 84 38 46 23 0 45 15 30 30 41 0 23 15 8 15 30 0 15 15 8 0 15 23 0 15 15 8 8 54 38 23 0 7 7 21 0 7 0 7 21 28 14 14 14 14 35 21 14 24 24 22 37 7 37 15 22 22 29 21 15 15 0 7 29 22 7 7 7 22 7 7 0 37 44 61 76 40 39 55 24 8 8 8 48 38 8 15 15 23 37 22 22 7 30 29 7 36 7 14 0 30 16 0 28 48 41 41 41 20 14 26 20 33 54 27 14 14 21 7 0 7 29 37 22 29 36 28 7 0 22 0 22 21 14 29 7 21 14 14 21 28 14 34 27 7 14 13 26 7 7 26 53 57
CADJPY 0 0 0 18 36 0 19 36 36 36 0 36 37 0 53 0 0 0 18 0 0 18 0 18 0 18 18 0 18 18 0 0 0 0 35 0 17 17 0 0 0 0 0 17 33 17 0 0 0 0 17 0 35 16 16 16 0 17 46 0 15 0 16 15 15 15 0 16 16 0 0 15 0 0 35 35 18 0 18 0 0 18 18 19 18 0 34 0 17 0 16 0 33 0 0 0 0 0 16 47 31 0 16 18 17 15 15 30 15 45 15 0 15 0 0 0 16 0 45 15 0 0 44 30 15 0 44 0 0 15 15 15 0 0 15 0 15 0 29 14 0 0 0 14 0 14 0 41 14 14 27 14 0 0 28 15 0 29 14 15 43 29 43 14 28 28 14 14 15 14 14 14 14 14 43 28 0 15 44 0 14 0 30 31 15 31 62 31 48 0 0 30 30 45 44 59 15 43 14 29 0 42 43 28 82 27 14 29 0 14 0 13 13 26 26 13 40 26 26 25 26 0 27 27 27 13 27 13 0 0 0 42 28 55 15 15 100 57 70 27 0 42 0 14 68 26 41 27 0 27 13 13 0 52 38 13 51 51 52 55
GBPSEK 0 0 0 0 0 0 0 0 31 31 62 31 0 0 0 31 31 32 0 0 0 0 0 31 0 0 0 0 0 32 0 0 0 31 0 31 30 0 0 29 0 30 0 29 0 29 29 0 28 0 0 0 31 0 0 0 27 0 27 0 0 0 0 0 0 81 0 29 28 0 54 0 0 0 0 31 0 30 31 0 0 62 0 0 0 0 29 0 0 0 57 29 0 28 0 0 0 27 55 28 0 0 56 0 30 27 26 0 0 0 78 0 0 0 0 51 56 27 26 51 51 0 0 0 26 0 26 0 0 0 26 26 52 26 52 26 26 26 25 0 25 48 0 0 0 0 0 0 47 24 24 0 23 24 0 0 0 25 0 25 25 0 0 0 0 0 25 25 25 0 25 0 25 50 25 25 49 0 26 0 0 77 51 54 27 0 0 0 0 85 0 26 0 0 25 0 76 50 25 25 25 49 25 0 24 0 0 26 26 0 0 23 23 23 23 23 0 67 0 0 0 23 46 0 23 68 0 0 25 0 25 24 0 0 25 0 0 100 0 0 0 0 48 0 0 0 23 0 0 23 46 23 0 46 0 0 0 45 68 32
CHFJPY 43 19 38 19 0 19 19 0 18 19 18 18 0 0 27 0 19 0 0 27 18 0 18 36 37 0 38 19 19 19 19 38 19 37 18 18 17 35 35 26 17 35 17 17 34 17 59 33 33 0 17 76 18 25 16 16 16 17 16 16 0 0 16 16 0 16 16 0 0 0 16 32 0 36 18 18 0 0 18 0 18 18 0 0 18 18 0 17 17 17 17 17 17 17 0 33 0 24 33 0 32 24 16 0 0 16 100 46 0 31 0 16 0 15 15 15 16 0 31 15 15 0 0 30 15 15 0 0 15 0 0 15 0 15 15 31 31 15 0 0 30 0 0 0 14 14 0 21 14 14 0 14 27 28 14 32 0 22 15 15 15 0 15 22 14 14 14 15 15 22 15 15 29 14 0 29 15 15 30 15 15 15 30 24 16 16 24 32 16 34 24 15 0 0 0 15 15 15 30 59 15 14 15 14 0 14 0 15 23 15 14 14 14 14 0 13 14 20 0 39 0 14 0 21 14 0 0 14 22 14 22 14 0 14 15 15 0 0 14 28 14 14 28 42 0 41 28 34 21 14 55 14 41 20 26 13 0 0 0 0
CADGBP 81 37 0 0 0 0 0 0 35 0 35 0 0 0 0 0 0 0 0 0 0 35 0 0 0 35 0 0 0 0 0 0 36 0 0 0 33 0 0 0 0 0 0 0 0 0 32 0 0 0 0 0 0 0 46 31 0 32 30 30 0 0 30 0 0 30 0 0 31 0 0 0 0 0 0 0 34 0 35 0 0 0 35 0 0 0 0 32 0 0 0 0 32 31 31 0 0 0 31 0 0 0 0 0 0 30 0 87 72 29 0 0 28 0 29 0 0 30 0 0 29 29 29 29 29 58 0 29 0 0 0 0 0 0 29 29 0 29 0 28 28 0 0 0 0 0 0 27 53 27 0 27 0 0 0 60 30 28 0 28 0 28 28 0 27 27 28 83 0 0 28 0 28 83 0 28 56 28 28 28 0 86 57 45 30 0 0 0 0 32 60 0 0 29 29 0 28 84 28 0 28 27 27 0 27 26 27 29 0 28 26 26 26 0 38 26 26 0 25 0 0 26 0 0 39 26 26 26 0 28 0 0 0 27 57 28 0 28 27 27 26 27 0 0 0 26 26 65 26 0 26 26 26 25 0 0 50 100 25 36
AUDCHF 0 0 0 22 0 21 22 0 21 0 0 21 0 0 0 63 0 22 21 0 0 63 62 42 42 42 65 0 43 22 0 0 0 21 20 21 20 0 0 20 0 0 0 40 19 0 39 39 0 0 20 0 41 19 0 0 18 0 36 18 18 0 0 0 0 18 0 39 0 37 0 0 0 41 0 0 21 41 21 0 0 0 0 0 0 0 0 0 20 0 0 39 0 19 0 0 0 19 0 19 18 19 0 21 0 36 35 35 0 35 17 54 0 0 0 0 0 18 0 17 35 18 17 0 17 0 17 35 0 0 0 35 0 0 0 70 0 0 17 0 17 16 0 0 0 0 32 48 16 0 0 0 0 48 0 18 18 17 17 0 50 51 34 50 16 16 0 17 34 51 17 0 50 0 17 17 50 17 0 17 34 17 0 0 18 0 18 0 19 19 18 0 18 18 0 0 0 51 0 0 17 0 34 16 16 16 0 17 18 17 16 0 0 0 16 15 16 30 0 0 0 16 16 16 16 15 16 62 17 34 100 33 33 0 17 34 17 17 17 16 64 33 48 48 16 47 16 0 16 16 0 46 16 0 15 30 15 15 46 22
EURGBP 2 11 9 22 11 16 6 13 9 16 12 11 9 11 4 9 13 5 9 4 14 16 5 4 9 7 5 15 13 0 5 13 2 18 7 7 14 7 8 12 7 7 5 7 15 3 7 16 11 7 17 9 10 10 14 3 9 15 6 12 11 12 17 14 9 6 19 16 8 6 11 5 10 17 2 14 9 12 5 10 16 9 12 13 9 9 15 23 5 10 18 15 8 6 6 10 13 17 11 13 14 8 13 5 24 15 18 21 17 12 28 15 19 10 23 14 24 15 13 34 7 13 18 15 7 20 18 13 10 12 34 29 16 27 25 21 19 16 20 8 13 10 14 22 12 12 18 7 24 7 19 12 12 11 6 11 20 19 18 19 11 17 14 14 25 18 13 20 19 16 30 30 13 24 7 14 22 24 23 29 20 100 61 51 21 21 17 14 17 18 17 12 18 12 10 10 52 37 16 19 16 34 8 21 14 35 12 7 9 17 23 34 16 18 17 22 18 19 14 19 25 11 14 16 12 17 15 20 17 20 22 29 16 16 19 3 16 16 11 20 15 22 26 27 28 33 28 17 30 18 17 10 17 22 14 20 23 41 18 7
CADAUD 0 0 0 0 0 44 0 0 0 0 0 0 0 44 0 44 0 0 45 0 0 0 0 0 44 0 0 0 0 0 0 0 0 0 0 43 0 0 84 0 0 42 41 41 41 0 0 0 40 0 41 46 44 39 39 39 0 81 37 0 37 0 0 0 0 0 0 0 0 0 0 0 0 42 0 43 0 0 0 0 0 43 0 0 43 43 0 0 40 0 0 0 0 0 0 0 0 0 0 38 0 39 39 0 84 0 37 36 36 0 0 37 0 36 0 0 0 37 0 0 36 0 37 0 36 0 0 0 0 0 0 0 37 0 0 0 0 0 0 0 0 34 0 0 0 0 33 0 33 34 33 0 0 33 0 0 0 0 0 35 35 53 35 0 35 34 0 35 0 35 0 0 0 35 35 70 35 35 36 36 0 36 36 38 0 37 38 0 39 40 0 37 0 36 36 0 71 0 0 35 35 0 0 0 0 33 0 0 37 0 50 32 0 32 32 0 0 32 31 31 32 0 0 0 33 32 0 0 34 0 35 34 35 34 0 71 35 0 0 0 33 34 34 0 100 0 0 0 0 32 0 0 0 0 31 0 31 0 0 0
AUDGBP 0 0 0 14 14 14 0 0 0 13 0 0 14 13 40 0 27 0 0 0 13 0 53 13 13 13 27 0 28 14 14 42 14 14 26 26 13 13 0 13 0 0 0 0 12 12 0 37 24 0 13 0 13 24 47 12 24 12 23 0 23 12 0 12 23 12 0 0 0 12 0 0 12 0 0 0 13 13 27 0 13 27 13 14 39 53 25 0 25 37 0 0 0 12 0 12 12 12 24 12 23 24 0 0 51 0 0 11 11 22 11 23 22 0 22 0 12 23 0 11 33 0 22 11 33 22 0 11 11 22 11 11 0 23 11 56 22 0 11 11 11 10 11 10 10 0 0 10 30 10 20 0 10 0 21 12 0 33 32 11 11 0 11 11 32 0 11 0 11 0 0 21 11 0 11 21 32 43 22 22 11 100 66 46 34 23 23 0 36 12 0 0 0 11 11 11 44 22 21 11 33 42 21 10 31 0 21 11 0 21 0 30 20 10 40 10 30 19 10 10 10 0 0 0 20 10 20 20 0 0 32 42 0 0 22 11 11 32 11 20 20 10 31 21 0 0 10 20 0 10 10 0 10 10 29 19 48 38 49 41
CHFUSD 13 12 35 12 11 0 18 12 34 11 22 0 18 11 11 0 23 12 12 34 23 23 11 0 11 23 12 12 12 0 12 0 12 11 0 17 0 22 0 27 11 11 11 43 0 11 0 21 10 10 21 12 11 10 15 10 10 10 39 0 10 15 15 15 10 15 10 10 10 20 10 20 10 16 44 33 22 11 0 11 0 0 11 12 11 11 32 21 11 0 15 16 31 10 26 21 10 20 10 10 20 20 10 11 22 10 100 76 9 28 19 24 9 38 47 14 10 10 19 19 19 19 14 19 9 19 14 9 14 28 29 9 14 10 9 19 10 23 23 0 9 18 0 18 22 0 0 9 13 13 35 17 26 17 9 29 20 14 9 14 18 0 9 9 18 0 18 18 14 36 18 9 9 9 18 18 14 14 9 28 23 23 23 39 14 10 19 15 20 10 0 10 9 10 9 0 37 18 0 14 0 27 0 9 13 9 22 9 10 13 9 0 0 13 8 8 17 16 8 8 0 17 17 13 8 8 0 29 18 9 9 18 9 9 18 23 18 9 9 22 13 18 22 26 9 8 13 13 17 13 8 13 21 16 8 8 8 16 12 12
CADCHF 0 0 0 0 0 0 0 33 65 0 32 0 0 0 0 0 0 33 0 0 0 0 0 32 0 32 33 0 0 0 0 0 0 0 31 0 31 0 0 30 31 0 0 0 0 0 30 59 29 0 30 0 0 0 0 0 0 30 0 28 0 28 0 0 28 84 0 0 0 28 0 0 30 0 31 0 0 0 0 0 0 0 0 0 0 0 31 30 0 30 59 0 0 0 0 29 29 0 0 29 56 28 29 0 31 0 0 54 27 27 0 0 0 27 0 0 0 0 27 0 27 0 53 27 0 0 0 27 0 27 0 0 0 27 0 0 27 80 0 26 53 0 0 0 0 0 0 25 24 0 25 49 0 0 0 28 0 26 52 0 0 26 26 26 0 25 0 0 26 0 77 0 26 0 0 26 0 26 27 0 52 0 0 56 28 28 0 0 29 0 0 0 0 0 26 53 53 0 0 0 52 25 77 25 0 0 25 0 0 0 0 0 0 24 0 47 48 23 0 0 0 0 24 0 0 0 24 0 51 0 0 0 0 25 0 0 26 0 0 0 25 0 50 0 25 0 24 49 24 48 0 0 24 47 23 0 0 46 47 100
JPYGBP 0 0 0 0 0 0 0 0 61 0 0 0 0 0 60 0 61 0 0 0 0 61 0 0 0 0 62 0 0 62 62 0 0 0 0 60 0 0 58 0 58 0 0 0 56 0 0 56 0 0 0 0 0 54 54 0 0 56 0 0 0 53 0 0 0 53 0 0 0 0 0 0 0 0 58 0 0 0 0 0 0 0 0 0 0 0 0 0 0 56 56 0 0 0 0 0 0 0 0 0 53 0 0 0 0 0 51 51 0 0 0 0 0 100 50 0 54 52 0 0 0 0 0 0 0 0 0 0 51 0 0 0 51 0 0 0 0 0 49 0 0 95 72 0 0 0 46 0 0 47 0 0 46 0 0 0 0 0 48 49 48 0 0 0 0 0 0 0 0 49 0 0 0 0 0 49 0 0 50 0 0 50 0 0 52 0 0 0 54 0 53 0 51 0 50 50 50 0 0 0 0 0 49 48 0 0 0 0 51 0 92 0 0 45 0 45 45 0 0 44 45 0 0 0 0 0 45 0 48 0 0 0 0 0 0 49 0 0 0 0 0 0 0 47 0 45 0 45 46 0 0 0 0 0 44 0 0 44 0 0
USDCHF 4 11 12 8 8 14 9 12 9 9 13 4 7 9 6 9 4 14 6 8 15 17 10 12 15 11 5 14 8 5 6 8 17 11 2 15 12 6 6 13 10 21 18 20 11 9 16 8 8 15 18 11 16 18 11 20 15 9 9 12 10 18 11 11 12 17 14 13 5 12 11 7 14 12 5 10 14 6 10 10 10 8 4 11 10 11 12 11 18 15 15 6 14 11 9 7 9 12 9 12 19 11 17 5 9 13 100 49 31 22 14 14 11 10 17 18 14 12 8 10 8 16 19 18 12 13 18 8 9 8 14 5 14 15 14 14 19 21 18 18 14 10 10 17 8 9 14 13 17 18 15 17 18 19 21 14 13 22 14 11 13 14 19 9 19 9 10 15 16 13 17 14 11 12 11 5 20 13 15 9 15 20 17 12 14 7 9 11 12 8 9 18 12 11 5 11 10 10 13 17 19 28 18 13 16 10 18 17 14 13 10 11 17 17 9 12 17 14 15 9 13 18 15 15 9 9 12 13 11 17 12 20 17 17 9 6 13 12 26 12 11 14 15 13 17 13 17 13 9 15 9 19 22 16 18 6 15 14 18 18
JPYEUR 0 0 0 0 51 0 0 0 0 0 0 0 0 0 0 51 0 0 0 50 51 51 0 0 0 0 0 0 0 0 0 0 53 0 0 49 0 0 0 0 0 0 0 0 0 0 0 46 0 93 48 0 0 0 0 0 0 47 0 0 0 0 0 0 0 0 0 0 45 0 44 0 0 48 0 0 0 0 0 100 0 0 0 0 49 49 0 0 0 0 0 0 0 0 0 0 0 45 45 44 44 0 0 0 0 0 0 0 0 42 0 0 0 0 0 0 89 43 43 0 0 0 0 0 42 42 42 0 85 42 0 0 0 43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 38 39 0 0 43 0 0 41 0 0 0 40 0 39 0 40 0 0 40 0 0 0 41 0 0 0 0 0 61 41 42 0 0 0 0 0 0 0 0 0 0 0 0 0 0 41 0 0 0 0 0 0 0 0 0 42 42 0 38 0 57 0 37 74 0 37 36 0 0 0 37 0 38 0 0 37 0 40 0 40 0 39 0 41 0 40 40 0 0 0 0 0 38 38 0 0 57 0 38 37 75 37 36 0 0 36 37 0
CHFSEK 57 0 0 0 50 0 0 100 50 50 0 0 0 0 0 50 0 0 0 0 0 0 49 0 0 0 0 0 0 0 0 0 0 99 0 0 0 0 0 47 0 0 0 0 0 46 0 0 44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 43 0 0 44 0 86 0 0 0 0 0 0 48 0 0 0 0 0 0 0 48 0 0 0 0 0 0 0 0 45 0 0 0 0 43 0 44 0 50 47 42 83 41 41 0 41 42 0 82 0 0 0 42 0 41 41 0 41 41 0 0 0 0 0 0 41 0 0 0 41 0 0 0 0 40 40 39 39 0 0 0 0 0 37 0 76 0 0 38 0 0 0 0 0 0 0 0 0 39 39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 82 0 43 41 43 0 0 0 0 0 0 0 0 0 0 0 0 40 0 0 39 0 39 0 0 0 41 41 0 0 0 37 0 0 36 0 0 0 0 36 0 0 0 0 0 0 36 58 0 0 39 0 0 0 0 0 40 0 38 0 0 0 38 0 37 0 0 0 37 0 0 37 0 0 0 0 0 0 0
CADEUR 0 20 0 0 0 0 0 0 20 0 0 0 0 20 0 20 0 20 20 38 0 19 19 0 0 19 0 20 0 0 20 40 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 18 0 20 0 0 0 0 17 0 0 0 0 0 0 0 0 17 0 0 0 0 0 17 0 0 19 19 0 19 19 0 19 0 0 0 38 19 0 0 18 0 0 0 35 0 0 0 17 17 0 17 0 0 0 0 56 0 33 0 16 0 0 0 0 0 0 0 0 0 16 0 0 0 32 0 0 32 0 32 32 16 33 48 16 33 0 16 32 64 0 15 0 0 0 15 0 15 0 0 0 0 15 44 29 30 15 17 17 47 62 0 16 31 47 31 0 0 31 0 16 16 0 16 15 0 0 0 31 16 16 0 0 48 16 17 17 17 17 17 0 0 0 16 16 0 0 32 0 0 0 0 0 15 15 15 15 15 15 16 0 46 15 43 0 0 0 14 29 28 14 14 29 0 14 15 0 14 0 43 46 0 15 30 15 15 16 32 0 0 0 0 15 30 0 15 15 14 0 0 0 0 0 0 14 0 14 0 28 84 57 100
GBPEUR 6 8 0 12 10 5 4 7 7 7 10 8 9 6 5 5 6 7 0 5 2 5 2 0 8 6 2 6 5 7 9 6 5 4 8 7 2 7 2 3 7 8 3 3 6 6 8 7 1 6 9 1 5 5 6 9 4 2 7 3 5 7 4 3 5 4 5 8 2 6 8 6 4 5 5 1 7 8 4 5 8 4 5 6 7 8 1 9 16 10 9 15 3 3 5 2 9 7 6 2 10 4 4 5 7 11 13 18 14 9 10 11 13 13 21 17 13 17 12 12 8 10 17 14 13 11 6 9 10 18 22 29 23 16 12 5 4 4 26 10 14 12 11 3 7 10 7 5 9 13 11 11 7 9 8 9 4 13 13 16 12 13 15 10 18 12 13 14 11 5 11 5 9 12 11 15 8 13 10 5 27 100 69 38 39 28 17 22 11 21 11 14 16 16 14 11 34 23 19 11 23 18 16 16 14 16 20 10 10 9 22 26 20 14 10 18 8 9 5 16 12 14 10 12 24 18 12 14 14 15 20 28 19 21 13 11 11 11 10 9 14 16 21 11 12 29 20 11 15 17 5 10 18 11 6 12 21 25 15 11
GBPUSD 6 6 5 8 7 5 5 8 10 8 9 9 5 8 6 6 5 8 6 7 6 5 6 4 5 5 9 10 6 7 8 7 9 7 7 6 8 8 6 8 9 7 8 8 7 5 3 10 6 6 5 5 7 9 5 8 7 7 9 11 7 7 6 7 6 7 7 7 7 8 7 8 7 5 5 5 8 7 9 5 7 6 7 8 9 6 6 10 15 19 10 7 7 6 5 6 6 6 7 4 7 6 5 5 5 8 9 9 8 6 8 10 8 8 9 11 8 11 6 8 8 8 12 11 12 6 8 8 8 8 9 7 9 7 9 11 7 7 11 7 6 8 8 9 9 6 7 7 8 8 7 7 8 8 12 6 7 11 12 13 9 8 8 9 18 12 10 9 10 11 12 11 9 11 11 8 10 12 14 15 17 100 71 42 35 20 13 20 16 15 13 16 13 15 14 11 46 32 20 16 22 27 14 14 13 12 12 11 10 12 17 32 19 14 13 14 11 15 14 15 14 20 11 12 23 11 12 12 10 13 13 28 15 13 13 8 11 11 9 14 11 9 11 10 9 16 14 11 15 13 10 11 17 11 11 10 16 19 13 13
SEKUSD 0 43 42 0 0 0 0 0 41 0 41 0 0 41 0 0 0 0 0 0 40 0 0 0 0 0 0 0 43 0 0 0 0 0 40 0 0 39 39 0 0 0 38 39 0 0 0 0 0 0 0 0 0 36 0 0 0 0 0 0 36 0 0 0 0 36 0 37 0 0 0 0 0 39 39 0 0 0 0 0 0 40 82 0 0 0 0 0 0 37 37 0 38 37 0 0 37 0 0 0 0 72 0 0 0 0 34 0 0 34 34 0 33 0 0 0 0 0 0 0 0 0 0 34 100 0 34 0 0 34 0 34 0 0 34 34 0 0 0 0 0 32 0 0 0 0 0 31 0 0 0 0 0 31 32 0 0 33 0 33 0 0 0 0 0 0 0 0 0 0 0 0 0 32 34 0 33 0 0 0 0 34 0 0 34 35 0 0 0 37 0 0 35 0 0 67 0 0 0 33 33 0 32 32 31 0 0 34 0 0 0 30 0 30 0 0 0 0 0 29 30 0 0 0 0 0 0 0 0 0 0 32 0 0 0 0 33 0 32 0 0 0 0 0 0 0 0 0 0 31 0 0 0 0 0 0 0 29 0 0
CHFGBP 0 0 0 31 30 0 0 0 30 30 0 0 0 0 0 0 0 0 31 0 0 0 0 0 60 0 0 0 0 31 0 62 0 30 0 0 0 0 0 0 0 0 0 28 0 0 55 28 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 27 0 0 0 0 0 29 29 0 0 0 0 0 0 0 0 0 0 0 0 28 0 55 0 0 27 0 0 0 26 0 0 0 0 27 30 29 0 50 100 25 25 0 26 0 0 49 0 0 26 50 0 0 0 0 0 25 49 0 49 0 0 0 25 0 0 0 0 25 0 0 0 0 23 0 23 23 0 23 0 0 0 0 0 0 0 0 0 0 24 0 0 0 24 24 0 0 23 0 24 25 24 0 24 24 24 0 0 0 0 0 0 0 25 0 52 0 26 0 0 0 0 26 0 0 25 0 0 0 0 48 0 24 0 0 0 0 23 0 0 0 24 0 22 0 0 0 22 0 0 0 21 0 0 45 0 45 0 0 0 0 24 0 0 0 23 49 24 0 0 47 23 23 23 0 0 0 0 0 0 45 0 22 0 0 22 21 0 21 22 0 0
USDGBP 3 0 3 3 3 8 9 6 11 6 8 8 3 6 5 3 11 3 0 3 3 3 5 3 11 8 14 6 3 3 8 8 0 6 3 3 5 3 5 0 10 5 5 13 3 3 3 10 5 15 10 0 8 7 7 5 0 5 9 9 7 5 7 2 5 2 0 15 2 10 5 12 3 13 8 5 3 8 3 3 3 11 3 0 5 3 3 5 18 0 8 0 8 15 2 2 2 10 5 5 5 5 2 3 3 12 21 7 7 2 14 2 9 9 20 11 5 12 11 11 7 14 5 9 2 2 9 7 7 14 5 5 2 9 5 9 11 11 16 9 9 11 11 6 2 4 10 2 6 8 10 2 8 6 15 14 12 7 13 9 11 13 7 9 15 8 4 7 18 4 11 7 4 7 7 2 2 13 7 9 9 100 68 26 16 19 9 22 15 15 5 11 7 7 7 14 13 9 9 4 16 17 20 2 6 12 6 9 7 9 12 26 16 18 4 6 4 10 6 6 16 14 12 13 6 2 12 4 9 11 11 19 7 11 11 4 4 18 4 4 6 2 11 8 10 16 12 10 20 8 8 6 8 4 4 10 10 10 6 8
SEKEUR 0 0 0 0 0 0 0 0 0 35 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35 0 0 0 0 0 0 0 0 35 0 35 0 0 0 33 0 0 0 0 33 0 0 0 0 0 0 0 0 0 0 0 31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 35 0 0 0 0 35 100 0 0 0 32 0 0 0 0 0 0 31 0 0 0 0 0 0 0 30 30 59 0 0 29 0 0 29 0 29 0 0 0 0 0 0 0 0 29 0 29 58 29 0 0 29 0 0 0 30 59 0 0 0 0 0 0 0 27 0 0 0 0 0 27 0 27 27 28 0 0 0 28 29 0 0 0 28 28 0 0 56 0 0 28 28 28 0 0 0 28 0 0 0 0 0 0 0 0 0 0 0 31 0 0 0 0 59 29 0 0 28 0 0 0 0 0 28 27 0 0 0 0 0 0 0 26 0 0 52 0 0 0 25 52 0 52 0 0 26 0 0 0 28 0 28 28 0 0 0 28 28 0 27 0 0 0 0 27 0 27 0 0 0 0 0 0 0 0 51 0 0 0 0
JPYCAD 100 0 0 0 0 0 90 0 0 0 0 0 0 0 0 87 0 0 0 0 0 0 0 86 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 79 0 0 0 0 0 0 0 0 0 0 0 0 0 0 75 0 75 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 78 0 0 0 0 75 0 0 0 0 0 72 0 0 0 0 0 0 0 0 0 0 0 72 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 69 0 0 0 0 0 0 66 0 0 0 0 0 0 0 68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 71 0 69 0 0 0 74 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 68 0 0 0 0 0 0 0 0 0 0 0 64 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 69 0 0 0 0 0 0 66 0 0 0 66 0 0 0 0 0 0 0 0 0 63 0 0 0 0 63 0
EURCHF 2 4 18 10 6 13 7 5 7 4 4 5 5 6 4 6 7 5 6 6 3 11 4 5 4 6 7 5 4 4 2 6 6 3 5 4 9 5 3 7 6 7 5 4 6 2 2 4 3 2 2 4 4 6 6 5 4 3 5 1 4 8 8 2 6 5 2 2 3 7 2 3 4 4 7 2 4 5 3 2 4 4 2 3 3 5 6 7 3 4 3 6 4 3 5 2 5 7 8 4 8 6 13 6 6 3 100 71 45 24 16 18 16 15 12 13 12 17 5 7 10 9 6 4 6 1 4 4 5 6 14 16 10 6 7 6 8 6 12 8 12 5 4 4 5 5 6 4 3 3 3 5 4 3 5 5 3 9 1 6 4 7 6 5 6 3 6 4 4 5 5 5 3 8 5 3 4 5 2 5 6 16 11 5 7 2 2 2 5 2 3 3 3 2 2 2 1 4 1 7 6 8 7 3 5 3 3 11 2 4 3 4 8 5 5 2 5 6 2 4 4 2 2 1 5 6 5 7 3 5 4 6 6 5 5 3 4 4 8 12 13 5 6 4 6 5 5 7 9 7 7 11 5 7 4 4 10 10 8 9
CHFEUR 0 0 6 0 6 6 7 0 13 6 0 12 0 0 0 0 19 6 0 12 6 6 12 6 6 0 13 0 6 0 0 6 7 0 12 0 0 0 0 6 18 6 0 12 0 0 0 0 0 6 6 0 0 0 6 11 6 17 5 0 0 5 0 5 5 5 0 6 6 11 5 11 0 0 6 0 0 6 0 0 6 0 0 7 0 0 0 0 0 6 0 0 0 0 0 6 0 0 6 6 5 0 0 0 0 0 100 42 31 42 26 11 10 5 10 20 0 11 5 16 5 5 10 5 16 10 10 10 21 0 16 10 16 0 0 0 16 0 10 5 0 15 10 5 10 5 10 10 24 5 0 0 9 14 5 0 11 0 0 5 10 0 10 10 0 10 5 0 15 5 5 0 5 5 5 0 0 10 5 5 0 16 10 5 0 0 5 0 17 6 0 5 5 21 0 0 5 0 0 5 5 10 5 0 0 5 0 0 5 0 0 5 0 5 9 0 0 9 0 0 5 0 5 10 5 0 0 0 5 5 0 0 5 0 0 10 0 10 5 14 14 0 10 5 10 9 19 5 5 0 5 14 5 0 4 0 4 5 9 13
AUDSEK 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 94 92 0 91 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 95 0 0 0 0 0 0 0 0 0 0 96 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 82 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 82 0 0 0 0 82 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 78 0 0 0 0 0 0 0 0 0 0 0 0 0 0 87 0 85 0 0 0 0 0 0 0 0 0 79 0 0 0 0 0 0 0 0 0 0 0 0 0 72 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 74 0 0 0 0 0 0 0 0 0 0 70 0 0
CHFCAD 0 70 0 0 0 0 0 0 0 0 0 0 0 0 0 68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 67 0 0 0 0 0 0 0 0 63 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 60 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 56 56 0 0 56 0 0 0 0 55 59 0 0 0 0 56 0 0 0 0 0 0 55 56 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 51 0 0 0 0 0 0 0 0 0 0 0 0 54 0 0 54 0 0 0 0 53 0 0 0 0 0 0 0 0 54 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 0 0 49 50 0 0 0 0 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 0 49 0 0 0
JPYAUD 0 0 60 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 60 0 0 0 0 0 56 0 0 0 0 0 0 0 0 0 0 52 0 0 0 0 0 0 0 51 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 54 0 0 0 52 0 0 0 0 0 0 0 0 0 0 0 0 0 48 0 0 0 0 0 0 0 47 0 0 0 0 0 0 0 0 0 0 48 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 44 0 0 0 0 0 45 0 0 0 0 0 0 0 46 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 46 0 0 0 0 0 44 0 45 95 0 0 0 0 0 43 0 42 0 0 0 0 0 0 43 0 0 0 0 0 0 0 0 0 0 44 0 0 0 0 0 0 44 0 0 44 0 0 0 0 0 0 0 0 0 42 0 0 0 0 0 0
CHFAUD 0 0 59 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 59 0 0 0 0 0 0 0 0 0 0 0 0 55 0 0 0 0 0 0 0 52 0 0 56 0 0 0 0 0 0 0 0 0 0 49 0 49 0 52 0 0 0 0 0 0 0 0 56 0 0 56 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 48 47 0 0 47 0 47 0 47 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 46 0 45 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 47 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 44 0 0 0 0 0 0 0 0 42 84 0 0 0 0 0 0 0 0 43 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
SEKJPY 0 0 64 0 0 0 0 0 62 62 0 0 0 62 0 0 0 0 0 0 0 0 0 61 0 62 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57 0 0 0 0 0 0 0 56 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 56 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 52 0 0 0 0 55 0 0 0 0 0 0 0 51 0 51 0 51 0 0 51 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 0 0 53 0 0 0 0 0 0 0 51 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 45 0 45 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
JPYCHF 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 86 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 92 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 83 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 82 0 0 0 0 0 0 0 0 0 0 0 82 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 86 0 0 0 0 0 0 0 78 0 0 79 0 0 0 0 0 0 0 0 0 0 0 0 0 83 0 0 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 71 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 72 0 0 0 0
SEKGBP 0 0 0 0 0 0 0 0 0 61 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 52 0 0 0 0 0 54 0 0 0 0 0 0 0 59 0 0 0 0 0 0 0 0 0 57 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 51 0 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 49 0 0 0 0 0 0 0 0 0 0 0 0 0 0 49 0 0 0 0 0 0 100 0 52 0 0 0 0 53 0 0 0 0 0 0 0 0 0 0 0 0 48 0 0 0 0 0 49 0 0 0 0 0 0 45 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 46 0 0 0 0 0 45 0 0 0 0 0 44 45 0 0 0 0 43 0 0
SEKCAD 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 93 0 0 0 0 98 0 95 0 0 0 0 0 0 96 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 90 0 0 0 0 0 0 0 0 86 0 0 0 0 0 0 0 0 0 0 0 0 84 0 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 86 0 0 0 0 0 0 0 0 0 0 0 0
SEKCHF 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 57 0 0 0 0 0 58 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 52 0 0 0 0 0 0 0 0 48 0 0 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 49 0 0 0 0 0 0 0 0 47 0 0 0 46 0 0 0 0 44 0 0 0 0 45 0 0 51 0 0 0 0 0 0 46 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 97 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 44 0 0 0 0 0 43 0 0 0 0 0 0 0
CADSEK 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 61 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 54 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 50 0 0 0 0 100 0 51 0 0 0 0 0 50 0 0 0 0 0 0 0 51 0 50 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 49 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 54 0 0 51 0 0 0 0 0 0 0 0 49 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 46 0 0 0 0 0 0 0 0 0 0 0 0 0 0 62
JPYSEK 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 97 0 0 0 0 0 0 0 0 0 0 100 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 80 0 0 0 0 0 0 0 0 76 0 0 0 0 75 0 0 0 0 0 0 0 71 71 0 0 0 69 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
name color
USD #FF00FF
GBP #0000FF
CAD #6495ED
EUR #F4A460
JPY #8E8E38
TST #C6E2FF
SEK #D8BFD8
AUD #97FFFF
CHF #00EEEE
body {
background: white;
width:1150px;
}
h1 {
font-size: 220%;
text-align: center;
font-family: verdana;
color: gray;
margin-top:0px;
}
h2 {
font-size: 130%;
font-family: verdana;
text-align: center;
color: black;
}
h3 {
font-size: 130%;
font-family: verdana;
text-align: center;
color: gray;
line-height: 100%;
}
h4 {
font-size: 100%;
font-family: verdana;
text-align: justify;
color: black;
}
h5 {
font-size: 100%;
font-family: verdana;
text-align: center;
color: black;
}
h6 {
font-size: 100%;
font-family: verdana;
text-align: left;
color: gray;
margin-top:12px;
}
p {
font-family: verdana;
font-size: 80%;
text-align: center;
}
#chart_placeholder {
text-align: center;
float:right;
color:#fff;
width: 750px;
height: 830px;
}
.details {
float:right;
width:350px;
}
/*
.dependencyWheel {
font: 10px sans-serif;
}*/
#circle circle {
fill: none;
pointer-events: all;
}
path.chord {
stroke: #000;
stroke-width: .10px;
transition: opacity 0.3s;
}
#circle path.fade {
opacity: 1;
}
#circle:hover path.fade {
opacity: 0;
}
/*text is regions name only on chord diagram and scroll text*/
text {
fill: black;
font-family: Arial Narrow,Arial,sans-serif;
text-align: center;
font-size: 14px;
}
svg {
font-size: 10px;
color: green;
min-height: 100%;
min-width: 100%;
}
.yearbuttons{/*area*/
float: left;
margin-right: 50px;
width: 400px;
}
button{/*this are the year buttons*/
background-color: white;
color: white;
font-size : 20px;
font-family: Arial Narrow,Arial,sans-serif;
border-color: white;
/* border-radius: 2em; */
border-style: solid;
cursor:pointer;
}
.current{
background-color: white;
color: black;
font-size : 20px;
font-family: Arial Narrow,Arial,sans-serif;
border-color: black;
/* border-radius: 2em; */
}
#legend {/*regions*/
float:left;
font-size: 14px;
width: 215px;
}
/*regions as well*/
table.table1{
}
/*countries*/
table.table2 {
position: absolute;
top:180px;
left:1050px;
white-space: nowrap;
border-collapse: collapse;
display: none;
}
table.table2 td {
font-family: verdana;
font-size: 14px;
float: left;
}
p {
font-family: verdana;
font-size: 80%;
text-align: center;
}
.link {
margin-left: 30px;
width:300px;
height:50px;
float: left;
}
.scroll {
position:absolute; /*on top of vis*/
top:0;
left:0px;
}
.scroll2 {
float:left;
}
/* unvisited link */
a.one:link {
color: #3CBCBC;
text-decoration: none;
}
/* visited link */
a.one:visited {
color: #54C571;
}
/* mouse over link */
a.one:hover {
color: #2414ff;
}
/* selected link */
a.one:active {
color: #3CBCBC;
}
/*this are the links to the table not to other pages*/
/* mouse over link */
/* a.two:hover + table {
display: table;
color: black;
} */
a.two:click + table {
display: table;
color: black;
}
/* unvisited link */
a.two:link {
font-family: verdana;
color: black;
text-decoration: none;
}
/* visited link */
a.two:visited {
font-family: verdana;
color: black;
}
/* mouse over link */
a.two:hover {
font-family: verdana;
color: gray;
}
/* selected link */
a.two:active {
font-family: verdana;
color: black;
}
/*subframe*/
table.table2a {
position: absolute;
top:140px;
left:1050px;
white-space: nowrap;
border-collapse: collapse;
}
table.table2a iframe {
border: 0;
}
table.table2a td {
font-family: verdana;
font-size: 14px;
float: left;
}
p {
font-family: verdana;
font-size: 80%;
text-align: center;
}
.link {
margin-left: 30px;
width:300px;
height:50px;
float: left;
}
.scroll {
position:absolute; /*on top of vis*/
top:0;
left:0px;
}
.scroll2 {
float:left;
}
/* unvisited link */
a.one:link {
color: #3CBCBC;
text-decoration: none;
}
/* visited link */
a.one:visited {
color: #54C571;
}
/* mouse over link */
a.one:hover {
color: #2414ff;
}
/* selected link */
a.one:active {
color: #3CBCBC;
}
/*this are the links to the table not to other pages*/
/* mouse over link */
/* a.two:hover + table {
display: table;
color: black;
} */
a.two:click + table {
display: table;
color: black;
}
/* unvisited link */
a.two:link {
font-family: verdana;
color: black;
text-decoration: none;
}
/* visited link */
a.two:visited {
font-family: verdana;
color: black;
}
/* mouse over link */
a.two:hover {
font-family: verdana;
color: gray;
}
/* selected link */
a.two:active {
font-family: verdana;
color: black;
}
body {
}
.table_placeholder {
position: absolute;
top:180px;
left:950px;
white-space: nowrap;
padding-top: 0px;
padding-bottom: 0px;
min-width: 500px;
}
.table_placeholder table{
margin=1px;
}
.well {
padding-top: 0px;
padding-bottom: 0px;
min-width: 500px;
}
.h3, h3 {
text-align: left;
}
label {
margin-bottom: 10px;
}
.table1 table {
border-collapse: separate;
}
h3, .h3 {
text-align: left;
}
'use strict';
// title div with label and button
var header = d3.select(".table_placeholder").append("div").attr("class", "well");
header.append("h3").text("Notable events relating to selected CCY " + ccyfilter)
.attr("text-align", "left")
.attr("class","h3class")
;
var taskLabel = header.append("label")
.attr("id", "taskLabel")
.html("&nbsp;");
header.append("br")
var currTask = 0;
var taskButton1 = header.append("button")
.attr("class", "btn btn-primary")
.style("margin-bottom", "20px")
.style("width", "200px")
.style("text-align", "left")
.style("margin-left", "1px")
.text("Data Relations")
.on("click", function() {
this.blur();
// execute the task
showmatrix("interests.csv");
// next task
// currTask = ++currTask % tasks.length;
})
var taskButton2 = header.append("button")
.attr("class", "btn btn-primary")
.style("margin-bottom", "20px")
.style("width", "200px")
.style("text-align", "left")
.style("margin-left", "1px")
.text("Show Matrix")
.on("click", function() {
this.blur();
// execute the task
showmatrix("matrix.csv");
// next task
// currTask = ++currTask % tasks.length;
})
var button_clear = header.append("button")
.attr("class", "btn btn-primary")
.style("margin-bottom", "20px")
.style("width", "200px")
.style("text-align", "left")
.style("margin-left", "1px")
.text("Clear")
.on("click", function() {
this.blur();
// execute the task
task_delete_tables();
// next task
// currTask = ++currTask % tasks.length;
})
// container for array of tables
var tableDiv = d3.select(".table_placeholder").append("div").attr("id", "tableDiv1");
// initial data
var data;
var initialData = [
{ table: "Notable Events", rows: [
{ col1: "abc", col2: "Row1", col3: "DataT1R1" },
{ col1: "sdfasdf", col2: "Row1", col3: "DataT1R1" },
{ col1: "asdfasdf", col2: "Row2", col3: "DataT1R2" }
]
}
]
// tasks
function task_delete_tables() {
// clear any existing tables (by providing an empty array)
// update([]);
// var table = d3.select("wells").select("table").selectAll("tr")
var divs = tableDiv.selectAll("div");
ccyfilter="";
divs.remove();
// taskLabel.html("Cleared any existing tables");
}
function task_initialize() {
// load initial tables
data = JSON.parse(JSON.stringify(initialData));
update(data);
console.log(data);
taskLabel.text("Step 1: Initial tables loaded");
}
function task_initialize_csv() {
data = JSON.parse(JSON.stringify(initialData));
update(data);
update([]);
d3.text("interests.csv", function(csvdata) {
var divs = tableDiv.selectAll("div")
// after .data() is executed below, divs becomes a d3 update selection
.data(data, // new data
function(d) { return d.table // "key" function to disable default by-index evaluation
})
var divsEnter = divs.enter().append("div")
.attr("id", function(d) { return d.table + "Div"; })
.attr("class", "well")
// add title in new div(s)
divsEnter.append("h5").text(function(d) { return d.table; });
// add table in new div(s)
var tableEnter = divsEnter.append("table")
.attr("id", function(d) { return d.table })
.attr("class", "table table-condensed table-striped table-bordered")
// append table head in new table(s)
tableEnter.append("thead")
.append("tr")
.selectAll("th")
.data(["Currency Pair", "Time", "Related Information"]) // table column headers (here constant, but could be made dynamic)
.enter().append("th")
.text(function(d) { return d; })
// append table body in new table(s)
tableEnter.append("tbody");
var parsedCSV = d3.csv.parseRows(csvdata);
var tr = divs.select("table").select("tbody").selectAll("tr")
.data(parsedCSV).enter()
.append("tr")
.selectAll("td")
.data(function(d) { return d; }).enter()
.append("td")
.text(function(d) { return d; });
});
}
function task_update_insert() {
// add 4th row to table 2
data[0].rows.push({ table: "Table2", row: "Row4", data: "DataT2R4" });
update(data);
taskLabel.text("Step 2: Added 4th row to Table 2");
}
function showmatrix(filename){
header.select('h3').text("Notable events relating to selected CCY " + ccyfilter);
data = JSON.parse(JSON.stringify(initialData));
update(data);
update([]);
d3.text(filename, function(csvdata) {
var divs = tableDiv.selectAll("div")
// after .data() is executed below, divs becomes a d3 update selection
.data(data, // new data
function(d) { return d.table // "key" function to disable default by-index evaluation
})
var divsEnter = divs.enter().append("div")
.attr("id", function(d) { return d.table + "Div"; })
.attr("class", "well")
// add title in new div(s)
divsEnter.append("h5").text(function(d) { return d.table; });
var parsedCSV = d3.csv.parseRows(csvdata);
// add table in new div(s)
var tableEnter = divsEnter.append("table")
.attr("id", function(d) { return d.table })
.attr("class", "table table-condensed table-striped table-bordered")
// append table head in new table(s)
tableEnter.append("thead")
.append("tr")
.selectAll("th")
.data((parsedCSV[0])) // table column headers (here constant, but could be made dynamic)
.enter().append("th")
.text(function(d) { return d; })
// append table body in new table(s)
tableEnter.append("tbody");
parsedCSV.splice(0,1);
// Filter
if ( filename.includes('interest')){
for (var i = parsedCSV.length - 1; i >= 0; i--) {
// Filter on year and currency
if ( (!parsedCSV[i][1].includes(csvfilter)) || (!parsedCSV[i][0].includes(ccyfilter) ) ) {
console.log(parsedCSV.splice(i,1));
}
// if ( (!parsedCSV[i][1].includes(csvfilter)) and (!parsedCSV[i][0].includes(ccyfilter) ) ) {
// console.log(parsedCSV.splice(i,1));
// }
}
}
var tr = divs.select("table").select("tbody").selectAll("tr")
.data(parsedCSV).enter()
.append("tr")
.selectAll("td")
.data(function(d) { return d; }).enter()
.append("td")
.text(function(d) { return d; });
});
}
function task_updated() {
// change the content of row 1 of table 1
var item = data[0].rows[0].data;
data[0].rows[0].data = item + " - Updated";
update(data);
taskLabel.text("About To restart");
taskButton.text("Restart") ;
}
// task list (array of functions)
var tasks = [task_delete_tables,task_initialize,task_update_insert,task_updated]
// function in charge of the array of tables
function update(data) {
// select all divs in the table div, and then apply new data
var divs = tableDiv.selectAll("div")
// after .data() is executed below, divs becomes a d3 update selection
.data(data, // new data
function(d) { return d.table // "key" function to disable default by-index evaluation
})
// use the exit method of the d3 update selection to remove any deleted table div and contents (which would be absent in the data array just applied)
divs.exit().remove();
// use the enter metod of the d3 update selection to add new ("entering") items present in the data array just applied
var divsEnter = divs.enter().append("div")
.attr("id", function(d) { return d.table + "Div"; })
.attr("class", "well")
// add title in new div(s)
divsEnter.append("h5").text(function(d) { return d.table; });
// add table in new div(s)
var tableEnter = divsEnter.append("table")
.attr("id", function(d) { return d.table })
.attr("class", "table table-condensed table-striped table-bordered")
// append table head in new table(s)
tableEnter.append("thead")
.append("tr")
.selectAll("th")
.data(["Currency Pair", "Time", "Related Information"]) // table column headers (here constant, but could be made dynamic)
.enter().append("th")
.text(function(d) { return d; })
// append table body in new table(s)
tableEnter.append("tbody");
// select all tr elements in the divs update selection
var tr = divs.select("table").select("tbody").selectAll("tr")
// after the .data() is executed below, tr becomes a d3 update selection
.data(
function(d) { return d.rows; }, // return inherited data item
function(d) { return d.row } // "key" function to disable default by-index evaluation
);
// use the exit method of the update selection to remove table rows without associated data
tr.exit().remove();
// use the enter method to add table rows corresponding to new data
tr.enter().append("tr");
// bind data to table cells
var td = tr.selectAll("td")
// after the .data() is executed below, the td becomes a d3 update selection
.data(function(d) { return d3.values(d); }); // return inherited data item
// use the enter method to add td elements
td.enter().append("td") // add the table cell
.text(function(d) { return d; }) // add text to the table cell
}
[[ 5, 289, 888, 979, 2405, 3, 888, 1778, 561],
[ 354, 0, 866, 287, 841, 3, 609, 1525, 684],
[ 776, 278, 1, 370, 621, 7, 61, 684, 531],
[1503, 502, 1357, 5, 2245, 8, 1480, 1378, 282],
[1208, 717, 342, 543, 9, 7, 197, 228, 100],
[ 1, 4, 1, 7, 2, 7, 3, 4, 3],
[ 486, 61, 0, 206, 430, 6, 7, 6, 0],
[2209, 609, 1047, 1435, 1528, 1, 474, 3, 894],
[ 688, 476, 268, 227, 1099, 2, 585, 281, 6]]
[[ 5, 286, 1118, 1221, 1878, 3, 654, 1363, 591],
[ 376, 0, 1068, 303, 925, 3, 739, 1532, 787],
[1014, 521, 1, 363, 658, 7, 54, 726, 668],
[1488, 584, 1505, 5, 1568, 8, 1627, 1326, 240],
[1096, 493, 303, 560, 9, 7, 85, 157, 178],
[ 1, 4, 1, 7, 2, 7, 3, 4, 3],
[ 603, 222, 100, 264, 112, 6, 7, 6, 167],
[1693, 729, 1167, 1416, 1317, 1, 191, 3, 501],
[ 762, 307, 60, 158, 677, 2, 498, 262, 6]]
[[ 5, 447, 2020, 1952, 1602, 3, 1422, 2145, 871],
[ 431, 0, 1473, 621, 1094, 3, 945, 1883, 1091],
[1747, 904, 1, 663, 658, 7, 352, 565, 687],
[2541, 856, 1973, 5, 1385, 8, 1864, 1610, 601],
[ 941, 815, 347, 633, 9, 7, 0, 232, 333],
[ 1, 4, 1, 7, 2, 7, 3, 4, 3],
[ 565, 101, 382, 605, 311, 6, 7, 6, 430],
[2229, 654, 1446, 1828, 1042, 1, 246, 3, 721],
[ 997, 616, 500, 627, 750, 2, 969, 279, 6]]
[[ 5, 674, 2609, 1372, 2986, 3, 1051, 1792, 705],
[ 933, 0, 1763, 948, 2207, 3, 1071, 2272, 1161],
[1774, 1283, 1, 710, 1322, 7, 203, 1163, 918],
[1843, 1138, 2395, 5, 1503, 8, 1629, 1649, 245],
[1238, 851, 282, 510, 9, 7, 231, 376, 325],
[ 1, 4, 1, 7, 2, 7, 3, 4, 3],
[ 602, 400, 90, 483, 254, 6, 7, 6, 187],
[2333, 997, 1595, 1743, 1476, 1, 329, 3, 902],
[ 725, 489, 215, 240, 880, 2, 487, 282, 6]]
[[ 5, 486, 2491, 1453, 2870, 3, 894, 1731, 712],
[ 699, 0, 1529, 755, 2041, 3, 895, 2074, 1142],
[1592, 1096, 1, 873, 1374, 7, 152, 910, 824],
[1959, 985, 2490, 5, 1621, 8, 1371, 1863, 287],
[1072, 729, 391, 1060, 9, 7, 211, 302, 223],
[ 1, 4, 1, 7, 2, 7, 3, 4, 3],
[ 276, 268, 341, 505, 90, 6, 7, 6, 87],
[1836, 837, 2003, 1850, 1617, 1, 216, 3, 1111],
[ 637, 568, 348, 243, 783, 2, 469, 169, 6]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment