Username: Password:

Author Topic: GUNBOT v3.1 - Release name: "x3"  (Read 35144 times)

Offline Gunthar

  • Administrator
  • *****
  • Posts: 287
    • View Profile
Re: GUNBOT v3.1 - Release name: "x3"
« Reply #20 on: April 21, 2017, 07:27:22 PM »
In less than 2 hours all licenses will be delivered

Offline rsalan

  • Rookie
  • *
  • Posts: 7
    • View Profile
Re: GUNBOT v3.1 - Release name: "x3"
« Reply #21 on: April 21, 2017, 07:38:52 PM »
In less than 2 hours all licenses will be delivered

Including Windows, I assume?

Offline dobcrypto

  • Contributor
  • **
  • Posts: 196
  • Russian - native language
    • View Profile
Re: GUNBOT v3.1 - Release name: "x3"
« Reply #22 on: April 21, 2017, 07:41:35 PM »
In less than 2 hours all licenses will be delivered

Including Windows, I assume?
GUI will be tomorrow...

Offline cryptico

  • Rookie
  • *
  • Posts: 7
  • GUNBOT Official Reseller
    • View Profile
    • tradewithgunbot.shop
Re: GUNBOT v3.1 - Release name: "x3"
« Reply #23 on: April 21, 2017, 07:57:40 PM »
I am interesting in the windows version too.... ;D
TradewithGunbot.shop | GUNBOT Official Reseller

Offline chimj

  • Rookie
  • *
  • Posts: 10
    • View Profile
Re: GUNBOT v3.1 - Release name: "x3"
« Reply #24 on: April 21, 2017, 08:07:48 PM »
In less than 2 hours all licenses will be delivered

It will be a long night! ;-)

Offline morton

  • Rookie
  • *
  • Posts: 4
    • View Profile
Re: GUNBOT v3.1 - Release name: "x3"
« Reply #25 on: April 21, 2017, 11:41:16 PM »
hope you did not miss my message have not received a message  :'(

Offline Gunthar

  • Administrator
  • *****
  • Posts: 287
    • View Profile
Re: GUNBOT v3.1 - Release name: "x3"
« Reply #26 on: April 22, 2017, 01:28:39 AM »
Release v3.1 - Core Edition: Linux/Windows/Mac/ARM
@GuntharDeNiro GuntharDeNiro released this an hour ago

This is a major release in its core edition: no GUI. You can run it on Windows following instructions here https://gunthy.org/index.php?topic=47.msg94#msg94

Linux/Mac/ARM follow instructions here: https://gunthy.org/index.php?topic=72.0

In all processes you can run it from command line like this:
"node index BTC_ETH poloniex" for poloniex market
"node index BTC_ETH kraken" for kraken market
"node index BTC_ETH bittrex" for bittrex market

Step by step guide to start it from old 2.x versions:

1- Copy all your "BTC_XXX-save.json" file to the new GUNBOT folder
2- Rename all your "BTC_XXX-save.json" file to "poloniex-BTC_XXX-save.json"
3- Create a config file by cloning the "BTC_ARK-config.js" per each pair you want to run
4- Fill your api/secret pairs for each market in each config file
5- start the bot from command line with the above mentioned commands
6- Profit!

