CoinCheck



Coincheck Review. Coincheck is a cryptocurrency exchange that is based in Japan, providing traders with its own in-house-developed trading platform for the exchange of multiple cryptocurrencies, such as Bitcoin, Ethereum, Ethereum Classic, Litecoin, Bitcoin Classic, and many others. Coincheck 仮想通貨取引における重要事項について.

Important notice about cryptocurrency trading

  • Virtual currency is not a national currency in or outside of Japan.
  • Virtual currency handled by the Company is a “decentralized virtual currency” that is traded and issued on the Internet, and the value of a virtual currency is not guaranteed by neither a particular nation nor other people.
  • In Virtual Currency Trading, there is a risk that customers will incur losses due to value fluctuations of the virtual currency being traded. Further, in leveraged trading and margin trading, since the transaction amount is larger than the amount of virtual currency or margin that a customer deposits with the Company, there is a risk that customers will incur losses greater than the amount of virtual currency or margin.
  • In Virtual Currency Trading, there is a possibility that customers may not be able to place trades as they intend due to the fact that the difference between sell and buy prices of virtual currency will spread and orders may be suspended temporarily in the event of sudden market fluctuations, reduced liquidity, or other such situations.
  • Processing of transactions may be delayed, or placement, execution, confirmation and cancellation of orders may be invalidated due to a failure in the transaction system required for Virtual Currency Trading or the communication lines connecting the Company and customers.
  • There is a risk that virtual currency will be lost in whole or in part due to a cyber-attack or other such causes.
  • There is a risk that the Company will not be able to continue its business if the external environment changes (including tightening of regulations for virtual currencies), the Company’s financial condition deteriorates, or any service provider falls into bankruptcy. If the Company falls into bankruptcy, the Company will not be able to return assets to customers, and there is a possibility that customers will incur losses.
  • The Company may receive fiat or cryptocurrency compensation directly or indirectly from the creators of relevant currencies or other interested parties when listing new currencies.
  • Assets deposited by customers are subject to the obligation to manage separately from the Company’s own assets, and they will be managed separately from the Company’s own money and virtual currency as follows. However, margin used on leveraged trading is not a subject to segregated management of customers assets. For more information, please refer to “11. Separation management”.
  • 1) Money:
    Customer’s trading account at Resona Bank, Ltd., SBI Sumishin Net Bank, Ltd., GMO Aozora Net Bank, Ltd., or ORIX Bank Corporation.
    2) Virtual Currency:
    Virtual currency is stored in a cold wallet disconnected from the Internet or other external networks, or in a hot wallet connected to the Internet or other external networks, in such a manner that each customer’s amount is immediately recognizable as data.
  • Transaction fees and other fees are required for Virtual Currency Trading. Please see “11. Fees, etc.” for details.
Latest version

Released:

Kingdom come deliverance wiki console commands. Coincheck API Library for Python

Project description

