Username: Password:

Author Topic: Problem with TSSL strategy (Binance)  (Read 6559 times)

Offline vorak

  • Rookie
  • *
  • Posts: 3
    • View Profile
Problem with TSSL strategy (Binance)
« on: April 18, 2018, 01:53:06 PM »
I setup TSSL strategy for a few coins, bot has not bought/sold anything yet but when I check log I see this:

Price to sell is not in TSSL range
 Price to buy: 0.00068142
 Last Bid/Strategy Exit Point: 0.00068110/NaN
 Last Ask/Strategy Entry Point: 0.00068120/0.00068142

I have 0 of this coin yet it says price to sell is not in TSSL range?

Shouldn't the bot try to buy since buy price is higher than the last bid/ask price, so shouldn't bot have bought ?

Am I not understanding this correctly ?

I ran my TSSL tweaks in the tradingview script and technically, bot should have bought during this period

I appreciate anyones help

this is my strategy

Quote
"tssl": {
         "NAME": "tssl",
         "BUY_LEVEL": 0.1,
         "GAIN": 2,
         "TRADING_LIMIT": 0.5,
         "FUNDS_RESERVE": 0.001,
         "PERIOD": 5,
         "BUY_RANGE": 0.2,
         "SELL_RANGE": 0.6,
         "EMA1": 16,
         "EMA2": 8,
         "HIGH_BB": 45,
         "LOW_BB": 45,
         "STDV": 2,
         "SMAPERIOD": 50,
         "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,
         "TSSL_TARGET_ONLY": true,
         "STOP_LIMIT": 95,
         "BUY_ENABLED": true,
          "SELL_ENABLED": true,
         "OKKIES_MODE": true,
         "BTC_MONEY_FLOW": 35,
         "TA_ALWAYS_ON": false,
         "MIN_VOLUME_TO_BUY": 0.002,
         "MIN_VOLUME_TO_SELL": 0.002,
         "TRADES_TIMEOUT": 60

Offline gaud

  • Rookie
  • *
  • Posts: 10
    • View Profile
Re: Problem with TSSL strategy (Binance)
« Reply #1 on: April 18, 2018, 10:28:16 PM »
i think the bot always dose a check for tssl range to buy and sell on every cycle its jst telling you it cannot sell due to tssl at this point.  i would probably set min vol to buy at same spot as trading limit. i know im a rookie too but have been fighting with tssl alot since i got bot. there are defiantly some errors as i understand they are working on mostly price averaging and such i think.

Offline pigidser

  • Rookie
  • *
  • Posts: 1
    • View Profile
Re: Problem with TSSL strategy (Binance)
« Reply #2 on: April 19, 2018, 08:35:29 PM »
Hi
I use "tssl" and I haven't utilized other strategies yet. So I can see the same messages in output window. Though my bot made more than 4 hundreds buy/sell deals and I haven't noticed problems. All deals in profit. I recommend next params:
"GAIN": 4, -- let him to bring more money :)
"BUY_RANGE": 0.6,
"SELL_RANGE": 0.6
(buy/sell the same value)

Good luck in trades!

Offline ruphus

  • Rookie
  • *
  • Posts: 68
    • View Profile
Re: Problem with TSSL strategy (Binance)
« Reply #3 on: April 23, 2018, 07:18:23 AM »
I can't tell you what TSSL is actually doing here, but I don't understand some actions as well - why did TSSL sell for me here?

I don't see any indicator to tell TSSL to sell here...
Code: [Select]
"tssl": {
"NAME": "tssl",
"BUY_LEVEL": 0.2,
"GAIN": 1.7,
"TRADING_LIMIT": 0.001,
"FUNDS_RESERVE": 0.001,
"PERIOD": 15,
"BUY_RANGE": 0.6,
"SELL_RANGE": 0.6,
"EMA1": 24,
"EMA2": 12,
"HIGH_BB": 45,
"LOW_BB": 45,
"STDV": 2,
"SMAPERIOD": 15,
"PANIC_SELL": false,
"DOUBLE_UP": true,
"DOUBLE_UP_CAP": 1,
"DU_CAP_COUNT": 2,
"DU_METHOD": "RSI",
"RSI_DU_BUY": 40,
"DU_BUYDOWN": 5,
"RSI_BUY_ENABLED": false,
"RSI_SELL_ENABLED": false,
"RSI_BUY_LEVEL": 30,
"RSI_SELL_LEVEL": 70,
"TSSL_TARGET_ONLY": true,
"STOP_LIMIT": 60,
"BUY_ENABLED": true,
        "SELL_ENABLED": true,
"OKKIES_MODE": true,
"BTC_MONEY_FLOW": 35,
"TA_ALWAYS_ON": false,
"MIN_VOLUME_TO_BUY": 0.001,
"MIN_VOLUME_TO_SELL": 0.001,
"TRADES_TIMEOUT": 10
},

but I will start a new topic on this.