Skip to content

Installation Guide

allazemchenkova edited this page Jun 30, 2021 · 3 revisions

Requirements

Downloading

Linux/OSX

GoCryptoTrader is built using Go Modules and requires Go 1.11 or above Using Go Modules you now clone this repository outside your GOPATH

git clone https://github.com/thrasher-/gocryptotrader.git
cd gocryptotrader
go build
mkdir ~/.gocryptotrader
cp config_example.json ~/.gocryptotrader/config.json

Windows

git clone https://github.com/thrasher-/gocryptotrader.git
cd gocryptotrader
go build
copy config_example.json %APPDATA%\GoCryptoTrader\config.json
  • Make any neccessary changes to the config.json file.
  • Run the gocryptotrader binary file inside your GOPATH bin folder.

Installing

Running go install or go build from the directory will output an executable gocryptotrader file.

First Run

You will be prompted whether you want to encrypt your config: You will be prompted how you want to handle time sync issues: After that, the application will run and you will receive exchange data output: Done!

Clone this wiki locally