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

Pages: [1] 2 3
1
General Discussion / Re: TSSL selling at a loss
« on: June 06, 2018, 04:37:38 PM »
I am encountering same strange small losses @bb as well...

2
I am letting the bot trade bnb as well with double up. Most of the times, i have enough BNB then.

3
General Discussion / Re: Gunbot RT Edition v.9.5.1 on Raspberry Pi
« on: June 06, 2018, 04:28:59 PM »
in terminal use:
Code: [Select]
crontab -e
and add

Code: [Select]
@reboot /home/**USERNAME**/path/to/gunbot/folder/gunthy-arm
to the last line.

4
It seems to be working by now. On a hint of a telegram member I adjusted the SMAPERIOD slightly higher. Nevertheless I am wondering, why TSSL did not trade at all... anyway... Maybe it was a binance issue, since they seem to lag in the last days a little bit of performance.

5
Technical Support & Development / Re: Gunbot Buying Concerns
« on: May 23, 2018, 08:42:21 AM »
You need to post your config for us to help.

Be aware to not post your key+secret.

6
Technical Support & Development / Re: Gunbot NEVER trades
« on: May 23, 2018, 08:40:54 AM »
I am encountering the same issue. Every strategy I tryed so far except "emotionless", does not trade at all. Only emotionless is trading, which I don't like that much, since there is no information on how that strat works.

7
Hey guys,

is anybody experiencing an issues with strategies other than "emotionless"? In this example DASH and GNT are pretty much trading all the time, while EOS and ETH did not have a single buy since I upgraded to v951. All my other pairs are running emotionless right now, since there is not a single BUY/TRADE with any other strategy happening.

Can anyone figure out, why there is no trading happening with BB or TSSL?

Code: [Select]
"BTC-DASH": {
                "strategy": "emotionless",
                "override": {}
            },
"BTC-EOS": {
                "strategy": "bb",
                "override": {}
            },
"BTC-ETH": {
                "strategy": "tssl",
                "override": {}
            },
"BTC-GNT": {
                "strategy": "emotionless",
                "override": {}
            },
Code: [Select]
       
        "emotionless": {
            "NAME": "emotionless",

            "BUY_ENABLED": true,
            "BUY_LEVEL": 0.1,

            "SELL_ENABLED": true,
            "GAIN": 1.2,

            "TRADING_FEES": 0.1,
            "TRADING_LIMIT": 0.01,
            "FUNDS_RESERVE": 0.05,

            "PERIOD": 5,
            "EMA1": 16,
            "EMA2": 8,
            "OKKIES_MODE": false,
            "BTC_MONEY_FLOW": 35,

            "PANIC_SELL": false,
            "STOP_LIMIT": 5,
            "MIN_VOLUME_TO_BUY": 0.001,
            "MIN_VOLUME_TO_SELL": 0.001,
            "TRADES_TIMEOUT": 0
        },"bb": {
            "NAME": "bb",

            "BUY_ENABLED": true,
            "BUY_LEVEL": 0.1,

            "SELL_ENABLED": true,
            "GAIN": 1.2,

            "TRADING_FEES": 0.1,
            "TRADING_LIMIT": 0.01,
            "FUNDS_RESERVE": 0.05,

            "PERIOD": 5,
            "EMA1": 16,
            "EMA2": 8,
            "HIGH_BB": 49,
            "LOW_BB": 49,
            "STDV": 2,
            "SMAPERIOD": 5,
            "SLOW_SMA": 1,
            "FAST_SMA": 2,
            "MACD_SHORT": 5,
            "MACD_LONG": 20,
            "MACD_SIGNAL": 10,
            "STOCH_ENABLED": false,
            "STOCH_BUY_LEVEL": 20,
            "STOCH_SELL_LEVEL": 80,
            "STOCH_K": 14,
            "SLOW_STOCH_K": 3,
            "STOCH_D": 3,
            "RSI_BUY_ENABLED": false,
            "RSI_SELL_ENABLED": false,
            "RSI_BUY_LEVEL": 50,
            "RSI_SELL_LEVEL": 70,
            "MFI_ENABLED": false,
            "MFI_SELL_LEVEL": 30,
            "MFI_BUY_LEVEL": 70,
            "OKKIES_MODE": false,
            "BTC_MONEY_FLOW": 35,

            "DOUBLE_UP": false,
            "DOUBLE_UP_CAP": 1,
            "DU_CAP_COUNT": 0,
            "DU_METHOD": "HIGHBB",
            "DU_BUYDOWN": 2,
            "RSI_DU_BUY": 30,

            "RT_ENABLED": false,
            "RT_MAXBAG_PROTECTION": 10,
            "RT_BUY_BUYDOWN": 2,
            "RT_SELL_BUYDOWN": 1,
            "AIRDROP": false,

            "TRAIL_ME_SELL": false,
            "TRAIL_ME_BUY": false,
            "TRAIL_ME_RT": false,
            "TRAIL_ME_DU": false,
            "TRAIL_ME_SELL_RANGE": 0.3,
            "TRAIL_ME_BUY_RANGE": 0.3,

            "PANIC_SELL": false,
            "STOP_LIMIT": 5,
            "MIN_VOLUME_TO_BUY": 0.001,
            "MIN_VOLUME_TO_SELL": 0.001,
            "TRADES_TIMEOUT": 1
        },
        "tssl": {
            "NAME": "tssl",

            "BUY_ENABLED": true,
            "BUY_LEVEL": 0.1,
            "BUY_RANGE": 0.3,

            "SELL_ENABLED": true,
            "GAIN": 0.6,
            "SELL_RANGE": 0.3,
            "TSSL_TARGET_ONLY": true,

            "TRADING_FEES": 0.1,
            "TRADING_LIMIT": 0.01,
            "FUNDS_RESERVE": 0.05,

            "PERIOD": 5,
            "EMA1": 16,
            "EMA2": 8,
            "HIGH_BB": 45,
            "LOW_BB": 45,
            "STDV": 2,
            "SMAPERIOD": 15,
            "SLOW_SMA": 1,
            "FAST_SMA": 2,
            "MACD_SHORT": 5,
            "MACD_LONG": 20,
            "MACD_SIGNAL": 10,
            "STOCH_ENABLED": false,
            "STOCH_BUY_LEVEL": 20,
            "STOCH_SELL_LEVEL": 80,
            "STOCH_K": 14,
            "SLOW_STOCH_K": 3,
            "STOCH_D": 3,
            "RSI_BUY_ENABLED": false,
            "RSI_SELL_ENABLED": false,
            "RSI_BUY_LEVEL": 30,
            "RSI_SELL_LEVEL": 70,
            "MFI_ENABLED": false,
            "MFI_SELL_LEVEL": 30,
            "MFI_BUY_LEVEL": 70,
            "OKKIES_MODE": false,
            "BTC_MONEY_FLOW": 35,

            "DOUBLE_UP": false,
            "DOUBLE_UP_CAP": 1,
            "DU_CAP_COUNT": 0,
            "DU_METHOD": "HIGHBB",
            "RSI_DU_BUY": 30,

            "RT_ENABLED": false,
            "RT_MAXBAG_PROTECTION": 10,
            "RT_BUY_BUYDOWN": 2,
            "RT_SELL_BUYDOWN": 1,
            "DU_BUYDOWN": 2,
            "AIRDROP": false,

            "TRAIL_ME_RT": false,
            "TRAIL_ME_DU": false,
            "TRAIL_ME_SELL_RANGE": 0.5,
            "TRAIL_ME_BUY_RANGE": 0.5,

            "PANIC_SELL": false,
            "STOP_LIMIT": 5,
            "MIN_VOLUME_TO_BUY": 0.001,
            "MIN_VOLUME_TO_SELL": 0.001,
            "TRADES_TIMEOUT": 0
        },

