The Monetary Authority of Singapore (MAS) is one of the most unconventional major central banks in the world. Where the Federal Reserve, the ECB, and the Bank of England adjust short-term interest rates to pursue their mandates, MAS manages monetary policy almost entirely through the exchange rate. The Singapore Dollar Nominal Effective Exchange Rate — the S$NEER — is not just a metric MAS watches; it is the policy instrument itself.
That structural difference makes the SGD fascinating to trade and analyse. There is no MAS "rate decision" in the conventional sense, no dot plot of future rate projections, and no press conference after each meeting. Instead, MAS releases a Monetary Policy Statement (MPS) twice a year — in January and July — in which it either widens, narrows, re-centres, or re-slopes the S$NEER band. Reading those three parameters is the whole game for SGD positioning.
This article maps how the MAS exchange-rate framework works, traces the full tightening-and-easing cycle from 2021 to 2026, and identifies the macro indicators — CPI inflation, the trade-weighted index (NEER), SORA, GDP, and the current account — that drive MAS decisions and SGD valuations.
Core Finding — April 2026
After an unprecedented five tightening steps between October 2021 and October 2022, MAS began easing the S$NEER band in 2024. By early 2026, core inflation has normalised to approximately 1.5% YoY — within MAS's 1–3% comfort zone — and the policy band has returned to a modest appreciation slope. USD/SGD has retreated from its 2022 highs above 1.42 to around 1.30, consistent with a broadly supportive external environment and Singapore's durable current account surplus.
How MAS Monetary Policy Actually Works
Most central banks own the short end of the domestic yield curve by setting an overnight interbank rate. Singapore does the opposite: MAS anchors the external value of the currency. The S$NEER is a weighted basket of the Singapore dollar against the currencies of its major trading partners — the composition is not publicly disclosed but is dominated by the USD, CNY, EUR, MYR, and JPY.
MAS manages the S$NEER against a target band defined by three parameters:
The Three MAS Policy Levers
- Slope: the rate at which the midpoint of the band appreciates or depreciates over time. A positive slope means MAS is allowing — and targeting — gradual SGD appreciation. A zero slope means the midpoint is flat.
- Width: the percentage deviation permitted either side of the midpoint before MAS intervenes. Narrowing the band signals tighter policy intent; widening it allows more volatility.
- Centre: the level of the S$NEER at which the midpoint is re-anchored. A re-centring upward (to the prevailing exchange rate) is effectively a one-off appreciation — the most aggressive tightening move in MAS's toolkit.
The practical consequence for FX traders is that USD/SGD is not determined by a rate differential in the traditional sense. Instead, it is the market's real-time assessment of where the S$NEER basket needs to trade to keep the SGD within MAS's band. When USD strengthens globally — pulling USD/SGD higher — MAS intervenes by selling USD and buying SGD. The SORA (Singapore Overnight Rate Average) moves as a consequence of those interventions rather than as a cause.
This also means the exchange rate is the primary transmission mechanism for inflation. A stronger SGD reduces the price of imports (Singapore imports almost all of its food and energy), so MAS tightens by letting — or engineering — SGD appreciation. When the economy is slowing and inflation is under control, MAS eases by reducing the slope toward zero, allowing the SGD to depreciate passively.
S$NEER Trade-Weighted Index — 2018 to 2026
The S$NEER (proxied by the trade-weighted index) rose sharply through 2022–2023 as MAS executed five consecutive tightening steps. The post-2024 easing phase stabilised the index at elevated levels, with modest depreciation pressure in 2025 as global risk appetite improved.
The trade-weighted index series is directly accessible from the FXMacroData SGD trade_weighted_index endpoint, which tracks the NEER monthly with announcement timestamps aligned to MAS releases.
The 2021–2023 Tightening Cycle: Five Steps in Eighteen Months
Singapore entered the post-pandemic period with a zero-slope, unchanged-width S$NEER band. Core inflation had been well below 2% for most of the 2010s; MAS had no urgency to tighten. The global commodity shock and reopening surge changed that rapidly.
By mid-2021, MAS's own forecasts were showing core CPI moving toward 3%. In October 2021, MAS moved for the first time since 2018 — a modest upward slope increase that barely moved markets. But the Ukraine war in early 2022 supercharged Singapore's import price index: energy, food, and semiconductor input costs all spiked simultaneously, an acute problem for an economy where virtually every consumable is imported.
MAS then took the extraordinary step of calling an off-cycle meeting in January 2022 — only the second such extraordinary review in its history — and re-centred the S$NEER band upward, effectively delivering a one-off SGD appreciation. This was followed by three further tightening steps in April, July, and October 2022, each steepening the slope and/or re-centring the band. By the end of 2022, the cumulative tightening had pushed the S$NEER to its highest level in over a decade.
Singapore Core CPI vs. Headline CPI — % YoY, 2019 to 2026
Headline CPI peaked above 8% in late 2022. Core inflation (which MAS monitors more closely) peaked around 5.5% and has since fallen back toward the 1–3% band that historically signals a neutral MAS stance. Note: MAS does not have a formal numeric inflation target — it targets price stability over the medium term.
You can pull Singapore's complete CPI history directly via the FXMacroData SGD inflation endpoint:
import requests
BASE = "https://fxmacrodata.com/api/v1"
KEY = "YOUR_API_KEY"
cpi = requests.get(
f"{BASE}/announcements/sgd/inflation",
params={"api_key": KEY, "start": "2019-01-01"}
).json()["data"]
print(f"Latest CPI: {cpi[0]['val']}% YoY as of {cpi[0]['date']}")
print(f"Announcement timestamp: {cpi[0]['announcement_datetime']}")
The SGD's Unique Position Among Asian Currencies
Singapore occupies a node in the global supply chain that almost no other city-state can replicate. It is simultaneously a major re-exporter, a regional financial hub, a semiconductor supply-chain anchor, and one of the world's largest bunker fuel and LNG trading centres. That economic profile means the SGD is not a pure risk-on or risk-off currency in the way that, say, the AUD or the JPY are.
In broad USD-strength episodes, USD/SGD typically rises — but less than most Asian peers. MAS's active management of the S$NEER compresses the range. During acute risk-off shocks (the 2020 COVID selloff, the 2022 Fed hiking shock, the 2023 US regional banking stress), USD/SGD widened sharply but quickly mean-reverted as MAS signalled the band was holding.
For relative-value traders, the interesting comparisons are USD/SGD versus USD/MYR and USD/SGD versus USD/CNY. Singapore's strong current account surplus and its role as a safe-harbour financial centre within Southeast Asia mean the SGD tends to outperform regional peers during EM stress episodes but underperforms during broad EM risk-on recoveries where higher-beta currencies gain more.
USD/SGD Spot Rate — 2018 to 2026
USD/SGD rose sharply in 2022 as global USD strength overwhelmed MAS tightening. The pair peaked above 1.42 in Q4 2022 and retreated through 2023–2025 as MAS held an appreciation-biased band and global USD pressure eased. By early 2026 the pair had retraced toward 1.29–1.31.
Pull the USD/SGD spot series directly from the FXMacroData forex endpoint:
import requests
BASE = "https://fxmacrodata.com/api/v1"
KEY = "YOUR_API_KEY"
fx = requests.get(
f"{BASE}/forex/usd/sgd",
params={"api_key": KEY, "start": "2020-01-01"}
).json()["data"]
latest = fx[0]
print(f"USD/SGD: {latest['val']:.4f} on {latest['date']}")
SORA: Singapore's Risk-Free Rate Benchmark
Because the exchange rate, not an interest rate, is the primary policy lever, SORA (Singapore Overnight Rate Average) plays a secondary role compared to the Fed Funds rate or the ECB deposit rate. SORA is the volume-weighted average rate of unsecured overnight interbank SGD transactions, administered by MAS. It replaced the Singapore Interbank Offered Rate (SIBOR) as the benchmark for SGD loan pricing and derivatives from 2024 onward.
SORA moves as a consequence of MAS's FX intervention activity and global USD conditions rather than being directly set. When MAS is tightening — selling USD to strengthen SGD — it removes SGD liquidity from the banking system, putting upward pressure on SORA. When MAS eases, the reverse occurs. SORA therefore tends to correlate with the tightening/easing cycle but with a lag and with more volatility than a directly managed rate.
SORA Overnight Rate — 2020 to 2026
SORA rose in tandem with the global hiking cycle (driven partly by USD funding conditions flowing into the SGD interbank market) and has since moderated. Unlike the Fed Funds rate, SORA is not a direct MAS policy target — it is a market-clearing rate that reflects the consequences of MAS FX activity.
The SORA historical series is available through the FXMacroData SGD risk-free rate endpoint:
curl "https://fxmacrodata.com/api/v1/announcements/sgd/risk_free_rate?api_key=YOUR_API_KEY&start=2020-01-01"
{
"data": [
{
"date": "2026-01-01",
"val": 3.12,
"announcement_datetime": "2026-01-15T08:00:00+00:00"
},
{
"date": "2025-07-01",
"val": 3.45,
"announcement_datetime": "2025-07-16T08:00:00+00:00"
}
]
}
GDP and the Open Economy Transmission
Singapore's GDP is among the most trade-intensive in the world. At roughly 300% of GDP in trade flows, the economy's external sector dwarfs domestic consumption as a driver of growth. Manufacturing — in particular semiconductor fabrication, chemicals, and precision engineering — accounts for roughly 20% of GDP and is extremely sensitive to global electronics demand cycles.
The two dominant cyclical drivers for Singapore's GDP are: (1) the US semiconductor capex cycle, which directly feeds into demand for Singapore-manufactured chips and chemical precursors; and (2) Chinese import demand, which affects both Singapore's re-export hub function and its port volumes. When both drivers are positive simultaneously, Singapore's advance GDP prints can surprise significantly to the upside — and MAS will lean toward tightening. When both disappoint, as in the 2023 semiconductor inventory correction, MAS eases.
Singapore GDP — SGD Billions, Quarterly
Singapore's quarterly GDP reflects the volatility of a small, highly open economy — the 2020 pandemic contraction was sharp, the 2021–2022 recovery equally fast, and the 2023 semiconductor slump visible as a growth air pocket before the 2024–2025 recovery.
GDP data for Singapore is available from the FXMacroData SGD GDP endpoint. The advance GDP estimate — published roughly two weeks after each quarter end — is the most market-moving of the three GDP releases and is what MAS pays closest attention to when calibrating the July MPS.
Reading the MPS: What to Look For
MAS's semi-annual Monetary Policy Statement is the primary event in the SGD calendar. The document is typically two to three pages and explicitly states the new slope, width, and centre of the S$NEER band — no ambiguity, no forward guidance about future meetings. That transparency makes interpretation straightforward but also means the entire market arrives at the same read simultaneously.
The practical signal hierarchy for MPS interpretation is:
MPS Signal Reading Guide
- Re-centring upward: the strongest tightening signal. MAS immediately moves the S$NEER to a higher level. USD/SGD typically falls 0.5–1.5% on the same session.
- Slope steepening: a medium-strength tightening move. It implies gradual SGD appreciation over the coming months. USD/SGD falls slowly.
- Slope reduction to zero: the first easing step. MAS abandons appreciation bias; the SGD drifts passively. USD/SGD tends to consolidate sideways.
- Re-centring downward: the strongest easing step. Rare — last used during the 2020 pandemic shock. USD/SGD rises sharply.
- Width change only: uncommon; signals a change in tolerance for volatility without a directional bias change.
The "Off-Cycle" Warning Signal
If MAS calls an extraordinary meeting outside its normal January/July schedule, it signals that the macro shock is large enough that waiting for the scheduled MPS would cause an unacceptable misalignment between the S$NEER band and economic reality. Off-cycle meetings have historically been followed by moves at least as large as a standard slope steepening. The January 2022 off-cycle move — a full re-centring — is the strongest recent precedent. An off-cycle meeting is the single highest-conviction signal for a directional USD/SGD trade.
Unemployment and the Labour Market Dynamic
Singapore's unemployment rate is structurally low — it has rarely exceeded 3.5% outside of acute recessions. The labour market is tight, heavily supplemented by foreign work permit holders, and subject to active government management through the Fair Consideration Framework and tiered foreign worker levies. Because wage inflation in Singapore tends to be muted relative to CPI (partly because imported goods represent such a large share of the consumption basket), unemployment data is useful primarily as a leading indicator of domestic demand conditions, not as a direct inflation signal.
When resident unemployment rises toward or above 3%, it is a reliable indicator that Singapore's external exposure is deteriorating — either the semiconductor cycle is turning down or regional trade flows are weakening. That combination typically precedes a MAS pause or slope reduction at the next MPS. Track the SGD unemployment series alongside GDP quarterly to build a composite demand signal.
Singapore Macro Scorecard — April 2026
Radar view of Singapore's macro signal environment. Higher scores indicate conditions more consistent with an appreciation-biased MAS stance. The April 2026 snapshot reflects normalised inflation, stable growth, and modest external demand recovery as the primary drivers.
Building a MAS Watch Stack with FXMacroData
The five indicators that matter most for systematic SGD macro analysis are all available through FXMacroData's SGD endpoint family. A minimal monitoring stack covers:
- inflation — CPI YoY; the primary MAS reaction function trigger
- trade_weighted_index — the S$NEER proxy; tracks where MAS is letting the SGD trade within the band
- risk_free_rate — SORA; the liquidity consequence of MAS intervention activity
- gdp_quarterly — advance GDP estimate; the growth input to the July MPS calibration
- unemployment — resident unemployment rate; demand signal and foreign-worker-levy policy cross-check
import requests
BASE = "https://fxmacrodata.com/api/v1"
KEY = "YOUR_API_KEY"
def get(path, start="2022-01-01"):
r = requests.get(f"{BASE}{path}", params={"api_key": KEY, "start": start})
r.raise_for_status()
return r.json()["data"]
cpi = get("/announcements/sgd/inflation")
neer = get("/announcements/sgd/trade_weighted_index")
sora = get("/announcements/sgd/risk_free_rate")
gdp = get("/announcements/sgd/gdp_quarterly")
unemploy = get("/announcements/sgd/unemployment")
latest_cpi = cpi[0]["val"]
latest_neer = neer[0]["val"]
latest_sora = sora[0]["val"]
# Simple MAS stance signal
if latest_cpi > 3.0:
mas_signal = "HAWKISH: CPI above 3% — expect slope steepening or re-centring at next MPS"
elif latest_cpi < 1.5:
mas_signal = "DOVISH: CPI below 1.5% — slope reduction or even re-centring lower possible"
else:
mas_signal = "NEUTRAL: CPI in 1.5–3% comfort zone — current band likely unchanged"
print(f"CPI: {latest_cpi:.1f}% | NEER Index: {latest_neer:.1f} | SORA: {latest_sora:.2f}%")
print(f"MAS Signal: {mas_signal}")
{
"CPI": 1.5,
"NEER_index": 104.2,
"SORA": 3.12,
"MAS_signal": "NEUTRAL: CPI in 1.5–3% comfort zone — current band likely unchanged"
}
What the Next MPS Could Bring
By April 2026, Singapore's macro picture has largely normalised from the post-pandemic inflation episode. Core CPI has fallen back toward the 1.5% mark — below the mid-point of the 1–3% zone that MAS treats as a neutral signal. GDP growth is recovering moderately as the global electronics cycle turns up and Chinese demand stabilises. Unemployment remains low at approximately 2.1%.
The key risk factors that could shift the MAS stance at the July 2026 MPS are:
July 2026 MPS: Scenario Map
- Base case (60%): MAS holds slope, width, and centre unchanged. Core CPI stable at 1.5–2%, external demand recovering but not hot. USD/SGD drifts in the 1.29–1.33 range.
- Dovish case (25%): If CPI prints below 1% YoY in May–June or GDP misses significantly, MAS reduces slope to zero. USD/SGD initially spikes toward 1.35–1.37; partially offset by broader USD weakness.
- Hawkish case (15%): A renewed supply shock (energy spike, semiconductor cycle overshoot, CNY depreciation transmitting through import prices) re-accelerates CPI toward 3%+ by mid-year. MAS steepens the slope. USD/SGD falls back toward 1.26–1.28.
The FXMacroData release calendar surfaces Singapore CPI, GDP, and unemployment announcement dates automatically, allowing traders to build an event-driven watch schedule for the weeks leading into each MPS.
Why SGD Is Worth Watching Even If You Don't Trade It
The SGD's managed float structure makes it a useful leading indicator for broader Asian FX regimes. When MAS tightens aggressively — as it did in 2022 — it signals that Asian policymakers broadly accept a stronger local currency as an inflation-fighting tool. That tends to reduce pressure on other Asian central banks (the PBOC, Bank Negara Malaysia, Bank Indonesia) to cut rates aggressively to defend growth, because their export competitiveness relative to Singapore is not being eroded. Conversely, when MAS eases by reducing the appreciation slope, it can subtly open space for other regional central banks to ease without triggering destabilising capital outflows from the region.
For EM Asia macro strategists, the MAS MPS is therefore a regional read, not just a SGD-specific event. The most useful cross-market context for each MPS release is: USD/SGD versus the JP Morgan Asian Currency Index, USD/CNH, and USD/MYR simultaneously — watching whether the SGD move is idiosyncratic or part of a broader regional repricing.