This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
""" | |
:description: Python Class To Calculate Options IV and Greeks | |
:license: MIT. | |
:author: Shabbir Hasan | |
:created: On Thursday December 22, 2022 23:43:57 GMT+05:30 | |
""" | |
__author__ = "Shabbir Hasan aka DrJuneMoone" | |
__webpage__ = "https://github.com/ShabbirHasan1" | |
__license__ = "MIT" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
from datetime import datetime | |
import pandas as pd | |
import plotly.graph_objs as go | |
''' | |
Sample CSV File | |
Ticker,Date,Open,High,Low,Close,Volume | |
SBIN,2024-04-24,778.50,778.50,770.20,773.10,7842615 |