1
Beginners & Help / Re: Free TradingView Scripts for Tuning Strategies in Gunbot / GunbotXT
« on: January 02, 2018, 10:53:39 PM »
Just liked all of your scripts, cheers mate!
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.
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
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.
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.
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
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.
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