Classical, fundamental long-term global equity investment management
Walter Scott & Partners Limited ("WSPL") is a classical, fundamental and long-term global equity investment management firm. It was founded in 1983 in Edinburgh, Scotland. The firm focuses on managing global and international equity portfolios - meaning global markets excluding those of the client's own country - for institutional clients around the world. It also manages regional, single country and emerging markets mandates.
WSPL's belief is that long-term shareholder return cannot exceed the wealth generated by the underlying business. The firm seeks, therefore, to identify companies capable of sustained high rates of wealth generation.
Portfolios are characterised by a long-term "buy and hold" approach to stock selection, with commensurately low turnover. The firm's portfolios are not simply dictated by the structure of indices.
Research and portfolio management are two elements of the same role at WSPL, and each investment decision involves the firm's entire investment staff operating as a single team.
Investment scope:
Large, mid, small cap
European equities
Global equities
Global or regional, emerging markets equities
International equities (world excluding domestic market)
// 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);
});
});