GUNBOT: The automatic profit generator > Beginners & Help

Starting up with Gunbot Tutorial for ver 3.3.5 in (VID)ENGLISH for Windows

(1/2) > >>

BluePhoeniX:
As always MY Tutorial for Windows
Step 1 download gb 3.3.5 from  : https://github.com/GuntharDeNiro/BTCT/releases
Step 2 Have javascript on your pc!! and editor to edit the files !!
Step 3 open The config.js file fill in your settings or copy paste mine  and add your key enjoy ;D
Video will be avaible soon under this link prolly when you read this :
https://www.youtube.com/watch?v=PKVAICWBk2U&feature=youtu.be

BluePhoeniX:
Standard Debag settings just copy and paste them if you want  HAS TRAILING STOP OR DOUBLE UP ENABLED!!
 




{
  "pairs": {
    "poloniex": {
      "BTC_AMP":  { "strategy": "bb", "override": {"PERIOD": 15, "BUY_LEVEL": 0.1, "GAIN": 0.6, "HIGH_BB": 60, "LOW_BB": 40, "PANIC_SELL": false}},
      "BTC_BTS":  { "strategy": "bb", "override": {"PERIOD": 15, "BUY_LEVEL": 0.1, "GAIN": 0.6, "HIGH_BB": 60, "LOW_BB": 40, "PANIC_SELL": false}},
      "BTC_GNT":  { "strategy": "bb", "override": {"PERIOD": 15, "BUY_LEVEL": 0.1, "GAIN": 0.6, "HIGH_BB": 60, "LOW_BB": 40, "PANIC_SELL": false}},
      "BTC_NAUT": { "strategy": "bb", "override": {"PERIOD": 15, "BUY_LEVEL": 0.1, "GAIN": 0.6, "HIGH_BB": 60, "LOW_BB": 40, "PANIC_SELL": false}},
      "BTC_ETH":  { "strategy": "bb", "override": {}},
      "BTC_BCN":  { "strategy": "bb", "override": {"PERIOD": 15, "BUY_LEVEL": 0.1, "GAIN": 0.6, "HIGH_BB": 60, "LOW_BB": 40, "PANIC_SELL": false}},
      "BTC_DASH": { "strategy": "bb", "override": {"PERIOD": 15, "BUY_LEVEL": 0.1, "GAIN": 0.6, "HIGH_BB": 60, "LOW_BB": 40, "PANIC_SELL": false}},
      "BTC_DOGE": { "strategy": "bb", "override": {"PERIOD": 15, "BUY_LEVEL": 0.1, "GAIN": 0.6, "HIGH_BB": 60, "LOW_BB": 40, "PANIC_SELL": false}}   
                },
   
    "bittrex": {
      "BTC-PIVX": { "strategy": "bb", "override": {"PERIOD": 15, "BUY_LEVEL": 0.1, "GAIN": 0.6, "HIGH_BB": 60, "LOW_BB": 40, "PANIC_SELL": false}},
      "BTC-LBC":  { "strategy": "bb", "override": {"PERIOD": 15, "BUY_LEVEL": 0.1, "GAIN": 0.6, "HIGH_BB": 60, "LOW_BB": 40, "PANIC_SELL": false}},
      "BTC-XMR": { "strategy": "bb", "override": {"PERIOD": 15, "BUY_LEVEL": 0.1, "GAIN": 0.6, "HIGH_BB": 60, "LOW_BB": 40, "PANIC_SELL": false}},
      "BTC-LTC":  { "strategy": "bb", "override": {"PERIOD": 15, "BUY_LEVEL": 0.1, "GAIN": 0.6, "HIGH_BB": 60, "LOW_BB": 40, "PANIC_SELL": false}}
              }
  },

  "exchanges": {
    "poloniex": {
      "key": "Xxx",
      "secret": "xx"
    },
   
    "bittrex": {
      "key": "",
      "secret": ""
    }
  },

  "bot": {
    "debug": false,
    "period_storage_ticker": 300,
    "interval_ticker_update": 10000,

    "timeout_buy": 120,
    "timeout_sell": 60,

    "BTC_TRADING_LIMIT": 0.001,
    "MIN_VOLUME_TO_BUY": 0.0005,

    "WATCH_MODE": false
  },

  "strategies": {
    "bb": {
      "PERIOD": 15,
      "BUY_LEVEL": 1.6,
      "GAIN": 1.6,
      "HIGH_BB": 25,
      "LOW_BB": 25,
      "PANIC_SELL": false
    }
  }
}

BluePhoeniX:
My normal config just add pairs double up is Disabled!!
{
   "pairs": {
      "poloniex": {
         "BTC_XMR": {
            "strategy": "bb",
            "override": {}
         }
      },
      "kraken": {
         "DASHEUR": {
            "strategy": "bb",
            "override": {}
         }
      },
      "bittrex": {
         "BTC-LTC": {"strategy": "bb","override": {},
         "BTC-XMR": {"strategy": "bb","override": {},   
         "BTC-ETH": {"strategy": "bb","override": {}   
              }
            }
         }
      }
   },

   "exchanges": {
      "poloniex": {
         "key": "",
         "secret": ""
      },
      "kraken": {
         "key": "",
         "secret": ""
      },
      "bittrex": {
         "key": "",
         "secret": ""
      }
   },

   "bot": {
      "debug": true,

      "period_storage_ticker": 300,
      "interval_ticker_update": 10000,

      "timeout_buy": 60000,
      "timeout_sell": 60000,

      "MIN_VOLUME_TO_BUY": 0.0005,

      "WATCH_MODE": false
   },

   "strategies": {
      "bb": {
         "BTC_TRADING_LIMIT": 0.002,
         "PERIOD": 15,
         "BUY_LEVEL": 2,
         "GAIN": 0.7,
         "HIGH_BB": 25,
         "LOW_BB": 25,
         "PANIC_SELL": false,
         "DOUBLE_UP": false
      }
   },

   "optionals": {
      "toOverride": {
         "BOUGHT_PRICE": 0.104744
 
      }
   }


}

brazilman37:

--- Quote from: BluePhoeniX on July 31, 2017, 06:00:22 PM ---As always MY Tutorial for Windows
Step 1 download gb 3.3.5 from  : https://github.com/GuntharDeNiro/BTCT/releases
Step 2 Have javascript on your pc!! and editor to edit the files !!
Step 3 open The config.js file fill in your settings or copy paste mine  and add your key enjoy ;D
Video will be avaible soon under this link prolly when you read this :
https://www.youtube.com/watch?v=PKVAICWBk2U&feature=youtu.be

--- End quote ---

hi i tried to open the config and i got windows script host error. error code 800A03EC source: mircosoft JScript compilation error

brazilman37:

--- Quote from: brazilman37 on July 31, 2017, 07:14:39 PM ---
--- Quote from: BluePhoeniX on July 31, 2017, 06:00:22 PM ---As always MY Tutorial for Windows
Step 1 download gb 3.3.5 from  : https://github.com/GuntharDeNiro/BTCT/releases
Step 2 Have javascript on your pc!! and editor to edit the files !!
Step 3 open The config.js file fill in your settings or copy paste mine  and add your key enjoy ;D
Video will be avaible soon under this link prolly when you read this :
https://www.youtube.com/watch?v=PKVAICWBk2U&feature=youtu.be

--- End quote ---

hi i tried to open the config and i got windows script host error. error code 800A03EC source: mircosoft JScript compilation error

--- End quote ---

nvm, i got it hehe gunthar helped me. :)
BBrazilman37

Navigation

[0] Message Index

[#] Next page

Go to full version