Home / Glossary / Normal Distribution
StatisticsNormal Distribution
Bell-shaped probability distribution defined by mean and std dev.
Financial returns are often modelled as normally distributed (though in reality they have fat tails). The normal distribution underlies Black-Scholes option pricing and many risk models.
Example
import numpy as np np.random.normal(loc=0.001, scale=0.015, size=252)