5
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

SQ値の算出方法(日経平均株価算出方法)

Posted at

SQ値とは

【SQ】とは、【Special Quotation】の略で、日経225先物などの株価指数先物取引、または株価指数のオプション取引などを、最終的な決済期日前で決済するための「特別な価格」のことを指します。
算出された価格は特別清算指数、最終清算指数、あるいはただ単にSQ値などと呼ばれます

引用元:ライブスター証券

日経平均計算方法

日経平均は構成銘柄の株価を「みなし額面換算」したうえで合計し、「除数」で割って算出する
引用元:日経平均株価 算出要領
keisanhou.JPG

最新の除数

27.003 (2019.02.04) 引用元:日経プロファイル 指数一覧

Python で計算するコード


josuu = 27.003  # 除数 
df['minashi'] = df['open'] * (50.0 / df.gakumen)

print(f"日経平均(SQ値) = {df.minashi.sum() / josuu :0.2f} ")

df['open']
は2月1日、225社分の始値 ← 楽天RSSでの取得方法

計算結果:

日経平均(SQ値) = 20793.00 

日本証券取引所 公式発表と一致:

日経225Weeklyオプション第1週限 20,793円 00銭

5
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?