gpt4 book ai didi

python - 如何使用 yahoo_fin 获取单个期权合约的数据

转载 作者:行者123 更新时间:2023-12-05 05:52:05 24 4
gpt4 key购买 nike

我正在尝试使用 yahoo_fin 查找期权组合的增量,我有计算增量的代码,但它目前获取的是期权数据链,而不是投资组合中每个单独期权的数据。有没有一种方法可以一次获取一个特定选项的数据?在我的代码中,我获得了特定到期日的特定股票的期权,有没有办法也使用行使价?

这是我当前的代码:

from yahoo_fin import options
from yahoo_fin import stock_info as si
import numpy as np
from scipy.stats import norm
import pandas as pd
from datetime import *

stock = input("Enter stock symbol: Ex:QQQ ")
Day = int(input("Enter option expiration day: Ex:8 "))
month = int(input("Enter option expiration month: Ex:11 "))
year = int(input("Enter option expiration year: Ex:2021 "))
today = date.today()
future = date(year,month,Day)
expiry = future
str(future - today)
pd.set_option("display.max_rows", None, "display.max_columns", None)
options.get_options_chain(stock)
chain = options.get_options_chain(stock,expiry)

r = .025
S = si.get_live_price(stock)
K = chain["calls"].Strike
t = float((future - today).days)
T = t/365
s = chain["calls"]['Implied Volatility']
sigma = chain["calls"]["Implied Volatility"].apply(lambda x: float(x[:-1]) / 100)

def delta_calc(r, S, K, T, sigma):
d1 = (np.log(S/K)+(r+sigma**2/2)*T)/(sigma*np.sqrt(T))
delta_calc = norm.cdf(d1, 0, 1)
return delta_calc

print("Option Delta is: ", (delta_calc(r, S, K, T, sigma)))

最佳答案

http://theautomatic.net/2019/04/17/how-to-get-options-data-with-python/

我认为这可能有所帮助。

“要获取特定到期日期的数据,我们可以将需要的任何日期传递给 get_options_chain 方法。支持多种日期格式。”它还显示罢工

关于python - 如何使用 yahoo_fin 获取单个期权合约的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70283194/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com