Code Monkey home page Code Monkey logo

go-btcturk's Introduction

go-btcturk

golang client for btcturk api

Go Report Card HitCount

This repo has been forked from vural/go-btcturk and has been improved for Btcturk's new api. So if you like this repo please give a star actual repo.

documentation

the documentation is available on godoc

install

go get -u github.com/aliereno/go-btcturk/btcturk

usage

package main

import (
	"github.com/aliereno/go-btcturk/btcturk"
	"os"
)

func main() {
    api := btcturk.NewBTCTurkClient()
    t, err := api.Ticker()
    if err != nil {
        print(err)
        os.Exit(1)
    }
    
    for _, v := range t {
        println(v.Ask)
    }

    // if you don't plan to call authenticated api methods. SetAuthKey not required.
    api.SetAuthKey("publicKey", "privateKey")
}

Examples

package main

import (
	"github.com/aliereno/go-btcturk/btcturk"
	"os"
)

func main() {
    api := btcturk.NewBTCTurkClient()

    //PUBLIC ENDPOINTS

    //TICKER
    _, _ = api.PairSymbol(btcturk.BTCTRY).Ticker()

    //ORDER BOOK
    _, _ = api.PairSymbol(btcturk.BTCTRY).Limit(10).OrderBook() // limit optional

    //TRADES
    _, _ = api.PairSymbol(btcturk.BTCTRY).Trades()


    //PRIVATE ENDPOINTS

    api.SetAuthKey("publicKey", "privateKey")

    _, _ = api.Balance()

    _, _ = api.OpenOrders()

    _, _ = api.Buy(&btcturk.OrderInput{
                    Quantity:         0.001,
                    Price:            50000,
                    StopPrice:  	  0,
                    NewOrderClientId: "Go test",
                    OrderMethod:      "limit",
                    PairSymbol:       btcturk.BTCTRY,
                })

	_, _  = api.OrderID(0000000000).CancelOrder()
}

Notes

  • you can get your private/public key peer from your account

BTCTurk API documentation

go-btcturk's People

Contributors

pooyakn avatar aliereno avatar ulascansenturk1 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.