Username: Password:

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - AlfonseX

Pages: 1 2 [3] 4 5
41
Technical Support & Development / Re: Getting double buys on bittrex
« on: June 16, 2017, 01:26:30 PM »
Keep getting double buys on bittrex. Very annoying. Any fix?

What is anoying, if GB sell the both?

42
Technical Support & Development / Re: License Issue
« on: June 16, 2017, 01:25:28 PM »
After created a new API Key PM Gunthar, give him your actual API Key (the one was work before), and ask him to enable the new one.

43
Since you move to lending, take advantage of it to try https://github.com/BitBotFactory/poloniexlendingbot, it's a cool bot.
There is no small profit ;)

44
Quote
Thanks for the reply.

You're welcome. And welcome among us.

45
Technical Support & Development / Re: Log blank
« on: June 15, 2017, 11:40:21 AM »
Please report all bugs/issues to: https://gunthy.org/index.php?topic=353.msg1725#msg1725
Thanks.

46
You can dowload GB at: https://github.com/GuntharDeNiro/BTCT/releases/
but you may contact Gunthar, I think you can PM him, for register your API Key(s). Or use bitify if you want.
There are three marketplaces (Poloniex, Kraken and Bittrex) with which GB works. So choose an exchange and create an API Key (enable trading but no withdrawall it's important) and send it to Gunthar (not the Secret Key). Each market cost 0.1btc, include life updates, and you can trade all the pair your PC/server can. The limit is your RAM. GB works fine on Linux.

Hope that help you, and sorry for my bad english ;)

47
Quote
Is a 30 second day long enough to avoid errors?

What error are you talking about?

Be carefull, I made a mistake, replace:
Code: [Select]
tmux -2 new-session_name -d -s $session_name -n $pair "$gun_command $pair $market"with:
Code: [Select]
tmux -2 new-session -d -s $session_name -n $pair "$gun_command $pair $market"

48
Quote
why is it only happening AFTER people upgrade to 3.3?

Coincidence?

Quote
Any idea if Bittrex or Kraken is any more stable?

GB on Bittrex works like a charm, even with delay=20s on a big bunch of pair!

Quote
i think that the 3.3.2 not work very good ?

till yesterday i have use the 3.2 on polo and it works well for a while......

since yesterday i try the 3.3 and have errors, but it make some trades........

on kraken i get eroors with both

Please report on the bug/issue tracker: https://gunthy.org/index.php?topic=353.0

49
Beginners & Help / Re: Gunbot Setup for Fee
« on: June 14, 2017, 08:22:21 AM »
Hello FortKnox (what a name!). I know I'm a rough man  ;) but when I read:
Quote
… i dont have much time or knowledge
I'm wondering, hum. You know time is money. And gunbot is not magic.
My big advice: if you want to make profit without to do anything, buy a bunch of cryptos (eg BTC, ETH, DASH …) and be patient, hold them. As you can see here: https://www.worldcoinindex.com/trending/overview you can make lot of money. After all, your pseudo is FortKnox, isn't it?

Ok, you purchased GB. One thing you must do is learn about cryptos: how do that thing works. GB, now, is set (out of the box) with general config. One, for example, is the BB strategy (see https://gunthy.org/index.php?topic=193.msg819#msg819 for an explaination). It's set, by default, at LowBB=25 and HighBB=25. Perhaps with this setting you will not make awesome profits, but it work as expected.

Another advice to make profit with GB. Run it over 10-15 pairs, but I don't know if it's possible with your AWS account. So increase gently the number of pairs, and see what's going on. Personally, I run GB with 40 pairs on Polo, but on my own PC with lot of RAM (I don't think get an AWS account is a goog idea, because it free for 12 months and, as I know, cost 12$/mo after).

I will stop there for now, but dig and ask the forum or telegram group. Or PM me if you want.

50
The problem is Poloniex, not GB not us. I don't know what happens, but Polo lacks, even the web interface is slow (and bug sometime). :<

52
General Discussion / Re: BB Settings
« on: June 12, 2017, 12:25:58 AM »
Would lower % BB bands be better for a more volatile market? I find that with 25% I don't really get many trades.

So try another setting.

53
Your script is cool, thanks to share it. Personally I use tmux rather than screen, by habit. So here's my launcher :

