Username: Password:

Author Topic: Explain config values please  (Read 7208 times)

MrGdana

  • Guest
Explain config values please
« on: September 06, 2017, 09:39:21 AM »
Hi, i cant find the info, so please help me to understand config values.

      "bb": {
         "BTC_TRADING_LIMIT": 0.7,  \\ this is max btc amount for order? or general amount to trade? if i have 2 btc, bot will use only 0.7? can i use here bigger amount, 1 or 5 for example?
         "PERIOD": 15, \\no need explanation
         "GAIN": 0.7, \\ dont know what is it? any detail explantion? what is mean this digit, this is some count from buy price or count in %
         "HIGH_BB": 50, \\ percens from both ema to  sell?
         "LOW_BB": 40, \\ percens from both ema to buy ?
         "EMA1": 2, \\ time in hours to calculate ema price?
         "EMA2": 4, \\ same
         "PANIC_SELL": false, \\ how to use this option? if true - bot sell my coins?
         "DOUBLE_UP": true, \\ what this option do?
         "STOP_LIMIT": 17, \\ as i understand this is stop loose option? if price falls for 17% from boying price - then sell all coins, or what?
         "BUY_ENABLED": true, \\ not need to be explained
         "MIN_VOLUME_TO_BUY": 0.3, \\ understand, but not completly.  if i will trade with ltc, and want sell 2-5 ltc in one time, can i set here 3 or 5 ?
         "MIN_VOLUME_TO_SELL": 0.3 \\ same
         

Offline sloaleks

  • Contributor
  • **
  • Posts: 610
    • View Profile
Re: Explain config values please
« Reply #1 on: September 07, 2017, 07:36:55 AM »
Hi, i cant find the info, so please help me to understand config values.

      "bb": {
         "BTC_TRADING_LIMIT": 0.7,  \\ this is max btc amount for order? or general amount to trade? if i have 2 btc, bot will use only 0.7? can i use here bigger amount, 1 or 5 for example?
         "PERIOD": 15, \\no need explanation
         "GAIN": 0.7, \\ dont know what is it? any detail explantion? what is mean this digit, this is some count from buy price or count in %
         "HIGH_BB": 50, \\ percens from both ema to  sell?
         "LOW_BB": 40, \\ percens from both ema to buy ?
         "EMA1": 2, \\ time in hours to calculate ema price?
         "EMA2": 4, \\ same
         "PANIC_SELL": false, \\ how to use this option? if true - bot sell my coins?
         "DOUBLE_UP": true, \\ what this option do?
         "STOP_LIMIT": 17, \\ as i understand this is stop loose option? if price falls for 17% from boying price - then sell all coins, or what?
         "BUY_ENABLED": tr"DOUBLE_UP": true, \\ what this option do? ue, \\ not need to be explained
         "MIN_VOLUME_TO_BUY": 0.3, \\ understand, but not completly.  if i will trade with ltc, and want sell 2-5 ltc in one time, can i set here 3 or 5 ?
         "MIN_VOLUME_TO_SELL": 0.3 \\ same
From what I know and Gunthar's release explanations:
- "BTC_TRADING_LIMIT": 0.7,  // this is max BTC per one trade. set at will.
- "GAIN" // in %. I think this is used when BB is not calculated yet, but I'm not sure yet when GAIN interferes with HIGH BB - (further explanation needed)
-"EMA1": 200, //We use the latest 200 prices of the 300 collected as EMA1 (Each one every 25seconds)
-"EMA2": 50, //We use the latest 50 prices of the 300 collected as EMA2 (Each one every 25 seconds)
-"PANIC_SELL": false, //set this to true to sell all your altcoin at market price (set BUY_ENABLED: false)
-"STOP_LIMIT": 17, //In this case it will sell all your altcoins if the price reaches -17% from bought price
-"DOUBLE_UP": true, // averageing tool, to use on downward trend of pair (needs more capital in case multiple pairs have this enabled and suddenly go down)
-"MIN_VOLUME_TO_BUY": 0.3, // dust removal tool, set higher than dust value in BTC
-"MIN_VOLUME_TO_SELL": 0.3 // same