Fund of hedge funds manager specialising in event driven and relative value strategies
Mellon Global Alternative Investments ("MGAI"), based in London, UK is dedicated to managing fund-of-hedge-fund portfolios. The firm focuses on relative value and event-driven strategies to provide genuine diversification from traditional asset classes. Most recently, MGAI has extended its product offering to include two new products; one that is invested across a range of credit strategies and another that is focused on the distressed strategy.
MGAI's established team has a distinctive and rigorous approach, seeking to capture attractive returns with limited downside risk by identifying market inefficiencies and dynamically managing the strategy allocation as opportunities change.
Underlying fund managers are selected following in-depth research and due diligence, using a disciplined, qualitative rating process. AdvantHedge, MGAI's proprietary research and risk management system, captures all aspects of this process and ensures consistent and transparent decision making.
Clients can access MGAI's actively managed portfolios through a range of existing products or through segregated mandates.
// 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);
});
});