# Coincheck: Coincheck Api Library
coincheck は [coincheck](https://coincheck.com) の python 製 api ライブラリです.
```
> from coincheck import market
> m1 = market.Market()
> m1.ticker()
'{'last':30930,'bid':30810,'ask':30930,'high':31500,'low':30220,'volume':'560.51814602','timestamp':1428338044}'
```
## Documentation
Documentation for Coincheck API is available at https://coincheck.com/documents/exchange/api
### Order
注文が決済されたら、キャンセルできないので注意してください.
```
# 20000 jpy で 0.1 の bitcoin を購入する注文をする.
> from coincheck import order, market, account
> o1 = order.Order(secret_key=settings.secret_key, access_key=settings.access_key)
> print(o1.buy_btc_jpy(rate=20000, amount=0.1))
{'success':true,'id':1355414,'amount':'0.1','rate':'20000.0','order_type':'buy','pair':'btc_jpy','created_at':'2015-04-06T16:56:19.821Z'}
# 40000 jpy で 0.1 の bitcoin を売却する注文をする.
> from coincheck import order, market, account
> o1 = order.Order(secret_key=settings.secret_key, access_key=settings.access_key)
> print(o1.sell_btc_jpy(rate=40000,amount=0.1))
{'success':true,'id':1355421,'amount':'0.1','rate':'40000.0','order_type':'sell','pair':'btc_jpy','created_at':'2015-04-06T16:57:26.487Z'}
# 自分の注文の一覧を表示する.
> from coincheck import order, market, account
> o1 = order.Order(secret_key=settings.secret_key, access_key=settings.access_key)
> print(o1.list())
{'success':true,'orders':[{'id':676197,'order_type':'buy','rate':20000,'pair':'btc_jpy','pending_amount':'0.1','created_at':'2015-04-06T16:56:19.000Z'},{'id':676201,'order_type':'sell','rate':40000,'pair':'btc_jpy','pending_amount':'0.1','created_at':'2015-04-06T16:57:26.000Z'}]}
# 注文番号 676197 の注文をキャンセルする. (注文番号は coincheck.order.list() のid)
> from coincheck import order, market, account
> o1 = order.Order(secret_key=settings.secret_key, access_key=settings.access_key)
> print(o1.cancel('676197'))
{'success':true,'id':676197}
# 自分の取引履歴を表示する.
> from coincheck import order, market, account
> o1 = order.Order(secret_key=settings.secret_key, access_key=settings.access_key)
> print(o1.history())
{'success':true,'transactions':[{'id':21118,'created_at':'2015-04-06T16:39:10.000Z','funds':{'btc':'-0.02','jpy':'624.6'}}]}
```
### Market
coincheck の市場情報を取得します.
```
# coincheck の最新市場情報を取得する.
> from coincheck import order, market, account
> m1 = market.Market()
> print(m1.ticker())
{'last':30820,'bid':30810,'ask':30820,'high':31500,'low':30220,'volume':'559.78124602','timestamp':1428340013}
# coincheck の最新取引履歴を取得する.
> from coincheck import order, market, account
> m1 = market.Market()
> print(m1.trades())
[{'id':16143,'amount':'0.25','rate':30820,'order_type':'sell','created_at':'2015-04-06T17:02:04.000Z'},{'id':16142,'amount':'0.249','rate':30930,'order_type':'buy','created_
at':'2015-04-06T16:33:12.000Z'},{'id':16141,'amount':'0.4174','rate':30810,'order_type': ..
# coincheck の最新板情報を取得する.
> from coincheck import order, market, account
> m1 = market.Market()
> print(m1.orderbooks())
{'asks':[[31740,'2.25731223'],[31750,'0.35'],..],'bids':[[30810,'0.16228497'],[30700,'3.404'],..]}
```
### Account
ユーザのアカウント情報を取得します.
```
# アカウントの情報を表示します.
> from coincheck import order, market, account
> a1 = account.Account(secret_key=settings.secret_key, access_key=settings.access_key)
> print(a1.get_info())
{'success':true,'id':0000,'email':'kamonshohei@gmail.com','identity_status':'identity_verified','bitcoin_address':'..'}
# アカウントの残高を確認できます.
> from coincheck import order, market, account
> a1 = account.Account(secret_key=settings.secret_key, access_key=settings.access_key)
> print(a1.get_balance())
{'success':true,'jpy':'..','btc':'..','jpy_reserved':'..','btc_reserved':'..','jpy_lend_in_use':'..','btc_lend_in_use':'..','jpy_lent':'..','btc_lent':'..','jpy_debt':'..','btc_debt':'..'}
```
## Environment
- support Python 3.x,2.7)
## Installation
### git
```
git clone git@github.com:kmn/coincheck.git
```
### pip
```
pip install coincheck
```
## Initialization
set your api access-key and secret-key to 'coincheck/settings.py'
to get your api keys , see [API key](https://coincheck.com/api_settings).
## TODO
- add test case
- add offset to market.trade()
## 0.1.11 (2018-11-2)
- Security Update related to `CVE-2018-18074`
## 0.1.10 (2016-11-11)
- Fix some bugs
## 0.1.9 (2016-11-11)
- Change domain (from coincheck.jp to coincheck.com).
## 0.1.8 (2015-12-18)
- Add test code for order
- Change return type of order instance.
## 0.1.7 (2015-12-03)
- Add test codes
- Modify Nounce value from UNIX time (sec) to UNIX time (micro sec) * 1000000000
- Fix some bugs
## 0.0.1 (2015-04-06)
- Birth!

Release historyRelease notifications | RSS feed

Epson xp 225 driver for mac. 0.1.11

0.1.10

0.1.8 Naruto episodes english version.

0.1.7

0.1.6

0.1.5

0.1.4

Coinchecko

0.1.3

Download files

CoinCheckCoinCheck

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Files for coincheck, version 0.1.11
Filename, sizeFile typePython versionUpload dateHashes
Filename, size coincheck-0.1.11.tar.gz (6.3 kB) File type Source Python version None Upload dateHashes
Close

Hashes for coincheck-0.1.11.tar.gz

Coincheck

Hashes for coincheck-0.1.11.tar.gz
AlgorithmHash digest
SHA256eb5068f4a9a68ab0cf04d8542b1857bcc8f8a63a512b8ef00a0526d84724a5ad
MD53be4feaf58c20d516cef052fa54c1123
BLAKE2-256760f151322a12e67a844e83ca65217febe67405372fd2970e3dd10ac500893a7