Pre-requisites and environment:
You need node installed (you should already have it installed from 2.0.4b. If this is not the case, install the latest node (actually 7.9). The package already includes all node_modules. You can run "npm install" if you wish to update to the latest modules in the future. After installation, if you get some errors for missed npm modules, run again the command for the missed module only. For example: "npm install request" (if you got an error for missed "request" module. Or: "npm install mathjs" if you received an error about missed mathjs module.

The Strategies:
With this release, you can operate on 3 markets (Poloniex, Kraken, Bittrex) using different strategies:

1- Pure EMA ping-pong: let your bot buy at a fixed % below EMA and sell at a fixed percentual above EMA.
These are the settings to use for this strategy:
- SELL_STRATEGY: 'GAIN', //sell strategy to use (BB or GAIN)
- BUY_STRATEGY: 'GAIN', // buy strategy to use (BB or GAIN)
- BUY_LEVEL: 1, //percentual from weighted price you want to buy if you want to use GAIN strategy
- BITTREX_GAIN: 2, // margin to sell on bittrex
- KRAKEN_GAIN: 2, // margin to sell on kraken
- GAIN: 2, // margin to sell on poloniex
With this settings your bot will buy at 1% below ema and sell at 2% above ema (you can set sell levels per each market.

2- Pure Bollinger Band ping pong: let your bot buy close to the lower Bollinger Band and sell close to the higher
Bollinger Band.
These are the settings to use for this strategy:
- LOW_BB: 5, //percentual from the lowest Bollinger Band you want to buy
- HIGH_BB: 5, //percentual from the highest Bollinger Band you want to sell
- SELL_STRATEGY: 'BB', //sell strategy to use (BB or GAIN)
- BUY_STRATEGY: 'BB', // buy strategy to use (BB or GAIN)
Notice: when you first start your GUNBOT, it has not statistics yet, it needs to collect and build indicators.
Hence, to protect you from buying too high because the Bollinger Band are not completely calculated
yet, the GUNBOT will work using the GAIN strategy until it says the statistics are correctly loaded. It will
switch automatically to the Bollinger Band strategy when ready. So, be sure to properly set BUY_LEVEL
and GAIN % in all markets!

3- A mix of the previous strategies: you can decide to BUY at fixed % and to sell at higher Bollinger Band. Or you
can decide to BUY at lower Bollinger Band and to sell at % GAIN from your bought price. Or you can decide to
restrict the Bollinger Band and use a Bollinger Band ping pong with smaller interval (play with the LOW_BB and
HIGH_BB settings to achieve this.

4.- Dont forget you have still available other 3 strategies: the SUPERGUN from 2.0.4b, the 1000trades...and the
beloved "Russian Roulette" from v1.3!!! They are all profitable strategies and you can decide to move over
multiple accounts with multiple strategies on the same coin!

I am completing the GUI for pinky-Windows users ;) I will push a GUI in the next 48 hours.

Known features not working (yet) in this release:

manual trades (i am building a GUI for this feature as it has been reported with some bugs in the 2.0.4b
email alert: gmail and some other providers added an extra security layer to prevent spam and it is being
refactored.
Please report any bug immediately!!!
Thanks
~Gun

https://github.com/GuntharDeNiro/BTCT/releases/download/x3CoreEditionv3.1/GUNBOT_x3_edition_corev3.1b.zip

Offline Gunthar

  • Administrator
  • *****
  • Posts: 287
    • View Profile
Re: GUNBOT v3.1 - Release name: "x3"
« Reply #27 on: April 22, 2017, 01:38:25 AM »
all people that have PMd me in this forum wiht their poloniex api key, have been activated for the 3.1 version. Donwload and profit!

Offline taky2

  • Rookie
  • *
  • Posts: 13
    • View Profile
Re: GUNBOT v3.1 - Release name: "x3"
« Reply #28 on: April 22, 2017, 03:43:58 AM »
2- Pure Bollinger Band ping pong: let your bot buy close to the lower Bollinger Band and sell close to the higher
Bollinger Band.
These are the settings to use for this strategy:
- LOW_BB: 5, //percentual from the lowest Bollinger Band you want to buy
- HIGH_BB: 5, //percentual from the highest Bollinger Band you want to sell
- SELL_STRATEGY: 'BB', //sell strategy to use (BB or GAIN)
- BUY_STRATEGY: 'BB', // buy strategy to use (BB or GAIN)
Notice: when you first start your GUNBOT, it has not statistics yet, it needs to collect and build indicators.
Hence, to protect you from buying too high because the Bollinger Band are not completely calculated
yet, the GUNBOT will work using the GAIN strategy until it says the statistics are correctly loaded. It will
switch automatically to the Bollinger Band strategy when ready. So, be sure to properly set BUY_LEVEL
and GAIN % in all markets!

Just to clarify, looking at the provided config file it appears that this the strategy that will be used with "default settings," is this correct?

Offline Gunthar

  • Administrator
  • *****
  • Posts: 287
    • View Profile
Re: GUNBOT v3.1 - Release name: "x3"
« Reply #29 on: April 22, 2017, 01:14:40 PM »
another batch of licenses has been delivered. All people that messaged me as of now, got their polo api enabled and/or received instructions for Bittrex/Kraken

Offline Clannad

  • Rookie
  • *
  • Posts: 38
    • View Profile
Re: GUNBOT v3.1 - Release name: "x3"
« Reply #30 on: April 22, 2017, 06:47:36 PM »
The GUNBOT x3 edition comes with different packages:
  • The Family pack: if you bought the Poloniex GUNBOT before 20 April 2017, you are considered a "contributor". You can have 50% off discount on the Kraken license and the Bittrex license: 0.1BTC for both licenses
~Gun

Hi Gunthar. Is there a time limit for this offer ? Because actually I'm only using Poloniex, but I might give a try at Kraken and Bittrex in a few weeks (months ?)

Thanks for this great release !

Offline Gunthar

  • Administrator
  • *****
  • Posts: 287
    • View Profile
Re: GUNBOT v3.1 - Release name: "x3"
« Reply #31 on: April 22, 2017, 07:10:55 PM »
another batch of licenses has been delivered. All people that messaged me as of now, got their polo api enabled and/or received instructions for Bittrex/Kraken

Offline Gunthar

  • Administrator
  • *****
  • Posts: 287
    • View Profile
Re: GUNBOT v3.1 - Release name: "x3"
« Reply #32 on: April 22, 2017, 07:11:29 PM »
The GUNBOT x3 edition comes with different packages:
  • The Family pack: if you bought the Poloniex GUNBOT before 20 April 2017, you are considered a "contributor". You can have 50% off discount on the Kraken license and the Bittrex license: 0.1BTC for both licenses
~Gun

Hi Gunthar. Is there a time limit for this offer ? Because actually I'm only using Poloniex, but I might give a try at Kraken and Bittrex in a few weeks (months ?)

Thanks for this great release !

Actually there is not a time limit (especially for the BB strategy "inventor" ;) )

Offline Gunthar

  • Administrator
  • *****
  • Posts: 287
    • View Profile
Re: GUNBOT v3.1 - Release name: "x3"
« Reply #33 on: April 22, 2017, 08:10:50 PM »
Gun I still didn't receive my Polo & Kraken license activated..please check my pms. Thank you!

Your licenses has been activated since 2 days i guess, i keep posting released batches by date/time:
another batch of licenses has been delivered. All people that messaged me as of now, got their polo api enabled and/or received instructions for Bittrex/Kraken

Offline ffastrackr

  • Rookie
  • *
  • Posts: 4
    • View Profile
Re: GUNBOT v3.1 - Release name: "x3"
« Reply #34 on: April 22, 2017, 09:03:46 PM »
Gun I still didn't receive my Polo & Kraken license activated..please check my pms. Thank you!

Your licenses has been activated since 2 days i guess, i keep posting released batches by date/time:
another batch of licenses has been delivered. All people that messaged me as of now, got their polo api enabled and/or received instructions for Bittrex/Kraken

 
I can't start it on kraken...keep getting :+INVALID LICENSE!!! Please contact Gunthar!
Well I tried contacting Gunthar on telegram and on pm here to no avail

Offline Beachguy

  • Rookie
  • *
  • Posts: 23
  • Former Gunbot Reseller
    • View Profile
Re: GUNBOT v3.1 - Release name: "x3"
« Reply #35 on: April 22, 2017, 09:15:32 PM »
life things getting in the way so I want have a chance to work with 3.1 until prolly Monday.
Probably a good thing since I need to learn about this trading in the "BBand" thing.

Amazing how the simple little gunbot has become a battleship of a bot


Offline Clannad

  • Rookie
  • *
  • Posts: 38
    • View Profile
Re: GUNBOT v3.1 - Release name: "x3"
« Reply #36 on: April 22, 2017, 10:47:31 PM »
Actually there is not a time limit (especially for the BB strategy "inventor" ;) )

Thanks :D


Btw I have a question about this new release:

These are the settings to use for this strategy:
- LOW_BB: 5, //percentual from the lowest Bollinger Band you want to buy
- HIGH_BB: 5, //percentual from the highest Bollinger Band you want to sell

Can we set negative values in LOW_BB and HIGH_BB if we want to buy below lower BB or sell above upper BB ?

Thanks for your kind help

Offline Gunthar

  • Administrator
  • *****
  • Posts: 287
    • View Profile
Re: GUNBOT v3.1 - Release name: "x3"
« Reply #37 on: April 23, 2017, 12:29:11 PM »
another batch of licenses has been delivered: all people that PMd me in this forum until now, have been enabled on all requested markets

Offline Kraddler

  • Rookie
  • *
  • Posts: 5
    • View Profile
Re: GUNBOT v3.1 - Release name: "x3"
« Reply #38 on: April 23, 2017, 09:18:17 PM »
Hey, what about a mixture of BB and Supergun? What I mean is: When i set LOW_BB to 5 and the price is going below 5% the Gunbot waits until the trend changes and buys even deeper. As Supergun does today. The same on HIGH_BB.

Would that be a good strategy or do i miss something? (Please be gentle, I'm new in trading  ;D)

Offline Gunthar

  • Administrator
  • *****
  • Posts: 287
    • View Profile
Re: GUNBOT v3.1 - Release name: "x3"
« Reply #39 on: April 23, 2017, 10:30:08 PM »
another batch of licenses has been enabled: all people that messaged me until now have been enabled for the requested markets.
I will answer all support requests in the next minutes
Thanks!