Code: [Select]
#!/bin/env bash
# start all *-config.js in a tmux new session_name

# adapt gun_command and delay to your needs
gun_command="./gunthy-linuxx64"
delay=30

session_name=$(basename $(pwd))

flag="0"
for file in *-config.js; do
    pair=$(echo $file | cut -d'-' -f2)
    market=$(echo $file | cut -d'-' -f1)
    if [[ "$flag" = "0" ]]; then
        tmux -2 new-session -d -s $session_name -n $pair "$gun_command $pair $market"
        flag="1"
    else
        tmux -2 new-window -d -n $pair "$gun_command $pair $market"
    fi
    printf "Launching %s %s " "$market" "$pair"
    for i in $(seq 1 $delay); do
        echo -n "."
        sleep 1
    done
    echo
done

echo Done
tmux ls

Because I use gunbot on the 3 markets (poloniex, bittrex and kraken), I created subfolders :

/home/me/gunbot/bittrex
/home/me/gunbot/kraken
/home/me/gunbot/poloniex

So in each I put files I need (gunthy-linuxx64, ALLPAIRS, config files) and my start.sh script. Launching it, in the appropriate folder (eg /home/me/gunbot/bittrex), create a tmux session well named "bittrex", "kraken" or "poloniex".
Be sure to adapt gun_command and delay to your needs. For example I set delay=30 for Poloniex and delay=10 for Bittrex.

Sessions are detached, to attach a session, do:
Code: [Select]
tmux a -t poloniex
If I want to stop ALL the pairs for a market:
Code: [Select]
tmux kill-session -t poloniex
You can give me drink at:
12aeQSpytxoehCEptQE8tUJVVSAS42LvXo

54
I don't use PM2 (just a more process), and I use tmux to manage all my gunbot instances like this:

Code: [Select]
#!/bin/env bash
# start all *-config.js in a tmux new session

COMMAND="./gunthy-linuxx64"

flag="0"
for file in *-config.js; do
    pair=$(echo $file | cut -d'-' -f2)
    market=$(echo $file | cut -d'-' -f1)
    if [[ "$flag" = "0" ]]; then
        tmux -2 new-session -d -s gunbot -n $pair "$COMMAND $pair $market"
        flag="1"
    else
        tmux -2 new-window -d -n $pair "$COMMAND $pair $market"
    fi
    printf "Launching %s %s " "$market" "$pair"
    for i in {0..20}; do
        echo -n "."
        sleep 1
    done
    echo
done

echo Done

But you can simply launch all your config file (without using tmux) like this:

Code: [Select]
#!/bin/env bash

for file in *-config.js; do
    pair=$(echo $file | cut -d'-' -f2)
    market=$(echo $file | cut -d'-' -f1)
    ./gunthy-linuxx64 $pair $market
    sleep 20
    done
done

Save code in a file (like start.sh) and
Code: [Select]
chmod u+x start.sh then you can launch it with
Code: [Select]
./start.sh
Ok, PM2 is a great tool to keep an eye on your gunbots, but ps, top, htop, or my favorite glances (sudo pip install glances) don't eat my CPU.

My two cents ;)

Thank you for your work.

55
Before I ran gunbot with 40 pairs on Polo, with no problem. I tryed with only 1 pair, and I have the same issue. Yes, I stopped gunbot, many times, wait and restart. Same thing.
bot delay is 80sec, and I set fail delay to 80sec too (was 40sec), to avoid 429.
I wrote to Gunthar, and he said it's a polo overload, not my side :<
Thanks.

56
Hello, since 2 days I have only error 422 whith gunbot v3.x (v3.2 nor v3.3 whith patches). All my pairs don't works! I can't understand why. Is there anybody have the same issue?
I have obliged to increase bot fail delay to avoid error 429.
I can upload err.txt or anything if wanted.
Thanks.

57
Beginners & Help / Re: Help please
« on: June 03, 2017, 11:17:57 PM »

58
Technical Support & Development / Re: GB 3.2 not showing log-screen
« on: June 02, 2017, 07:03:26 PM »
gunbot v3.3 is out, why don't use it?

59
Thank you Gun, you deserve your customers ;)
You work hard for us, thanks  :)

Pages: 1 2 [3] 4 5