Pareto Investment Management Limited ("Pareto"), based in London, UK, is one of the world's foremost currency managers specialising in overlay and absolute return strategies for institutional clients.
The firm also has an affiliate in Tokyo and UK Financial Services Authority-appointed representatives in New York and Sydney performing marketing and client servicing in their respective regions.
Pareto has a client-focused, team culture distinguished by a balance of investment expertise and academic excellence, and its clients include some of the most sophisticated institutions around the globe.
Pareto believes that the best way to add value in currency management is by controlling risk of loss successfully. In a portfolio of overseas securities, risk of loss is defined as the risk of cash loss when translating the foreign currency exposures back into base currency.
Foreign currency risk can be measured and can, therefore, be managed. Accordingly, Pareto does not attempt to forecast future currency returns but instead focuses on estimating and managing the currency risk embedded in international investment portfolios.
// Boutiques nav initialisation
$(document).ready(function(){
$("h1").jQIR("gif", "/core/library/images/headings/h1/");
$("h1").jQIR("jpg", "/core/library/images/headings/h1/");
var getFiletype = function(src) {
var filetype = src.substring(src.lastIndexOf(".")+1); // get file type
return filetype;
};
var setOn = function(o) { // Function to set the "ON" nav image
o = $(o);
var src = $("img", o).get(0).src;
var filetype = getFiletype(src);
var re = new RegExp("\\."+filetype+"$", "g");
$("img", o).get(0).src = src.replace(re, "ON."+filetype);
};
var setOff = function(o) { // Function to set the "OFF" nav image
o = $(o);
var src = $("img", o).get(0).src;
var filetype = getFiletype(src);
var re = new RegExp("ON\\."+filetype+"$", "g");
$("img", o).get(0).src = src.replace(re, "."+filetype);
};
// Set active nav element
$("ul.boutiques a").each(function(){
if(mam.nav.isActive(this.href)) $(this).addClass("active");
});
// Set hover functionality for all nav elements except for the "active"
$("ul.boutiques a").not(".active").jQIR("gif", "/core/library/images/boutiques/");
$("ul.boutiques a.active").jQIR("gif", "/core/library/images/boutiques/", true);
$("ul.boutiques a").not(".active").hover(function() {
setOn(this);
}, function() {
setOff(this);
});
});