Username: Password:

Author Topic: Why my stop wasn't triggered?  (Read 6865 times)

Offline fpontilho

  • Rookie
  • *
  • Posts: 2
    • View Profile
Why my stop wasn't triggered?
« on: February 10, 2018, 09:39:08 PM »
Hi Everybody.

I would like to point out that I`m new here and a newbie on GunBot, so if I`m asking something stupid, forgive me.

TOday I started using gunbot @ Binance, and I was testing bbstepgain strategy, here is my config:

       "bbstepgain": {
            "NAME": "bbstepgain",
            "TRADING_LIMIT": 1000,
            "FUNDS_RESERVE": 0.1,
            "PERIOD": 5,
            "BUY_LEVEL": 0.1,
            "GAIN": 0.6,
            "EMA1": 24,
            "EMA2": 12,
            "HIGH_BB": 40,
            "LOW_BB": 25,
            "STDV": 2,
            "SMAPERIOD": 10,
            "SELLLVL1": 0.6,
            "SELLLVL2": 1.2,
            "SELLLVL3": 1.8,
            "SELLLVL": 1,
            "PANIC_SELL": false,
            "DOUBLE_UP": false,
            "DOUBLE_UP_CAP": 1,
            "DU_CAP_COUNT": 3,
            "DU_METHOD": "HIGHBB",
            "RSI_DU_BUY": 30,
            "DU_BUYDOWN": 2,
            "RSI_BUY_ENABLED": false,
            "RSI_SELL_ENABLED": false,
            "RSI_BUY_LEVEL": 30,
            "RSI_SELL_LEVEL": 70,
            "STOP_LIMIT": 2,
            "BUY_ENABLED": true,
            "SELL_ENABLED": true,
            "OKKIES_MODE": true,
            "BTC_MONEY_FLOW": 35,
            "TA_ALWAYS_ON": false,
            "MIN_VOLUME_TO_BUY": 1000,
            "MIN_VOLUME_TO_SELL": 1000,
            "TRADES_TIMEOUT": 180

My first buy order was USDT-NEO @ 103.56 and If "STOP_LIMIT"= 2 the sell STOP limit order should be triggered @ 101.48. right?

At the 5 minute chart it went down to 100.28 and the STOP was never triggered.

I am missing something here?

Offline sloaleks

  • Contributor
  • **
  • Posts: 610
    • View Profile
Re: Why my stop wasn't triggered?
« Reply #1 on: February 11, 2018, 07:19:04 AM »
        "MIN_VOLUME_TO_BUY": 1000,
            "MIN_VOLUME_TO_SELL": 1000,

because of this. set these two to 1, or 2.

Offline fpontilho

  • Rookie
  • *
  • Posts: 2
    • View Profile
Re: Why my stop wasn't triggered?
« Reply #2 on: February 12, 2018, 08:23:03 PM »
        "MIN_VOLUME_TO_BUY": 1000,
            "MIN_VOLUME_TO_SELL": 1000,

because of this. set these two to 1, or 2.

Oh make sense. I will try that, thanks!