auカブコム証券APIとPythonでトレードアプリ開発。
初心者向けにアプリ開発方法を解説します。 第2回リアルタイム情報取得と発注編。
第1回の動画で宿題になっていた、為替情報のリアルタイム取得方法も解説しています。
第2回auカブコム証券APIとPythonでトレードアプリ開発。初心者向けにアプリ開発方法を解説します。[リアルタイム情報取得と発注編]
【目次】
00:29 動画のコンセプト
01:05 前回の動画のおさらい
01:53 auカブコム証券開発者ブログ紹介 サンプルコード解説
03:00 開発者ブログ サンプルコード解説
07:34 開発者ブログ サンプルコードをアプリに組み込む
17:33 リアルタイム為替情報の取得
29:56 セレクトボックス USD/JPY以外の通貨ペアの価格情報取得
32:07 発注機能を追加
45:44 次の動画に向けて
※投資は自己判断でお願いします。
解説
動画で解説したPythonコード
動画で解説したPythonコードはこちらです。
「新しく覚えることを最小にして、動くものを作る」これを最優先としています。
初心者が理解しやすいように、コード記述の美しさや、推奨されている記述ルールよりも、単純であることを優先しました。
このブログ記事はシリーズ化して続ける予定です。
次回からは、後から読み返しても理解しやすいコードの記述方法についても、触れてゆきたいと思っています。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 |
import streamlit as st import urllib.request import json import pprint ##追記 import settings APIPassword = settings.APIPassword Password = settings.Password ##追記ここまで st.title('初めてのトレーディングアプリ作成') st.write('「個人投資家に、デジタルの武器を」') # '文字列' # # df = pd.DataFrame({ # 'first column': [1, 2, 3, 4], # 'second column': [40, 30, 20, 10]}) # #st.write(df) # st.dataframe(df, width=600, height= 100) # # st.dataframe(df, 800, 600) # # st.dataframe(df.style.highlight_max(axis=0)) '◇為替情報取得◇' st.write('取得する通貨ペアを入力してください。') """ <入力例> usdjpy、eurjpy、gbpjpy、audjpy、chfjpy、cadjpy、nzdjpy、zarjpy、eurusd、gbpusd、audusd """ text = st.text_input('通貨ペアを入力') '入力された通貨ペア:',text if st.button('ボタンを押すと為替情報を取得します。'): # トークン発行 obj = {'APIPassword': APIPassword} json_data = json.dumps(obj).encode('utf8') url = 'http://localhost:18080/kabusapi/token' req = urllib.request.Request(url, json_data, method='POST') req.add_header('Content-Type', 'application/json') try: with urllib.request.urlopen(req) as res: content = json.loads(res.read()) token_value = content.get('Token') pprint.pprint(token_value) except urllib.error.HTTPError as e: print(e) content = json.loads(e.read()) pprint.pprint(content) # トークン発行 # 為替情報取得 url = 'http://localhost:18080/kabusapi/exchange/' + text #url = 'http://localhost:18080/kabusapi/exchange/usdjpy' # いずれの通貨ペアを指定してください:usdjpy、eurjpy、gbpjpy、audjpy、chfjpy、cadjpy、nzdjpy、zarjpy、eurusd、gbpusd、audusd req = urllib.request.Request(url, method='GET') req.add_header('Content-Type', 'application/json') req.add_header('X-API-KEY', token_value) try: with urllib.request.urlopen(req) as res: print(res.status, res.reason) for header in res.getheaders(): print(header) print() content = json.loads(res.read()) pprint.pprint(content) getusdjpytime = content.get('Time') # 追記 getBidPrice = content.get('BidPrice') # 追記 getAskPrice = content.get('AskPrice') # 追記 print('getusdjpytime', getusdjpytime) # 追記 print('BidPrice', getBidPrice) # 追記 print('getAskPrice:', getAskPrice) # 追記 st.write('gettime', getusdjpytime) st.write('BidPrice:', getBidPrice) st.write('AskPrice:',getAskPrice) except urllib.error.HTTPError as e: print(e) content = json.loads(e.read()) pprint.pprint(content) except Exception as e: print(e) # 為替情報取得 else: st.write('ここにUSD・JPY価格が表示されます。') '◇銘柄情報取得◇' if st.button('ボタンを押すと銘柄情報を取得します。'): #st.write('ボタンが押されました。') import urllib.request import json import pprint #https://engineering.kabu.com/entry/2021/04/01/193049 ##追記 import settings APIPassword = settings.APIPassword ##追記ここまで # トークン発行 obj = { 'APIPassword': APIPassword } json_data = json.dumps(obj).encode('utf8') url = 'http://localhost:18080/kabusapi/token' req = urllib.request.Request(url, json_data, method='POST') req.add_header('Content-Type', 'application/json') try: with urllib.request.urlopen(req) as res: content = json.loads(res.read()) token_value = content.get('Token') pprint.pprint(token_value) except urllib.error.HTTPError as e: print(e) content = json.loads(e.read()) pprint.pprint(content) # トークン発行 # 銘柄情報取得 url_symbol = 'http://localhost:18080/kabusapi/symbol/1450@1' req_symbol = urllib.request.Request(url_symbol, method='GET') req_symbol.add_header('X-API-KEY', token_value) try: with urllib.request.urlopen(req_symbol) as res_symbol: content_symbol = json.loads(res_symbol.read()) symbol_value = content_symbol.get('Symbol') symbolName_value = content_symbol.get('SymbolName') st.write('Symbol:', symbol_value) st.write('symbolName_value:', symbolName_value) pprint.pprint(content_symbol) except urllib.error.HTTPError as e_symbol: print(e_symbol) content_symbol = json.loads(e_symbol.read()) pprint.pprint(content_symbol) # 銘柄情報取得 else: st.write('ここに銘柄情報が表示されます。') # '◇発注◇' # if st.button('ボタンを押すと発注します。'): # #st.write('ボタンが押されました。') # # import urllib.request # import json # import pprint # # #https://engineering.kabu.com/entry/2021/04/01/193049 # # ##追記 # import settings # APIPassword = settings.APIPassword # ##追記ここまで # # # トークン発行 # obj = { 'APIPassword': XXXXXXXXXAPIPassword } # json_data = json.dumps(obj).encode('utf8') # # url = 'http://localhost:18080/kabusapi/token' # req = urllib.request.Request(url, json_data, method='POST') # req.add_header('Content-Type', 'application/json') # # try: # with urllib.request.urlopen(req) as res: # content = json.loads(res.read()) # token_value = content.get('Token') # pprint.pprint(token_value) # except urllib.error.HTTPError as e: # print(e) # content = json.loads(e.read()) # pprint.pprint(content) # # トークン発行 # # #発注 # import urllib.request # import json # import pprint # # obj = {'Password': Password, # 'Symbol': '1320', # 'Exchange': 1, # 'SecurityType': 1, # 'FrontOrderType': 20, # 'Side': '2', # 'CashMargin': 1, # 'DelivType': 2, # 'FundType': 'AA', # 'AccountType': 2, # 'Qty': 1, # 'Price': 29870.0, # 'ExpireDay': 20210506} # json_data = json.dumps(obj).encode('utf-8') # # url = 'http://localhost:18080/kabusapi/sendorder' # req = urllib.request.Request(url, json_data, method='POST') # req.add_header('Content-Type', 'application/json') # req.add_header('X-API-KEY', token_value) # # try: # with urllib.request.urlopen(req) as res: # print(res.status, res.reason) # for header in res.getheaders(): # print(header) # print() # content = json.loads(res.read()) # pprint.pprint(content) # except urllib.error.HTTPError as e: # print(e) # content = json.loads(e.read()) # pprint.pprint(content) # except Exception as e: # print(e) # # 発注 # # else: # st.write('ここに銘柄情報が表示されます。') |
この記事を書いた人
あしおゆたか
投資歴21年の個人投資家
机上の理論ではなく、実体験に基づいた記事作りをモットーにしています。
スポーツクラブに毎週2日~3日通い、サウナ後の暴飲暴食が趣味。(現在自粛中)
◇主な投資対象
日本株式
株式ETF(上場投資信託)
日経225先物
日経225先物オプション
◇運営者情報はこちら