# Option Pricing

### **How it works**

The Black-Scholes pricing method is widely used in the financial industry to determine the fair price of options. It takes into account various factors such as the current price of the underlying asset, the option's strike price, time until expiration, volatility of the underlying asset, and risk-free interest rate.

### **Key components**

$$
\boldsymbol{C(S\_0,K,r,T,\sigma) = S\_0\mathcal{N}(d\_1)-K  e^{-rT}\mathcal{N}(d\_2)}
$$

with

$$
\boldsymbol{\mathrm d\_1= \frac{1}{\sigma \sqrt{\mathrm T}} \left\[\ln{\left(\frac{S\_0}{K}\right)} + T\left(r + \frac{\sigma^2}{2} \right) \right]}
$$

$$
\boldsymbol{\mathrm d\_2=d\_1- {\sigma \sqrt{\mathrm T}}}
$$

S0 Current price of the underlying asset: This is the current market price of the asset on which the option is based.&#x20;

K Option's strike price: The strike price is the predetermined price at which the option can be exercised.&#x20;

T Time until expiration: The time remaining until the option expires plays a significant role in its pricing. The longer the time until expiration, the higher the option's price is likely to be.&#x20;

Volatility of the underlying asset: Volatility measures the degree of fluctuation in the price of the underlying asset. Higher volatility typically leads to higher option prices, as there is more uncertainty in the market.&#x20;

Risk-free interest rate: The risk-free interest rate is the return an investor can expect without taking on any risk.&#x20;

While most parameters have known values for a given option, volatility is a unique factor that represents the market's expectation of the underlying asset's future price fluctuations.

### Implied Volatility

At Polarity, the implied volatility for all strike prices and maturities is fetched from an on-chain oracle sourced from market data. This ensures that the options are priced accurately based on the market's expectations of future volatility in the underlying assets.&#x20;

By incorporating implied volatility from reliable sources, the option pricing model accurately value options, reflecting the market's sentiment and expectations.

### Fees

* Opening Fee is charged when a trader opens a position, a fee equivalent to 0.03% of the notional value of the position is charged
* Settlement Fee is charged when a trader closes a position, a fee equivalent to 0.03% of the notional value of the position is charged

The Opening Fee and Settlement Fee will be adjusted by the protocol’s decentralized governance over time.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.polarity.finance/intro/liquid-options-facility-lof/option-pricing.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
