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

Pages: [1]
1
Hello, I am having an issue starting the Bunbot,  after I start the bot, multiple Windows package/guntly.exe command window pup up. I need to restart the computer to able to stop the windows. The bot was running until I start with the problem today. Possible is not connecting to the server.

Normally show two windows, the guntly-gui is running ok, the problem is the guntly.exe.

Any advice?

2
General Discussion / Re: Gunbot XT Edition + Gunthy GUI
« on: November 22, 2017, 10:23:41 PM »
I am having an issue after I start the bot multiple Windows package/guntly.exe command window pup up and I need to restart the computer to clear up. I think the Gunbot is not connecting to the Gunthy server.

Any advice?

3
08/30/2017 06:50:41 AM   08/30/2017 06:50:41 AM   BTC-RDD   Limit Buy   0.00000024   83333.33383333   83333.33383333   0.00000023   -0.02004998
08/30/2017 06:47:13 AM   08/30/2017 06:40:46 AM   BTC-RDD   Limit Buy   0.00000024   83333.33383333   83333.33383333   0.00000023   -0.02005000
08/30/2017 04:29:23 AM   08/30/2017 04:24:12 AM   BTC-RDD   Limit Buy   0.00000024   83333.33383333   83333.33383333   0.00000023   -0.02005000
08/30/2017 04:19:43 AM   08/30/2017 04:03:28 AM   BTC-RDD   Limit Buy   0.00000024   83333.33383333   83333.33383333   0.00000023   -0.02005000
08/30/2017 03:55:27 AM   08/30/2017 03:41:33 AM   BTC-RDD   Limit Buy   0.00000024   83333.33383333   83333.33383333   0.00000023   -0.02004998
08/29/2017 10:55:52 PM   08/29/2017 10:55:23 PM   BTC-RDD   Limit Buy   0.00000024   83333.33383333   83333.33383333   0.00000023   -0.02004997
08/29/2017 10:35:58 PM   08/29/2017 10:31:54 PM   BTC-RDD   Limit Buy   0.00000024   83333.33383333   83333.33383333   0.00000023   -0.02005000
08/29/2017 09:29:12 PM   08/29/2017 09:20:21 PM   BTC-RDD   Limit Buy   0.00000024   83333.33383333   83333.33383333   0.00000023   -0.02005000
08/29/2017 08:02:29 PM   08/29/2017 07:55:14 PM   BTC-RDD   Limit Buy   0.00000024   83333.33383333   83333.33383333   0.00000023   -0.02004998
08/29/2017 07:22:32 PM   08/29/2017 07:01:17 PM   BTC-RDD   Limit Buy   0.00000024   83333.33383333   83333.33383333   0.00000023   -0.02005000
08/29/2017 06:46:05 PM   08/29/2017 06:32:56 PM   BTC-RDD   Limit Buy   0.00000024   83333.33383333   83333.33383333   0.00000023   -0.02005000
08/29/2017 06:46:04 PM   08/29/2017 06:32:22 PM   BTC-RDD   Limit Buy   0.00000024   83333.33383333   83333.33383333   0.00000023   -0.02005000

