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

Pages: [1] 2
1
Where is the documentation? Seems there is nothing in the file we can download from the gunthy

https://github.com/GuntharDeNiro/Gunthy/releases

Thank you

2
Feedback on 5.0.4;

Issue with selling price... I think I saw a changelog fix for that issue but.. seems to be still present in 5.0.4 

Bought at 0.00071009
Sold at 0.00071009

Using BBSTEPGAIN.

"PERIOD": 15,
         "HIGH_BB": 40,
         "LOW_BB": 40,
         "STDV": 2,
         "SMAPERIOD": 150,
         "SELLLVL1": 0.6,
         "SELLLVL2": 2,
         "SELLLVL3": 70,
         "SELLLVL": 2,
         "LASTPOINTS": 5,
         "AVGPOINTS": 250,
         "AVGMINIMUM": 0.00000001,
         "EMA1": 2000,
         "EMA2": 1000,
         "PANIC_SELL": false,
         "DOUBLE_UP": false,
         "STOP_LIMIT": 60,
         "BUY_ENABLED": true,
         "MIN_VOLUME_TO_BUY": 0.001,
         "MIN_VOLUME_TO_SELL": 0.001


3
@rubberbudgie,  google.com   gunbot download

Should be within the first links..

4
+1 on the BOT_DELAY explanation..

Why Bot_delay when interval_ticker_update is querying each 20 sec ?

      "interval_ticker_update": 20000,

      "BOT_DELAY": 1

5
+1 on this one... kinda crazy sometimes on how often it double up!


6
Technical Support & Development / Re: 5.x "loading exchange bittrex" forever
« on: September 15, 2017, 10:36:26 PM »
as for the

     "SELLLVL1": 0.6,
         "SELLLVL2": 2,
         "SELLLVL3": 70,

is it me or selllvl1  at .6.. we're loosing money? isn't supposed to be 2, then 5, then 70 or well.. anything higher than 0.6 for 1st level? Am I missing something here?

TY :)

7
Technical Support & Development / Re: 5.x "loading exchange bittrex" forever
« on: September 15, 2017, 09:45:23 PM »
ahhhhhhhhhhhhhhhh

finally :D)

bittrex is BTC-XMR and not BTC_XMR!

grrrr   funny how we can get blinded when looking at something !

I'll leave them here just in case someone else run into the same stupid code-18! :)

