Search content
Sort by

Showing 7 of 7 results by dustcoins23
Post
Topic
Board Exchanges
Re: GDAX withdrawal
by
dustcoins23
on 29/12/2017, 22:01:11 UTC
Hi Guys.

Are any or all of you NOT using google authenticator app on your phone? Trying to figure out if that's a common theme in this thread. I am having the same problem with no google authenticator app. Trying to see if installing it fixes it.
Post
Topic
Board Off-topic
Re: Kraken autowithdraw script in Python
by
dustcoins23
on 02/08/2017, 02:54:21 UTC
One last question: is there a way to get your USD avail balance?

I have a script running that keeps trying to buy when I have no USD avail bal and I want to put a condition if USDAvail > 0: buy.
Any thoughts?
Post
Topic
Board Off-topic
Re: Kraken autowithdraw script in Python
by
dustcoins23
on 01/08/2017, 18:14:49 UTC
Hey, thanks for posting this by the way.
Was wondering how you figured out the amount available in account balances using kraken's api 'Balance'.

From what I see - he did not. Only way to get true available balance - use 'balance' endpoint and subtract volume of open orders.


I had a heck of a time trying to get volume of all open orders using a for loop so i gave up but now that i've found method, 'WithdrawInfo' we're all good. Smiley
Post
Topic
Board Off-topic
Re: Kraken autowithdraw script in Python
by
dustcoins23
on 01/08/2017, 18:08:48 UTC
There's an api call called 'WithdrawInfo' and he used it.

then he used available = float(withdrawinfo['limit'])

I'm such an idiot!
I've been on kraken's API page for days looking for just that! And I didn't see it, I was looking for 'balances on hold' or something dumb. Thanks for your reply.
Post
Topic
Board Off-topic
Re: Kraken autowithdraw script in Python
by
dustcoins23
on 01/08/2017, 17:46:26 UTC
Hey, thanks for posting this by the way.
Was wondering how you figured out the amount available in account balances using kraken's api 'Balance'.
Post
Topic
Board Speculation
Re: Taking a loan to buy bitcoin
by
dustcoins23
on 21/07/2017, 21:00:12 UTC
Wondering wopwop.. Did you take the loan?  Wink
Post
Topic
Board Announcements (Altcoins)
Re: [ANN] SLING | LAUNCH | SHA 256 | PoW PHASE STARTING NOW | POS Masternodes | ANON
by
dustcoins23
on 25/06/2017, 18:33:52 UTC
Thanks! it worked.
Devs should fix the repository...


Getting errors trying to compile the daemon on linux.
I'm using GCC 4.9.2, boost 1.55, and tried with both libdb(++) 5.1 and 5.3.

Quote
/bin/sh ../share/genbuild.sh obj/build.h
g++ -c -O2  -pthread -Wall -Wextra -Wno-ignored-qualifiers -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -DUSE_SECP256K1 -I/home/user/1/sling/src -I/home/user/1/sling/src/obj -DENABLE_WALLET -I/home/user/1/sling/src/leveldb/include -I/home/user/1/sling/src/leveldb/helpers -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/crypto/hmac_sha256.d -o obj/crypto/hmac_sha256.o crypto/hmac_sha256.cpp
crypto/hmac_sha256.cpp:34:1: fatal error: opening dependency file obj/crypto/hmac_sha256.d: No such file or directory
 }
 ^
compilation terminated.
makefile.unix:201: recipe for target 'obj/crypto/hmac_sha256.o' failed
make: *** [obj/crypto/hmac_sha256.o] Error 1


Can anyone help?
Code:
git clone https://bitbucket.org/slingrepo/sling
cd sling
cd secp256k1
./autogen.sh
./configure
make
make install
cp /usr/local/lib/libsecp256k1.* /usr/lib
cd ..
cd src
mkdir obj
cp crypto obj/crypto -rR
make -f makefile.unix
sudo cp slingd /usr/bin
cd ../..

when hitting make -f makefile.unix i get following error why is this?


xx@xx:~/sling/src# make -f makefile.unix
g++ -c -O2  -pthread -Wall -Wextra -Wno-ignored-qualifiers -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -DUSE_SECP256K1 -I/root/sling/src -I/root/sling/src/obj -DUSE_UPNP=0 -DENABLE_WALLET -I/root/sling/src/leveldb/include -I/root/sling/src/leveldb/helpers -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/alert.d -o obj/alert.o alert.cpp
In file included from alert.h:9:0,
                 from alert.cpp:5:
serialize.h:19:48: fatal error: boost/type_traits/is_fundamental.hpp: No such file or directory
 #include
                                                ^
compilation terminated.
makefile.unix:201: recipe for target 'obj/alert.o' failed
make: *** [obj/alert.o] Error 1

DId you ever get by this error?