Fund of funds manager specialising in alternative funds and traditional long-only products
EACM Advisors LLC ("EACM"), based in Connecticut, USA, is a fund-of-funds manager specialising in both hedge fund and traditional long-only strategies, with a heritage stretching back over 25 years.
In the hedge fund arena, EACM specialises in multi-strategy fund-of-funds, seeking consistent long-term capital appreciation, low volatility and low correlation to global equity and fixed-income markets. Recently EACM's product range has been extended to include a socially-responsible investment strategy.
The firm places considerable emphasis on rigorous attention to manager due diligence and portfolio structure and management.
In the traditional, long-only arena, EACM specialises in multi-manager products focusing on entrepreneurial, fundamentally-based managers. The firm's objective is to build and manage portfolios of specialised managers to outperform and diversify better than a single manager.
// 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);
});
});