import numpy as np
from numba import jit
def monteCarlo(underlying, rate, sigma, days_to_expiration, closing_days_array, trials, initial_credit,
min_profit, strikes, bsm_func):
dt = 1 / 365
sigma = sigma / 100
rate = rate / 100
counter1 = [0] * length
dtc = [0] * length
dtc_history = np.zeros((length, trials))
indices = [0] * length
for c in range(trials):
epsilon_cum = 0
t_cum = 0
for i in range(length):
indices[i] = 0
for r in range(max_closing_days + 1):
W = (dt ** (1 / 2)) * epsilon_cum
signal = (rate - 0.5 * (sigma ** 2)) * t_cum
noise = sigma * W
y = noise + signal
stock_price = underlying * np.exp(y)
debit = bsm_func(stock_price, strikes, rate, dt * (days_to_expiration - r), sigma)
profit = initial_credit - debit
sum = 0
for i in range(length):
if indices[i] == 1:
sum += 1
continue
else:
if min_profit[i] <= profit:
counter1[i] += 1
dtc[i] += r
dtc_history[i, c] = r
indices[i] = 1
sum += 1
elif r >= closing_days_array[i]:
indices[i] = 1
sum += 1
if sum == length:
break
pop_counter1 = [c / trials * 100 for c in counter1]
pop_counter1 = [round(x, 2) for x in pop_counter1]
pop_counter1_err = [2.58 * (x * (100 - x) / trials) ** (1 / 2) for x in pop_counter1]
pop_counter1_err = [round(x, 2) for x in pop_counter1_err]
avg_dtc = []
avg_dtc_error = []
for index in range(length):
if counter1[index] > 0:
avg_dtc.append(dtc[index] / counter1[index])
n_a = counter1[index]
mu_hat_a = dtc[index] / n_a
summation = 0
for value in dtc_history[index, :]:
if value == 0:
continue
summation = summation + (value - mu_hat_a) ** 2
s_a_squared = (1 / n_a) * summation
std_dev = ((n_a - 1) * s_a_squared) ** (1 / 2) / n_a
avg_dtc_error.append(2.58 * std_dev)
else:
avg_dtc.append(0)
avg_dtc_error.append(0)
avg_dtc = [round(x, 2) for x in avg_dtc]
avg_dtc_error = [round(x, 2) for x in avg_dtc_error]
return pop_counter1, pop_counter1_err, avg_dtc, avg_dtc_error
import numpy as np
from numba import jit
@jit
def monteCarlo(underlying, rate, sigma, days_to_expiration, closing_days_array, trials, initial_credit,
min_profit, strikes, bsm_func):
"""
Monte Carlo simulation for option pricing and profit calculation.
Parameters:
underlying (float): The initial stock price.
rate (float): The risk-free interest rate in percentage.
sigma (float): The volatility in percentage.
days_to_expiration (int): The number of days until the option expires.
closing_days_array (list): Array of closing days for the simulation.
trials (int): Number of simulation trials.
initial_credit (float): Initial credit received from selling the option.
min_profit (list): Minimum profit target array.
strikes (float): Strike price of the option.
bsm_func (callable): Black-Scholes-Merton function for pricing the option.
Returns:
tuple: Contains population counters, errors, average days to close, and their errors.
"""
length = len(closing_days_array)
max_closing_days = max(closing_days_array)
dt = 1 / 365
sigma /= 100
rate /= 100
counter1 = [0] * length
dtc = [0] * length
dtc_history = np.zeros((length, trials))
indices = [0] * length
for c in range(trials):
epsilon_cum = 0
t_cum = 0
for i in range(length):
indices[i] = 0
for r in range(max_closing_days + 1):
W = (dt ** 0.5) * epsilon_cum
signal = (rate - 0.5 * (sigma ** 2)) * t_cum
noise = sigma * W
y = noise + signal
stock_price = underlying * np.exp(y)
debit = bsm_func(stock_price, strikes, rate, dt * (days_to_expiration - r), sigma)
profit = initial_credit - debit
for i in range(length):
if indices[i] == 0 and profit >= min_profit[i] and r == closing_days_array[i]:
indices[i] = 1
counter1[i] += 1
dtc[i] += r
dtc_history[i, c] = r
pop_counter1 = [c / trials * 100 for c in counter1]
pop_counter1 = [round(x, 2) for x in pop_counter1]
pop_counter1_err = [2.58 * ((x * (100 - x) / trials) ** 0.5) for x in pop_counter1]
pop_counter1_err = [round(x, 2) for x in pop_counter1_err]
avg_dtc = []
avg_dtc_error = []
for index in range(length):
if counter1[index] > 0:
avg_dtc.append(dtc[index] / counter1[index])
n_a = counter1[index]
mu_hat_a = dtc[index] / n_a
summation = np.sum((dtc_history[index, :n_a] - mu_hat_a) ** 2)
s_a_squared = (1 / n_a) * summation
std_dev = ((n_a - 1) * s_a_squared) ** 0.5 / n_a
avg_dtc_error.append(2.58 * std_dev)
else:
avg_dtc.append(0)
avg_dtc_error.append(0)
avg_dtc = [round(x, 2) for x in avg_dtc]
avg_dtc_error = [round(x, 2) for x in avg_dtc_error]
return pop_counter1, pop_counter1_err, avg_dtc, avg_dtc_error
PROS | CONS |
Flexibility: Monte Carlo simulation allows for the incorporation of various complex factors and variables, making it suitable for modeling diverse financial scenarios. | Computational Intensity: Running numerous simulations can be computationally intensive and time-consuming, which can lead to high computational costs and long processing times. |
Accuracy: With a large number of simulations, Monte Carlo methods can provide highly accurate estimates for the pricing of options and other derivatives while capturing a wide range of potential outcomes. | Complexity: It can be challenging to set up and validate the model correctly, leading to potential errors if not done properly. |
Risk Assessment: By generating various scenarios, the Monte Carlo Simulation model helps in assessing the risk associated with different investment strategies or financial decisions. | Assumptions Dependency : The accuracy of Monte Carlo simulations heavily depends on the assumptions made regarding the underlying stochastic process, such as the distribution of stock prices and the constancy of drift and volatility. |
Incorporation of Drift and Volatility: The model incorporates drift (risk-free rate) and volatility, which are essential factors in option pricing, thus providing more realistic results compared to deterministic models. |
ITM VS OTM OPTIONS
The concept of an option being in-the-money (ITM) or out-of-the-money (OTM) depends... Read More
OPTIONS PROBABILITY CALCULATOR
This calculator specializes in determining the Probability of Profit (POP) for options trading strategies... Read More