Listen
The Houston Purchasing Managers Index dropped to 57.1 in May, down a point from April.
Mike Valant is business survey chair with the Institute of Supply Management — Houston. Valant says the index points to a stabilizing of the region’s economy rather than an outright decline. He says employment, which took the steepest drop among the survey’s indicators, provides a prime example.
“Sixty percent remain the same, while only 14% reduced staff, and 26% are still increasing. So it’s not a negative, it’s just kind of stabilized at a plateau.”
The survey indicated a similar leveling off of sales, with orders dropping off for oil and gas as well as for manufactured goods.
“But the household comment is the last three years is a dramatic increase, so everybody seems to be saying we kind of plateaued here at a higher level than what we’ve have been in the past.”
The PMI indicates likely shifts in production three or four months in advance. It has a range of 0 to 100, with readings over 50 pointing to near-term production gains.
$(function () {
var chart;
$(document).ready(function () {
chart = new Highcharts.Chart({
chart: {
renderTo: 'container',
type: 'line'
},
title: {
text: 'Houston Purchasing Managers Index PMI 2012-2013 '
},
subtitle: {
text: 'Source: Institute for Supply Management (ISM)'
},
xAxis: {
categories: [ 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec', 'Jan', 'Feb', 'Mar', 'April', 'May']
},
yAxis: {
title: {
text: 'Monthly Index'
}
},
tooltip: {
enabled: false,
formatter: function () {
return '' + this.series.name + '
' + this.x + ': ' + this.y + '°C';
}
},
plotOptions: {
line: {
dataLabels: {
enabled: true
},
enableMouseTracking: false
}
},
series: [{
name: 'Monthly Index',
data: [59.2, 59.6, 60.3, 59.4, 57.7, 54.6, 54.6, 55.8, 64.2, 61.0, 58.4, 57.1]
}]
});
});
});