"poloniex"    =   "BTC_ZRX": {
"kraken"      =    "DASHEUR": {
"bittrex":     =   "BTC-LTC": {
"cryptopia": =   "SIGT_BTC": {



8
Technical Support & Development / Re: 5.x "loading exchange bittrex" forever
« on: September 15, 2017, 09:08:09 PM »
I just verified it on an online json tool.. everything is accurate...

As for bittrex, no opened orders,  as for api valid, i can run 4.x without problem.. Account is verified...  Damn I am confused :(

9
Technical Support & Development / Re: 5.x "loading exchange bittrex" forever
« on: September 15, 2017, 07:29:58 PM »
na, i'm not trading 300 btc worth of xmr :P) more like ,1 btc
It goes with the give me your bitcoin ehehe..

can't get nothing out of it.. even when I remove the override lines.

10
Technical Support & Development / Re: 5.x "loading exchange bittrex" forever
« on: September 15, 2017, 04:12:20 PM »
Here's my config file for test ..
5.0.4

If you find anything wrong in this.. let me know..

thank you Sergio/Paramecie! :)

{
   "pairs": {
      "bittrex": {
         "BTC_XMR": {
            "strategy": "bbstepgain",

            "override": {
               "BTC_TRADING_LIMIT": 300.00
            }
         }
         
      }
   },

   "exchanges": {
      "bittrex": {
         "key": "givemeyourbitcoin",
         "secret": "please"
      }
      
   },

   "bot": {
      "debug": false,

      "period_storage_ticker": 2000,
      "interval_ticker_update": 25000,

      "timeout_buy": 600,
      "timeout_sell": 60000,

      "WATCH_MODE": false,
      "VERBOSE": true,
      "TV_GAIN": 0.6,
      "TV_TRADING_LIMIT": 0.001,
      "BOT_DELAY": 1
   },

   "ws": {
      "port": 5001
   },

   "imap_listener": {
      "enabled": false,
      "authorized_froms": ["noreply@tradingview.com"],
      "user": "YOUR_EMAIL_HERE",
      "password": "YOUR_PASSWORD_HERE",
      "host": "imap.gmail.com",
      "port": 993,
      "tls": true,
      "tlsOptions": {
         "rejectUnauthorized": false
      }
   },

   "strategies": {
      "bb": {
         "BTC_TRADING_LIMIT": 0.0001,
         "PERIOD": 15,
         "EMA1": 200,
         "EMA2": 50,
         "GAIN": 2,
         "HIGH_BB": 40,
         "LOW_BB": 40,
         "STDV": 2,
         "SMAPERIOD": 50,
         "PANIC_SELL": false,
         "DOUBLE_UP": true,
         "STOP_LIMIT": 60,
         "BUY_ENABLED": true,
         "MIN_VOLUME_TO_BUY": 0.0001,
         "MIN_VOLUME_TO_SELL": 0.0001

      },
      "gain": {
         "BTC_TRADING_LIMIT": 0.001,
         "PERIOD": 15,
         "BUY_LEVEL": 2,
         "GAIN": 2,
         "EMA1": 200,
         "EMA2": 50,
         "HIGH_BB": 45,
         "LOW_BB": 45,
         "STDV": 2,
         "SMAPERIOD": 50,
         "PANIC_SELL": false,
         "DOUBLE_UP": true,
         "STOP_LIMIT": 60,
         "BUY_ENABLED": true,
         "MIN_VOLUME_TO_BUY": 0.001,
         "MIN_VOLUME_TO_SELL": 0.001

      },

      "pp": {
         "BTC_TRADING_LIMIT": 0.01,
         "PP_BUY": 0.00000001,
         "PP_SELL": 0.12345678,
         "PANIC_SELL": false,
         "STOP_LIMIT": 60,
         "BUY_ENABLED": true,
         "MIN_VOLUME_TO_BUY": 0.001,
         "MIN_VOLUME_TO_SELL": 0.001

      },
      "stepgain": {
         "BTC_TRADING_LIMIT": 0.02,
         "PERIOD": 15,
         "BUYLVL1": 0.6,
         "BUYLVL2": 2,
         "BUYLVL3": 70,
         "SELLLVL1": 0.6,
         "SELLLVL2": 2,
         "SELLLVL3": 70,
         "BUYLVL": 2,
         "SELLLVL": 2,
         "LASTPOINTS": 5,
         "AVGPOINTS": 250,
         "AVGMINIMUM": 0.00000001,
         "EMA1": 2000,
         "EMA2": 1000,
         "PANIC_SELL": false,
         "STOP_LIMIT": 60,
         "BUY_ENABLED": true,
         "MIN_VOLUME_TO_BUY": 0.001,
         "MIN_VOLUME_TO_SELL": 0.001

      },
      "bbgain": {
         "BTC_TRADING_LIMIT": 0.01,
         "PERIOD": 15,
         "GAIN": 0.6,
         "HIGH_BB": 45,
         "LOW_BB": 45,
         "STDV": 2,
         "SMAPERIOD": 150,
         "EMA1": 200,
         "EMA2": 50,
         "PANIC_SELL": false,
         "DOUBLE_UP": true,
         "STOP_LIMIT": 60,
         "BUY_ENABLED": true,
         "MIN_VOLUME_TO_BUY": 0.001,
         "MIN_VOLUME_TO_SELL": 0.001

      },
      "gainbb": {
         "BTC_TRADING_LIMIT": 0.01,
         "PERIOD": 15,
         "BUY_LEVEL": 2,
         "GAIN": 0.6,
         "HIGH_BB": 45,
         "LOW_BB": 40,
         "STDV": 2,
         "SMAPERIOD": 150,
         "EMA1": 200,
         "EMA2": 50,
         "PANIC_SELL": false,
         "DOUBLE_UP": true,
         "STOP_LIMIT": 60,
         "BUY_ENABLED": true,
         "MIN_VOLUME_TO_BUY": 0.001,
         "MIN_VOLUME_TO_SELL": 0.001

      },
      "bbstepgain": {
         "BTC_TRADING_LIMIT": 0.005,
         "PERIOD": 15,
         "HIGH_BB": 45,
         "LOW_BB": 45,
         "STDV": 2,
         "SMAPERIOD": 150,
         "SELLLVL1": 0.6,
         "SELLLVL2": 2,
         "SELLLVL3": 70,
         "SELLLVL": 2,
         "LASTPOINTS": 5,
         "AVGPOINTS": 250,
         "AVGMINIMUM": 0.00000001,
         "EMA1": 2000,
         "EMA2": 1000,
         "PANIC_SELL": false,
         "DOUBLE_UP": true,
         "STOP_LIMIT": 60,
         "BUY_ENABLED": true,
         "MIN_VOLUME_TO_BUY": 0.001,
         "MIN_VOLUME_TO_SELL": 0.001

      },
      "stepgainbb": {
         "BTC_TRADING_LIMIT": 0.001,
         "PERIOD": 15,
         "HIGH_BB": 49,
         "LOW_BB": 40,
         "STDV": 2,
         "SMAPERIOD": 150,
         "BUYLVL1": 0.6,
         "BUYLVL2": 2,
         "BUYLVL3": 70,
         "BUYLVL": 2,
         "GAIN": 0.6,
         "LASTPOINTS": 5,
         "AVGPOINTS": 250,
         "AVGMINIMUM": 0.00000001,
         "EMA1": 2000,
         "EMA2": 1000,
         "PANIC_SELL": false,
         "DOUBLE_UP": true,
         "STOP_LIMIT": 60,
         "BUY_ENABLED": true,
         "MIN_VOLUME_TO_BUY": 0.001,
         "MIN_VOLUME_TO_SELL": 0.001

      },

      "bbpp": {
         "BTC_TRADING_LIMIT": 0.01,
         "PERIOD": 15,
         "GAIN": 0.1,
         "HIGH_BB": 40,
         "LOW_BB": 40,
         "STDV": 2,
         "SMAPERIOD": 150,
         "PP_SELL": 0.12345678,
         "PANIC_SELL": false,
         "DOUBLE_UP": false,
         "STOP_LIMIT": 60,
         "BUY_ENABLED": true,
         "MIN_VOLUME_TO_BUY": 0.001,
         "MIN_VOLUME_TO_SELL": 0.001

      },
      "ppbb": {
         "BTC_TRADING_LIMIT": 0.01,
         "PERIOD": 15,
         "GAIN": 0.1,
         "HIGH_BB": 40,
         "LOW_BB": 40,
         "STDV": 2,
         "SMAPERIOD": 150,
         "PP_BUY": 0.00000001,
         "PANIC_SELL": false,
         "DOUBLE_UP": false,
         "STOP_LIMIT": 60,
         "BUY_ENABLED": true,
         "MIN_VOLUME_TO_BUY": 0.001,
         "MIN_VOLUME_TO_SELL": 0.001

      },
      "gainstepgain": {
         "BTC_TRADING_LIMIT": 0.01,
         "HIGH_BB": 45,
         "LOW_BB": 45,
         "STDV": 2,
         "SMAPERIOD": 150,
         "PERIOD": 15,
         "SELLLVL1": 0.6,
         "SELLLVL2": 2,
         "SELLLVL3": 70,
         "SELLLVL": 2,
         "BUY_LEVEL": 2,
         "LASTPOINTS": 5,
         "AVGPOINTS": 250,
         "AVGMINIMUM": 0.00000001,
         "EMA1": 200,
         "EMA2": 50,
         "PANIC_SELL": false,
         "DOUBLE_UP": true,
         "STOP_LIMIT": 60,
         "BUY_ENABLED": true,
         "MIN_VOLUME_TO_BUY": 0.001,
         "MIN_VOLUME_TO_SELL": 0.001

      },
      "stepgaingain": {
         "BTC_TRADING_LIMIT": 0.01,
         "PERIOD": 15,
         "BUYLVL1": 0.6,
         "BUYLVL2": 2,
         "BUYLVL3": 70,
         "BUYLVL": 2,
         "GAIN": 2,
         "LASTPOINTS": 5,
         "AVGPOINTS": 250,
         "AVGMINIMUM": 0.00000001,
         "EMA1": 2000,
         "EMA2": 1000,
         "PANIC_SELL": false,
         "STOP_LIMIT": 60,
         "BUY_ENABLED": true,
         "MIN_VOLUME_TO_BUY": 0.001,
         "MIN_VOLUME_TO_SELL": 0.001

      },
      "gainpp": {
         "BTC_TRADING_LIMIT": 0.01,
         "PERIOD": 15,
         "BUY_LEVEL": 0.1,
         "PP_SELL": 0.12345678,
         "EMA1": 2000,
         "EMA2": 1000,
         "PANIC_SELL": false,
         "STOP_LIMIT": 60,
         "BUY_ENABLED": true,
         "MIN_VOLUME_TO_BUY": 0.001,
         "MIN_VOLUME_TO_SELL": 0.001

      },
      "ppgain": {
         "BTC_TRADING_LIMIT": 0.01,
         "PERIOD": 15,
         "GAIN": 2,
         "PP_BUY": 0.12345678,
         "EMA1": 200,
         "EMA2": 50,
         "PANIC_SELL": false,
         "DOUBLE_UP": false,
         "STOP_LIMIT": 60,
         "BUY_ENABLED": true,
         "MIN_VOLUME_TO_BUY": 0.001,
         "MIN_VOLUME_TO_SELL": 0.001

      },
      "stepgainpp": {
         "BTC_TRADING_LIMIT": 0.01,
         "PERIOD": 15,
         "BUYLVL1": 1,
         "BUYLVL2": 3,
         "BUYLVL3": 5,
         "BUYLVL": 2,
         "PP_SELL": 0.1,
         "LASTPOINTS": 5,
         "AVGPOINTS": 250,
         "AVGMINIMUM": 0.00000001,
         "EMA1": 2000,
         "EMA2": 1000,
         "PANIC_SELL": false,
         "DOUBLE_UP": false,
         "STOP_LIMIT": 60,
         "BUY_ENABLED": true,
         "MIN_VOLUME_TO_BUY": 0.001,
         "MIN_VOLUME_TO_SELL": 0.001

      },
      "ppstepgain": {
         "BTC_TRADING_LIMIT": 0.01,
         "PERIOD": 15,
         "SELLLVL1": 2,
         "SELLLVL2": 5,
         "SELLLVL3": 10,
         "SELLLVL": 2,
         "PP_BUY": 0.00000001,
         "LASTPOINTS": 5,
         "AVGPOINTS": 250,
         "AVGMINIMUM": 0.00000001,
         "EMA1": 2000,
         "EMA2": 1000,
         "PANIC_SELL": false,
         "DOUBLE_UP": false,
         "STOP_LIMIT": 60,
         "BUY_ENABLED": true,
         "MIN_VOLUME_TO_BUY": 0.001,
         "MIN_VOLUME_TO_SELL": 0.001

      }


   },

   "optionals": {
      "toOverride": {
         "BOUGHT_PRICE": 0.104744

      }
   }


}

11
Technical Support & Development / 5.x "loading exchange bittrex" forever
« on: September 15, 2017, 12:45:25 AM »
Hi all,

anyone had this issue?

I can see
Loading config...
Loading Exchange Bittrex
and it stays like this forever...

Thanks for any help!

12
General Discussion / Re: Separate folder to run gunbot or using only one?
« on: September 02, 2017, 11:14:58 AM »
vicdr,

that's exactly how I run it for that exact same purpose... using bb on multiple pairs but trying to tweak for each coin without affecting all pairs... But was curious on how people are using it.


13
"BUY_LEVEL": 0.1,
"GAIN": 0.1,

Can anyone explain those variables?

thank you :)

14
General Discussion / Re: My first results with Gunbot 4.0.1 patch #4013
« on: August 27, 2017, 04:44:28 AM »
Hi Guys,

The test was made using first 4.0.1 then 4.0.2

When the cycles were not running correctly - and even when the process seemed to be dead - the bot made some good trades.

I'm in travel, so there's almost a week I'm not running bots. I've been reading things about 4.0.3/4/5 versions but I still could not test them. I hope I'm able to run the tests in 4.0.1/2 in two days, then I'll be back to inform the results.

Ready for feedback? :)

15
General Discussion / Re: Time Delay Price 4.0.4
« on: August 27, 2017, 04:32:58 AM »
I did played with the 25000 but it doesn't seems to change anything... it refreshes really quickly, guess around 2-3 sec at most.

16
4.0.5 :)


17
General Discussion / Re: Time Delay Price 4.0.4
« on: August 26, 2017, 07:59:12 PM »
I also was also wondering and I find differences between running on Poloniex and Bittrex, on Bittrex it is super fast like every few seconds it refreshes whereas Poloniex it is very slow. I have seen bunch of settings in "bot" section of config you might have to try them.

Good luck!

Do you have any link to documentation for "bot" section? They are pretty empty to me when I use the gunfigurator... :\

Thank you!

18
General Discussion / Separate folder to run gunbot or using only one?
« on: August 26, 2017, 01:06:05 PM »
I was wondering how you run your gunbot?

one gunbot.exe for each pair or you put everything in the same config? I feel the need to separate them since something I want to put .01 btc on a pair and sometimes .05 on another one but using the same strategy.

But I was wondering if it can screw things up if we run multiple gunbot.exe? like the number of requests each second and so on.

I renamed the gunthy.exe to the pair I am trading, makes it easier to find out which one is which one in a listing of windows... ;)

Thanks for any feedback!

19
Technical Support & Development / Re: on bittrex while getting ema1
« on: August 25, 2017, 12:31:54 PM »
What is the purpose to use 45/45? I mean, you buy at 45% over the lower bb and sell at 45% under bb... Seems it makes no sense? Or I don't understand the 45% correctly? Think I read somewhere than using 10% low bb will buy at 10% over the low bb.. Which makes sens because you don't want to buy when the price is high... no?

Thanks for any clarification!

20
Technical Support & Development / Re: Stepgain 4.0.4
« on: August 25, 2017, 04:11:43 AM »
I am a little lost too on the stepgain configuration. Each time I used the stepgain in versin 4.0.4/.5 always have error..

But curious too as why the buylvl/selllvl 3...

Can you explain lastpoints and avgpoints?
Is EMA 4 means 4 hours? Ema 1000 means 1000 hours?
Why EMA 2000 and 1000? are you able to do some trade using that long EMA period?

Thanks :)

Pages: [1] 2