Bitcoin Forum

Alternate cryptocurrencies => Service Discussion (Altcoins) => Topic started by: Bykiss on July 24, 2017, 10:20:30 AM



Title: Yobit Api Trade using Node Js
Post by: Bykiss on July 24, 2017, 10:20:30 AM
Hi,

I am trying to build my own script for yobit using node.js with npm yobit 0.01

I am always having "invalid sign" error

using below

 privateClient.addTrade(function(err,data){
  console.log(data)
   return true}, {symbol : 'ltc_btc', type : 'buy', amount : 0.0001, price : 0.1}

did anyone succeed to place an order using this yobit wrapper

https://github.com/kwiksand/yobit


Title: Re: Yobit Api Trade using Node Js
Post by: Red-Apple on July 24, 2017, 01:10:31 PM
did you see the other open issue on the repository, that may be the problem you have: https://github.com/kwiksand/yobit/issues/1
it says you should use an uppercase Trade instead of trade in the url.


Title: Re: Yobit Api Trade using Node Js
Post by: Bykiss on July 24, 2017, 02:07:22 PM
Yes I did
but this issue is after correcting lowercase