2021-01-01から1年間の記事一覧

板情報を取得し、その10%下に指値注文を入れる。

response = requests.get("https://api.bitflyer.jp/v1/ticker/") date = response.json() best_bid = date["best_bid"] best_bid09 = round(best_bid*0.9) api_key = "" api_secret = "" base_url = "https://api.bitflyer.jp" path_url = "/v1/me/sendchil…

bitfFlyerで買い注文を出す2@python

bifFlyerのAPI経由でPythonで「買い注文」を出してみよう | 文系でもわかる!BitcoinのBOT自動売買トレードの始め方 この記事の勉強メモ import hashlib import hmac import requests import datetime import json api_key = "APIキーを入力" api_secret = "…

bitfFlyerで買い注文を出す@python

bifFlyerのAPI経由でPythonで「買い注文」を出してみよう | 文系でもわかる!BitcoinのBOT自動売買トレードの始め方 この記事の勉強メモ import hashlib import hmac import requests import datetime import json api_key = "APIキーを入力" api_secret = "…

EDINET APIで株式投資① 規約を読んでみる

巷でRPAだのIoTだの言われている。 にもかかわらず投資における情報収集などの作業は未だにアナログ。特に適時開示のチェックなんて多い日には一日千件以上もあるのにいちいち全部見るとか非効率極まりない。 少しでも負担を減らせないかと考えていたところ…