2021-10-14から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 = "…