Username: Password:

Author Topic: I need a detailed explain config.js  (Read 6147 times)

Offline koinsever

  • Rookie
  • *
  • Posts: 1
    • View Profile
I need a detailed explain config.js
« on: October 07, 2017, 09:03:40 AM »
Hello to all.
I'm looking for my strategy. But i didnt find any doc yet. I need explanation of config.js Which settings for what?
For ex:
im using bbstepgain right now with this settings,
"bbstepgain": {
         "BTC_TRADING_LIMIT": 0.003,
         "PERIOD": 15,
         "HIGH_BB": 40,
         "LOW_BB": 40,
         "STDV": 2,
         "SMAPERIOD": 50,
         "SELLLVL1": 0.6,
         "SELLLVL2": 1,
         "SELLLVL3": 70,
         "SELLLVL": 2,
         "LASTPOINTS": 5,
         "AVGPOINTS": 250,
         "AVGMINIMUM": 0.00000001,
         "EMA1": 16,
         "EMA2": 8,
         "PANIC_SELL": false,
         "DOUBLE_UP": false,
         "STOP_LIMIT": 90,
         "BUY_ENABLED": true,
         "MIN_VOLUME_TO_BUY": 0.003,
         "MIN_VOLUME_TO_SELL": 0.003
but i dont know meanings. is there any reference document or any link like?

Offline paramecie

  • Contributor
  • **
  • Posts: 302
    • View Profile
Re: I need a detailed explain config.js
« Reply #1 on: October 07, 2017, 12:50:16 PM »
Why not reading a bit the forum?
Did you miss the Beginners & Help section  :o
Example:
https://gunthy.org/index.php/topic,306.0.html

Good luck - but learning and working is here far more important than luck ;-)

Offline sloaleks

  • Contributor
  • **
  • Posts: 610
    • View Profile
Re: I need a detailed explain config.js
« Reply #2 on: October 12, 2017, 09:44:22 AM »
BB
"BTC_TRADING_LIMIT": 0.0001, // quote currency amount to use for each buy order
         "PERIOD": 15, // candlesticks period to use for TA calculations
         "EMA1": 2, // EMA1 period
         "EMA2": 4, // EMA2 period
         "GAIN": 2, // minimum % of GAIN to profit from bought price
         "HIGH_BB": 40, // minimum sell point from higher BB
         "LOW_BB": 40, // minimum buy point from lower BB
         "STDV": 2, //multiplicator for BB formula
         "SMAPERIOD": 50, // SMA period for BB formula
         "PANIC_SELL": false, // if true sell all coins at actual market price
         "DOUBLE_UP": true, // if true use the averaging down
         "STOP_LIMIT": 60, // % from bought price to sell if coin value drops
         "BUY_ENABLED": true, // if false do not buy
         "MIN_VOLUME_TO_BUY": 0.0001, // minimum volume to buy (expressed in quote currency)
         "MIN_VOLUME_TO_SELL": 0.0001 // minimum volume to sell (expressed in quote

STEPGAIN

"BUYLVL1": 0.6, // % from lowest EMA to buy at if trend switches to UP in level 1
         "BUYLVL2": 2, // % from lowest EMA to buy at if trend switches to UP in level 2
         "BUYLVL3": 70, // % from lowest EMA to buy at if trend switches to UP in level 3
         "SELLLVL1": 0.6, // % from bought price to sell at if trend switches to DOWN in level 1
         "SELLLVL2": 2, // % from bought price to sell at if trend switches to DOWN in level 2
         "SELLLVL3": 70, // % from bought price to sell at if trend switches to DOWN in level 3
         "BUYLVL": 2, // minimum level to wait before to buy
         "SELLLVL": 2, // minimum level to wait before to sell
         "LASTPOINTS": 5, // how many last prices to use to decide if trend is UP or DOWN
         "AVGPOINTS": 250, // how many last prices to calculate average and compare with LASTPOINTS
         "AVGMINIMUM": 0.00000001, // prices rate to ignore during average of AVGPOINTS

It's all in in the 5.0.1. instructions. https://github.com/GuntharDeNiro/BTCT/releases
Please read it up ...

Offline paramecie

  • Contributor
  • **
  • Posts: 302
    • View Profile
Re: I need a detailed explain config.js
« Reply #3 on: October 12, 2017, 11:56:31 AM »
Yeah...

Some people should really start a Wiki or a google doc on how to start...

I may participate, but the main problem here is the 3 different versions (not counting the 3.3.4 and such sub versions).
That would be an enormous job to detail all this.

Still waiting for the next official stable one, so we can forget ALL the others.
Kind of a Paradise maybe...