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

Pages: [1]
1
Of course, you're right, double_up should be "TRUE",

I gave an example of a config that goes by default
also need add             
"DU_CAP_COUNT": 3,
"DU_METHOD": "HIGHBB",
"DU_BUYDOWN": 2,

for exemple
 "strategies": {
      "emotionless": {
          "NAME": "emotionless",
          "TRADING_LIMIT": 0.01,
          "FUNDS_RESERVE" : 0.001,
          "PERIOD": 15,
          "BUY_LEVEL": 0.6,
          "GAIN": 0.6,
          "EMA1": 16,
          "EMA2": 8,
          "HIGH_BB": 49,
          "LOW_BB": 49,
          "STDV": 2,
          "SMAPERIOD": 50,
          "PANIC_SELL": false,
          "DOUBLE_UP": true,
          "DOUBLE_UP_CAP": 1,
          "DU_CAP_COUNT": 3,
          "DU_METHOD": "HIGHBB",
          "DU_BUYDOWN": 2,

          "STOP_LIMIT": 60,
          "BUY_ENABLED": true,
          "MIN_VOLUME_TO_BUY": 0.0001,
          "MIN_VOLUME_TO_SELL": 0.0001,
          "TRADES_TIMEOUT": 600,
          "MICROTRADES" : true
      },

2
I think I understood what the problem is.
My default config for this strategy was :
   "strategies": {
      "emotionless": {
          "NAME": "emotionless",
          "TRADING_LIMIT": 0.01,
          "FUNDS_RESERVE" : 0.001,
          "PERIOD": 15,
          "BUY_LEVEL": 0.6,
          "GAIN": 0.6,
          "EMA1": 16,
          "EMA2": 8,
          "HIGH_BB": 49,
          "LOW_BB": 49,
          "STDV": 2,
          "SMAPERIOD": 50,
          "PANIC_SELL": false,
          "DOUBLE_UP": false,
          "DOUBLE_UP_CAP": 1,

          "STOP_LIMIT": 60,
          "BUY_ENABLED": true,
          "MIN_VOLUME_TO_BUY": 0.0001,
          "MIN_VOLUME_TO_SELL": 0.0001,
          "TRADES_TIMEOUT": 600,
          "MICROTRADES" : true
      },
, this config I downloaded along with the bot.

and there were not these settings :
            "DU_CAP_COUNT": 3,

            "DU_METHOD": "HIGHBB",

            "DU_BUYDOWN": 2,

after I added them, the errors disappeared, the bot began to work and make averaging (I mean double_up).

My guess is that without these settings, the bot does not understand how to do "double_up"
and shows an error

I hope this helps someone.

3
the same (

Pages: [1]