Cheers

8
start:
./path/to/gunbot/folder/gunthy-linx64

stop;
killall gunthy

9
Thank you for those informations. That might be a reason why my TSSL is selling at points, which do not make sense to me? Lik in a steady upwards trend without EMA or SMA or prives go downwards?! Why should it sell here....

10
Technical Support & Development / TSSL - why did it sell / buy for me?
« on: April 23, 2018, 07:42:32 AM »
Hey guys,

I am heavily wondering, why TSSL opened buy and sell orders at some points in time, where I am not able to find any reasonable indicators for it. I saw similar sell orders more often in the last days, when GB sell right within a big upwards trend https://ibb.co/kRBKMx https://ibb.co/inTATc

Just last night it did the following #
1) BUY @not being below EMA1 & EMA2 (24/12)
2) SELL @steady upwards trend



The Wiki says:
Quote
BUY_LEVEL(0.1) - This setting can be used as protection against buying above EMA. The default value of 0.1% will prevent the bot from buying when the price is not at least 0.1 % under the lowest EMA.

My TSSL settings:
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
},

Any help to improve the selling strategy is welcomed!

11
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.

12
+1 INVALID LICENSE for Poloniex as I just recognized. It has been running for weeks (8.03). Whats the matter here? Is the license server down or has some change just recently happened?!

13
Technical Support & Development / Re: v7.0.2 Random Errors?
« on: January 11, 2018, 08:04:57 AM »
hmm can you post the interesting snippets out of your config? (without api and secret)
pairs and strats would be important. maybe bot section as well.

14
Beginners & Help / Re: GB 7.0.2 not selling
« on: December 27, 2017, 05:00:35 AM »
what they really miss is an adequate community support staff (like professiona technical helper for the forum). here are so many ppl having issues and problems and no official moderator is willing to care.

and this furious fast release cycle for adding more and more exchanges which each version  is obviously only focused on seeing more bots instead of maintaining quality, fixing bugs, raising ux, improving strategies, support & communication with customers in the forum....

overall it is mass selling over quality. a shame.

15
Technical Support & Development / Re: v7.0.2 Random Errors?
« on: December 27, 2017, 04:28:41 AM »
actually I have no idea what those errors say, but into the dark I would recommend to check the config for typos and missing commas/brackets and stuff. maybe use a new clean config and step by step paste your config and run GB with each change.

16
i have had the same issue yesterday as well. and the same fix helped out.

check your pair nomenclature

17
I can not confirm that problem on polo.

it sells on tssl and bbrsitssl.

18
General Discussion / Re: FUCKING ANGRY @Gunthar
« on: December 12, 2017, 07:32:46 AM »
working now for me again. thanks for the hint with the config. I checked my files again and seem to have downloaded the wrong version for update.... stupid me

19
General Discussion / Re: XT stopped working
« on: December 12, 2017, 02:22:49 AM »
I checked for btc_eth instead of BTC_ETH. no typos, all caps lock. not working at all. still no error message. still no text showing me that GB loads the config.js....

I opened an issue at GitHub but did not get a response for 2 days.


//Edit:

Ok I obviously downloaded the wrong files for the update... now another "update" to 602 is running fine again.

20
General Discussion / Re: FUCKING ANGRY @Gunthar
« on: December 11, 2017, 03:41:48 AM »
I assum he/she is facing the same problem as I do...

No error message
No message at all
No log file created
No nothing

From the one minute to the other.

I am using a linx vps - I rebooted, updated&&upgraded linx, updated XT. Not even a fresh install of XT is working nor giving any sort of message.

Pages: [1] 2 3