Hamon Asset Management ("Hamon"), based in Hong Kong, specialises in Asian equity investment.
The firm is led by an experienced management team, with members drawn from a wide variety of disciplines. Senior executives of Hamon are the majority shareholders of the group whilst Mellon Financial Corporation holds a minority stake.
The core of Hamon's process is bottom-up stock selection. Stock analysis is focused on both earnings and free cashflow generation. The firm's research focuses on under-owned and/or under-researched stocks in pursuit of outperformance.
The investment process starts with ideas that are independent of the size and capitalisation of the company or the market, and seeks to provide consistent investment performance across a product range. Hamon manages both traditional long-only Asian funds as well as hedge funds. The firm also boasts segregated fund management capability.
Investment scope:
Asian equities
Long/short strategies
Long only
1The Bank of New York Mellon Corporation owns a 19.9% minority interest in The Hamon Investment Group Pte Limited, the parent company of Hamon Asset Management Limited
// 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);
});
});