Fundamentally-based global quantitative strategies
Mellon Capital Management Corporation LLC ("Mellon Capital"), based in San Francisco, USA, has a tradition of investment management innovation spanning over 30 years.
The firm focuses on investment solutions designed to meet the needs of institutional investors. It applies quantitative methods to investment management, resulting in processes that blend sound financial theory and cost-effective implementation.
Recognised as pioneers in applying modern portfolio and capital market theory to the investment process, Mellon Capital's research department has kept the firm at the cutting edge of investment management, always striving to enhance current products and develop new strategies.
Mellon Capital's global alpha strategy forms the basis of its hedge fund offering, which encompasses a range of global macro and currency funds, managed across the risk spectrum.
Investment scope:
130/30
Active equity
Credit absolute return
Currency management
Enhanced indexing
Equity and fixed income indexing
Market-neutral
Market strategy
Multi-strategy
Socially responsible investing
US and global tactical asset allocation
Effective 1 Jan 2008 Mellon Equity Associates has merged into Mellon Capital Management Corporation.
// 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);
});
});