🐋
Moby
  • Let’s Get Started
    • 🐋 About Moby
    • ⚡ Our Vision
    • 🤓 Your Guidebook
      • Get Setup
        • Connect Wallet
        • Trade Options
        • 0DTE Options
        • Provide Liquidity
      • Fees & Instruments
        • Fee Generation
        • Fee Distribution
        • Instruments
      • Testnet
  • How it’s Built
    • 🚀 Synchronized Liquidity Engine (SLE)
    • 🧮 Options Pricing Model
      • Mark Price
        • Futures Index
        • Implied Volatility
      • Risk Premium
        • Deriving Greeks
        • Risk Premium Calculation
        • Risk Managing Mechanism
    • 🤖 Architecture
      • Liquidity Provision Mechanism
      • Options Listing Standard
      • How to Open / Close / Settle Position
      • Synchronized Liquidity Engine (SLE)
      • Options Position Tokens
      • Tools to Maximize Capital Efficiency
    • ⚙️ Key Features
      • High Leverage & Limited Risk with No Liquidation
      • Narrow Spread with Dynamic Risk Premium
      • Guaranteed Settlement
      • Capital Efficiency Improvements with Combo Options
      • Even Higher Capital Efficiency with Clearing House
      • Abundant Liquidity for All Options
      • Composable Options for Structured Products
      • High Profitability for LPs
      • Real-Time Automatically Hedged OLP
      • Upcoming Features
    • ⛓ DeFi Options Vault
      • 🐻 Berachain DeFi Options Vault
        • 🔒 Architecture
        • 📈 Options Strategy
  • How it’s Driven
    • 🛡️ Building the Safest DeFi Protocol
      • Safety Features
      • Smart Contract Audit & Real-Time Security Monitoring
    • 🏛 Backed by Decentralized Governance
      • Governance
    • 🌐 Led by the Best Partners & Community
      • Arbitrum X Moby
      • Engagement Programs
  • Need More Info?
    • 📚 Resource Library
      • Developer Resources & Educational Contents
      • Terms & Conditions
      • Glossary
      • FAQ
  • Developers
    • Moby Traders API
      • REST API
        • General
        • Account
        • Market
    • Trade Scripts
      • Prerequisites
      • Open Positions
      • Close Positions
    • Interfaces & ABI
      • PositionManager.sol
      • SettleManager.sol
      • RewardRouterV2.sol
      • OptionsMarket.sol
    • Appendix 1: Parameters for Open/Close Options
    • Appendix 2: the Diff between optionId and optionTokenId
    • Appendix 3: Sample Moby Contract Module for Developers
Powered by GitBook
On this page
  • Source of Main Data
  • Process
  1. How it’s Built
  2. 🧮 Options Pricing Model
  3. Mark Price

Implied Volatility

PreviousFutures IndexNextRisk Premium

Last updated 1 year ago

Moby operates two indicators, main and sub, to obtain the implied volatility used in various calculations along with the futures prices.

The main indicator periodically processes the current IV values collected from major CEXs and stores them internally. It only utilizes values received within 5 seconds of requesting IVs from CEXs for whitelisted options in Moby.

Sub indicator is managed for the purpose of utilizing historical data by storing IV values received from CEX in the internal database.

Source of Main Data

  • Main data derived from CEXs and Block Scholes Composite IV

Process

  • Use median IV from CEXs as Moby’s internal Adj. Median as IV Index reference

Adj. Median=sumproduct(Range Adjusted IV,Weight By Sources)\text{Adj. Median} = \text{sumproduct}(\text{Range Adjusted IV}, \text{Weight By Sources}) Adj. Median=sumproduct(Range Adjusted IV,Weight By Sources)
where, Range Adjusted IV=min⁡[max⁡(0.98×Median IV,Mark IV),1.02×Median IV]\text{where, } \text{Range Adjusted IV} = \min[\max(0.98 \times \text{Median IV}, \text{Mark IV}), 1.02 \times \text{Median IV}] where, Range Adjusted IV=min[max(0.98×Median IV,Mark IV),1.02×Median IV]

"Median" - Median value of Mark IV, after eliminating highest / lowest Mark IV from main sources.

BlockScholes API DocsBlockScholes API
Logo