thrasher-corp / gocryptotrader

A cryptocurrency trading bot and framework supporting multiple exchanges written in Golang.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bug in Syncmanger does not allow for tickersync only.

spreeker opened this issue · comments

tickersync error.

Context

./gocryptotrader -tickersync=true -orderbooksync=**false** -tradesync=**false**

is synching NOTHING the tickersync is not working. The tickersync does not work standalone due to an indentation error.

I found the the BUG is an indentation error.

And peope are already working on this part of the codebase. #1033

#1033

./gocryptotrader -tickersync=**true** -orderbooksync=**true** -tradesync=**false**

Does work.

  • Operating System: Linux.

GoCryptoTrader v0.1 amd64 go1.19.6 pre-release.

Expected Behavior

I expected the ticker-sync to be running and picking up ticker information for the enabled pairs.

Current Behavior

It does not sync anything.

Failure Information (for bugs)

Please help by providing information about the failure. If it is not a bug, please remove the rest of this template.

Steps to Reproduce

Please provide detailed steps for reproducing the issue.

  1. step 1 ./gocryptotrader -tickersync=true -orderbooksync=false -tradesync=false^
  2. step 2 DONE nothing happens.
  3. step 3...

Failure Logs

found the the BUG is an indentation error.

And peope are already working on this part of the codebase. #1033