Direct answer: what pip value means for GBP/CHF
Pip value is the estimated change in account money caused by a one-pip move in the quoted exchange rate for a currency pair.
For GBP/CHF, you start from three inputs:
- the trade size (commonly expressed as lots),
- the pip size for the quote format,
- the relationship needed to express the pip’s monetary impact in your account currency.
Mechanics: the core model (definitions and assumptions)
Define the terms
- Pip: the smallest “standard” price step used to measure moves in a currency pair quote.
- Pip size: the numeric value of one pip in the quoted price. For many 4-decimal FX quotes, that is 0.0001.
- Lot size: a standardized trade size. A standard lot is typically 100,000 units of the base currency (GBP in GBP/CHF), though brokers may expose different contract sizes.
- Pip value: money change for a 1-pip move.
Compute pip value when your account currency matches one side
For GBP/CHF, the pair is quoted as GBP/CHF (GBP as base, CHF as quote). Under a simple, commonly used assumption for FX contracts:
- If you trade 1 standard lot (100,000 GBP), the notional in GBP is 100,000.
- A move of one pip changes the quote price by pip_size.
For a 4-decimal style quote, set:
pip_size = 0.0001
A standard approximation is:
- Pip value in CHF (quote currency):
pip_value_CHF = contract_units_GBP × pip_size
So with standard lot size:
pip_value_CHF = 100,000 × 0.0001 = 10 CHF per pipThis result relies on the contract being sized as 100,000 GBP and on pip_size being 0.0001 for your displayed quote format.
Convert pip value into other account currencies
If your account currency is not CHF, you convert the pip value from CHF into your account currency using an additional exchange rate (you need the rate that links CHF to your account currency at the time you perform the calculation).
Generic conversion logic:
- If
pip_value_CHFis known and you needpip_value_account, use either:pip_value_account = pip_value_CHF × (CHF_to_account_rate)if your conversion quote expresses “account per CHF”, orpip_value_account = pip_value_CHF ÷ (account_to_CHF_rate)if your conversion quote expresses “CHF per account”.
Because the exact direction depends on how the conversion pair is quoted in your platform, the key is: use a rate that correctly converts CHF into your account currency.
Evidence or example: walk through one consistent scenario
Assume:
- You trade 1 standard lot of GBP/CHF.
- Your platform uses 4-decimal pip sizing, so
pip_size = 0.0001. - Your account currency is CHF.
Steps:
- Compute pip value in CHF:
pip_value_CHF = 100,000 × 0.0001 = 10 CHF.
- A one-pip move in GBP/CHF then corresponds to about 10 CHF change in the position’s value, before spreads, commissions, and any broker-specific margin or contract mechanics.
Now change only one assumption:
- Your account currency is USD.
You would first compute pip_value_CHF = 10 CHF as above, then convert CHF to USD using the applicable conversion rate for CHF↔USD:
pip_value_USD = 10 × (CHF_to_USD_rate)orpip_value_USD = 10 ÷ (USD_to_CHF_rate), depending on which quotation direction you use.
Limitations and failure modes (important)
- Quote format may not be 0.0001: Some venues or instruments show different decimal places or define pip differently. If your pip_size differs, the pip value changes proportionally.
- Contract size may differ from 100,000: Many FX calculators assume a standard lot equals 100,000 units of the base currency, but some products use different contract specifications. Use the contract units shown by your platform.
- Conversion can introduce variable results: When your account currency is not CHF, the conversion rate changes with market conditions. Pip value in account currency can therefore vary even if the pip move is defined the same way.
- Costs are not included: Real realized P&L is affected by spreads, commissions, swaps/financing, and execution. Pip value is a measurement of rate movement’s impact, not a guarantee of profit.
- Calculator direction mistakes: A common error is converting using the wrong rate direction (multiplying when you should divide). Always check whether the used quote converts CHF to your account currency in the correct direction.