4
var config = {
//  DEBUG
DEBUG_LOG:false,
I_REALLY_WANT_IT:false,
BUY_SMALL_PORTION:1,
INSUFFICIENT_FUNDS_ON_SELL_FIX: 0.0005,
INSUFFICIENT_FUNDS_ON_BUY_FIX: 0.0005,
//-----------------------------------------------
//   STARTUP OPTIONS
//-----------------------------------------------
SELL_ON_START:false,   
CANCEL_SELL_ORDERS_ON_START:false,
CANCEL_BUY_ORDERS_ON_START:false,
CANCEL_OPEN_ORDERS_ON_START:false,
MAX_LATEST_PRICES:300,// limit of latest prices to analyze to determine if price is growing or falling
MAX_LATEST_DIRECTIONS:30,// limit of latest  price directions ,used in supergun detection
MAX_LATEST_PRICES_TREND:30,
MAX_LAST_ORDERS:5,  // keeping last orders bought
PERIOD: 15,   // candlestick period
SAVEFILE_SUFFIX: '-save.json',
//-----------------------------------------------
//  PRIMARY SETTINGS
DEFAULT_MARKET_NAME:'bittrex',
DEFAULT_CURRENCY_PAIR:'BTC_RDD',   //  single pair format for all markets !
BUYLVL1: 2,
BUYLVL2: 5,
BUYLVL3: 40,
SELLLVL1: 2,
SELLLVL2: 5,
SELLLVL3: 70,
BUY_STRATEGY: 'PINGPONG', // accepted values BB or STEPGAIN or GAIN or PINGPONG
SELL_STRATEGY: 'PINGPONG', // accepted values BB or STEPGAIN or GAIN or PINGPONG
LOW_BB: 30,
HIGH_BB: 40,
PINGPONG_BUY:  0.00000024,
PINGPONG_SELL:  0.00000025,
BUY_LEVEL: 0.1, // If GAIN buy strategy is used, buy at this percentual below lower ema value
GAIN: 0.01, // If GAIN sell strategy is used, sell at this percentual above bought price
BTC_TRADING_LIMIT: 0.02,// max amount of BTC balance to use for each pair   
SECURITY_MARGIN: 60, // sell all balance if currency decreases x% after you bought it
MIN_VOLUME_TO_BUY: 0.0005,  // bitrex min volume
//---BITTREX
BITTREX_KEY:'',
BITTREX_SECRET:'',
BITTREX_PRICE_METHOD:'ohlc',// ohlc OR vwa  price to buy definition method
BITTREX_VWA_1_INTERVAL: 0.02,// weighted average interval in minutes
BITTREX_VWA_2_INTERVAL: 0.04,// weighted average interval in minutes
//---KRAKEN
KRAKEN_ASSET_PAIR:'XETHXXBT',
KRAKEN_KEY: '',
KRAKEN_SECRET: '',
KRAKEN_PRICE_METHOD:'ohlc',// ohlc OR vwa  price to buy definition method
KRAKEN_VWA_1_INTERVAL: 0.02,// weighted average interval in minutes
KRAKEN_VWA_2_INTERVAL: 0.04,// weighted average interval in minutes
//---POLONIEX
POLONIEX_KEY: '',
POLONIEX_SECRET: '',
POLONIEX_PRICE_METHOD:'vwa',// ohlc OR vwa price to buy definition method
POLONIEX_VWA_1_INTERVAL: 0.02,// weighted average interval in hours
POLONIEX_VWA_2_INTERVAL: 0.04,// weighted average interval in hours
//-----------------------------------------------
//   BOT TIMINGS
//-----------------------------------------------
API_CALLS_DELAY:777,
BOT_SLEEP_DELAY:(1000)*30,// bot cycle delay (koef*sec)
BOT_MAX_LIFETIME:999999999,// overall bot lifetime(koef*min),
BOT_ON_FAIL_DELAY:(1000)*60, // bot repeat cycle delay if previous cycle failed  (koef*sec) //;
//-----------------------------------------------
// EMAIL
//-----------------------------------------------
ALERT_ON_NO_FUNDS:false,  // email on insufficcient funds
SMTP_EMAIL: '%40@gmail.com',
ALERT_EMAIL:'********',
SMTP_PASSWORD: '**********',
SMTP: true,
SMTP_PROTOCOL: 'SMTPS',
SMTP_HOST: 'smtp.gmail.com',
//-----------------------------------------------
//  OUTPUT
//-----------------------------------------------
MAX_LATEST_PRICES_SHOWN: 0, // limit of latest prices to show in console.log
SHOW_LASTEST_DIRECTIONS:false,  // show chart in console
MAX_LATEST_DIRECTIONS_SHOWN:0, // chart height
LASTEST_DIRECTIONS_LIST_WIDTH:0, // chart width
//-----------------------------------------------
//   OTHER (might be deprecated/not in use )
//-----------------------------------------------
BTC_BALANCE: 2// btc balance for test purposes,
};
module.exports = config;

5
Hello, I am running Gunbot v3.3 with the "Pingpong" setup to try it up. I set it up to use the Max balance to trade of 0.02 and the Gunbot did 10x different purchases during the night with the total of about 0.20 BCT.
I got lucky I notice the issue before taking all my balance.

I don't know how this happens, any advice!

Pages: [1]