Platform Platform overview Modules Solutions Industries Commodities Roles Quant More Pricing Customers Knowledge Center Blog Company Request Demo
Knowledge Center · Learn

Real-time valuation & mark-to-market

Mark-to-market is how a desk knows what its positions are worth right now. This guide explains what MtM is, why real-time beats overnight batch, and how valuation ties into P&L and risk.

8 min read · Updated 2026 · ETRM glossary

What mark-to-market means

Mark-to-market (MtM) is the practice of valuing open positions at current market prices, rather than at the price they were traded. The change in MtM is unrealized profit or loss.

The idea is simple but essential: a position’s worth is what the market says today, not what you paid. MtM revalues the book continuously as prices move:

Live positionMarket data(curves, vols)Pricing modelMark-to-marketvalueGreeks(sensitivities)unrealized P&L
Mark-to-market re-prices the live position against current market data through the pricing model, producing the value and the Greeks. The change in value is the unrealized P&L the desk watches through the day.

Real-time versus overnight batch

Legacy systems mark the book overnight, so the desk begins each day looking at yesterday’s valuation. In volatile markets that lag is dangerous, a position can move materially before anyone sees it.

Real-time valuation revalues positions as live prices and forward curves update, so P&L reflects the current market. The Valuation module is built for this: continuous mark-to-market rather than a nightly job.

What you need to value a position

Marking a commodity position to market requires three things working together:

  • The position, the current, validated book from trade capture.
  • Market data, spot prices, forward curves, and for options, volatility.
  • A valuation model, straightforward for linear instruments, model-based (e.g. Black-76) for options.

When these read from one governed model, valuation, risk, and reporting all agree.

For a linear position the value is just quantity times the difference between the forward price and the traded price, discounted. For an option, a model such as Black-76 prices it from the forward, strike, volatility, and time to expiry:

$$ C = e^{-rT}\left[\,F\,N(d_1) - K\,N(d_2)\,\right], \quad d_{1,2} = \frac{\ln(F/K) \pm \tfrac{1}{2}\sigma^2 T}{\sigma\sqrt{T}} $$ Black-76: a call on a forward F struck at K, volatility sigma, expiry T
pythonimport math
from statistics import NormalDist
N = NormalDist().cdf

def black76_call(F, K, sigma, T, r):
    """Value of a European call on a forward F (Black-76)."""
    d1 = (math.log(F / K) + 0.5 * sigma**2 * T) / (sigma * math.sqrt(T))
    d2 = d1 - sigma * math.sqrt(T)
    return math.exp(-r * T) * (F * N(d1) - K * N(d2))

# Linear position: value is just discounted quantity x (forward - traded)
def linear_value(qty, forward, traded, r, T):
    return qty * (forward - traded) * math.exp(-r * T)

Inception P&L and P&L explained

Two valuation concepts matter for understanding daily P&L. Inception (day-1) P&L is the value captured at the moment of trade if it is struck away from mid-market. P&L explained (P&L attribution) decomposes the change in value into its drivers, price moves, curve shifts, time decay, FX, and new trades, so the desk can see why P&L changed, not just that it did.

Both are materialized as dedicated P&L marts so finance and the front office read the same attribution.

Frequently asked questions

What is mark-to-market?

Mark-to-market values open positions at current market prices rather than their traded price. The change in that value is unrealized profit or loss.

Why is real-time valuation better than overnight batch?

Because markets move during the day. Overnight batch means the desk manages yesterday’s valuation; real-time means P&L and risk reflect the current market.

What is P&L explained?

P&L explained (attribution) breaks the change in a position’s value into its causes, price, curve, time, FX, and new trades, so you understand why P&L moved.

What is inception P&L?

Inception or day-1 P&L is the value recognized at trade time when a deal is struck away from mid-market. It is tracked separately from subsequent mark-to-market changes.

Keep exploring

See it on your own trades

The fastest way to understand this in practice is a working walkthrough mapped to your desk.

Request a demo Platform overview