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 - TMTBanker

Pages: [1]
1
Just liked all of your scripts, cheers mate!

2
General Discussion / Re: Gunbot XT Edition + Gunthy GUI
« on: November 09, 2017, 02:52:55 PM »
Is this an upgrade or is this a wholly separate product?

3
Do you create for every Gunbot a new account on exchanges? Or do you just use one account and create a new API key for every bot? I think for stats it's better to use multiple accounts. Is it similar for the Gunbot script if I use one or multiple accounts?
it's better to use multiple accounts, yes, i do same.

Is there no danger in getting banned from this?

You can officially "link" your accounts among themselves. So I think and hope that this is allowed.

I would like to know if it's allowed on Bittrex and Kraken? I can't find a function like "link accounts" on Bittrex.

Interesting...I"m not seeing the option to do this though - where is it for you?

> my profile
> linked accounts

Gotcha - thanks!

4
Do you create for every Gunbot a new account on exchanges? Or do you just use one account and create a new API key for every bot? I think for stats it's better to use multiple accounts. Is it similar for the Gunbot script if I use one or multiple accounts?
it's better to use multiple accounts, yes, i do same.

Is there no danger in getting banned from this?

You can officially "link" your accounts among themselves. So I think and hope that this is allowed.

I would like to know if it's allowed on Bittrex and Kraken? I can't find a function like "link accounts" on Bittrex.

Interesting...I"m not seeing the option to do this though - where is it for you?

5
Do you create for every Gunbot a new account on exchanges? Or do you just use one account and create a new API key for every bot? I think for stats it's better to use multiple accounts. Is it similar for the Gunbot script if I use one or multiple accounts?
it's better to use multiple accounts, yes, i do same.

Is there no danger in getting banned from this?

6
Everyone is having 422 error problems....haven't seen anyone that's found a workable solution yet

7
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_name -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

Is a 30 second day long enough to avoid errors?

8
General Discussion / Re: BB Settings
« on: June 12, 2017, 07:16:24 PM »
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.

That's not what he asked....

The BB% is the % distance from the BB that you'll buy / sell - e.g. you'll buy at 25% above the lower band and sell at 25% below the upper band

Making them lower would make you buy closer and sell further (further away from the average), so I suspect your # of trades would come down even more

9
Is this guide still applicable for the latest versions - 3.2 / 3.3?
Edit: 20.05.2017
Updated all configs to latest version 3.2

Much appreciated!

10
Is this guide still applicable for the latest versions - 3.2 / 3.3?

Pages: [1]