Categorygithub.com/automaticcointrader/act
repositorypackage
0.0.0-20190927172458-dd39ae99678c
Repository: https://github.com/automaticcointrader/act.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# README

ACT

概要

仮想通貨のトレード用に開発しているトレードボットです。 アルゴリズムと取引所を簡単に追加できるように作っています。

サポート環境

  • Linux
  • MacOS
  • Windows (pluginが使えないので非推奨)

goのバージョン

  • 1.9.2以降

機能

  • 取引所内の取引、取引所を跨いだ取引に対応
  • アルゴリズムによるトレード
    • ビルトインアルゴリズム (未実装)
    • アルゴリズムは独自に追加可能
  • webuiからのマニュアルによるトレード (未実装)
  • アラート通知機能

アルゴリズム

  • example
    • 動作確認用サンプル実装。実際のトレードに使うことはできません。
  • lazydog
    • Stochastic RSI と DMI を併用したアルゴリズムのトレードボッド。(予定)

取引所対応状況

  • bitbank (*)
  • bitFlyer (*)
  • BITPoint
  • coincheck
  • DMMBitcoin
  • GMOCoin
  • QUOINEX (*)
  • Zaif (*)

ビルド方法

go build

設定例

  • 設定はyaml,toml,jsonいずれかで記述する
  • config/act.yaml
robot:
  algorithmPluginDir: "plugin"
exchanges:
  zaif:
    key: "key"
    secret: "secret"
    currencyPairs:
     - btc_jpy
    retry: 0
    timeout: 0
    readBufSize: 0
    writeBufSize: 0
server:
  debug: true
  addrPort: 127.0.0.1:38080
notifier:
  mail:
    hostPort: "smtp.gmail.com:465"
    username: "username"
    password: "password"
    authType: "plain"
    useTls: true
    useStartTls: "false"
    from: "[email protected]"
    to: "[email protected]"
  ifttt:
    key: "webhook-key"

起動

act -confdir ./config

停止

pkill act

その他