Skip to content
Simplify Quant | Making Quant Finance Easier
  • Home
  • About

Posts by Shailendra, FRM, CQF

Home » Archives for Shailendra, FRM, CQF » Page 3
About Shailendra, FRM, CQF

Exploring Greeks – Delta (Δ) with Python

Posted by By Shailendra, FRM, CQF January 6, 2024Posted inPython Code
Delta vs Stock Price import numpy as np import pandas as pd import matplotlib.pyplot as plt from scipy.stats import norm # Black-Scholes model for calculating option price and delta def…
Read More

Comprehensive Guide to Option Greeks: Insights and Applications

Posted by By Shailendra, FRM, CQF January 6, 2024Posted inOptions
In mathematical finance, the Greeks serve as essential measures denoting the sensitivities or derivatives of a derivative instrument's price—like an option—to alterations in one or more underlying parameters. These parameters…
Read More

Implied Volatility: Newton-Raphson and Bisection Method

Posted by By Shailendra, FRM, CQF January 3, 2024Posted inPython Code
Newton-Raphson Method import numpy as np import matplotlib.pyplot as plt from scipy.stats import norm import math def bsm_option_price(S, K, T, r, sigma, option_type='call'): d1 = (math.log(S / K) + (r…
Read More

Valuing Options – Black Scholes Merton

Posted by By Shailendra, FRM, CQF December 31, 2023Posted inPython Code
Generate a 3D plot import numpy as np import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D from scipy.stats import norm def black_scholes_merton(S, K, T, r, sigma, option_type): d1 = (np.log(S…
Read More

Understanding BSM Theory: Analyzing Option Prices in Financial Markets

Posted by By Shailendra, FRM, CQF December 30, 2023Posted inOptions
History The groundbreaking work of economists Fischer Black and Myron Scholes in 1968 laid the foundation for a significant breakthrough in financial economics. They introduced the concept of a dynamic…
Read More

Valuing Options – European and American using Binomial Pricing Model

Posted by By Shailendra, FRM, CQF December 25, 2023Posted inPython Code
Pricing European Put Option # Pricing European Put Option import numpy as np import matplotlib.pyplot as plt def binomial_option_pricing(S, K, T, r, sigma, n, option_type): delta_t = T / n…
Read More

Option Pay-off: Buyer and Writers

Posted by By Shailendra, FRM, CQF December 25, 2023Posted inPython Code
Payout for Option Buyers # Buyers Payout import numpy as np import matplotlib.pyplot as plt # Function to calculate call option payoff def call_payoff(sT, strike_price, premium): return np.where(sT > strike_price,…
Read More

The Binomial Option Pricing Method Simplified

Posted by By Shailendra, FRM, CQF December 25, 2023Posted inOptions
Introduction The binomial options pricing model (BOPM) provides a generalizable numerical method for the valuation of options which is based on a discrete-time framework, dividing time into a number of smaller intervals. The…
Read More

Basic Options Concepts

Posted by By Shailendra, FRM, CQF December 25, 2023Posted inOptions
Options are contractual agreements that grant the holder the right, without imposing an obligation, to buy or sell a specified amount of an underlying asset at a predetermined price before…
Read More

Data Visualization and Communication for Finance – Charts

Posted by By Shailendra, FRM, CQF December 17, 2023Posted inData Science for Financial Markets
Charts play a crucial role in financial markets and are used extensively by traders, investors, and analysts to make informed decisions. Here are some of the key reasons why charts…
Read More

Posts pagination

Previous page 1 2 3 4 5 6 Next page

Recent Posts

  • Understanding Market Regimes: A Guide to Navigating Stock Market Cycles
  • Importance of Checking for Normal Distribution in Time Series Analysis
  • Understanding Open Interest and Max Pain in Options Trading
  • Dynamic Delta Hedging vs. Static Delta Hedging
  • Trinomial Model

Recent Comments

No comments to show.

Archives

  • October 2024
  • September 2024
  • July 2024
  • June 2024
  • May 2024
  • February 2024
  • January 2024
  • December 2023
  • November 2023
  • October 2023
  • September 2023
  • August 2023

Categories

  • Data Science for Financial Markets
  • Market Risk
  • Options
  • Portfolio Construction
  • Python Code
  • Quant – General
  • Trading
Copyright 2025 — Simplify Quant | Making Quant Finance Easier. All rights reserved. Sinatra WordPress Theme
Scroll to Top