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

Pages: [1]
1
Technical Support & Development / Re: Is cryptopia working for you guys?
« on: November 07, 2017, 03:41:11 AM »
I got leeview on telegram looking it over for me now. I think the problem might be with time zones since we are awake at different times. Thank you for the help ))

2
Beginners & Help / Re: How do i contact leeview on telegram?
« on: November 07, 2017, 03:39:51 AM »
Thank you, I got in touch with leeview ))

3
Technical Support & Development / Re: Is cryptopia working for you guys?
« on: November 06, 2017, 10:54:23 PM »
So finally the GunBot XT started to do something and it gave me an error message saying that "ping not available" So that has got to mean that my bot is not being able to communicate to cryptopia for some reason. Ive been trying to contact support help and I am not getting an answer. I am starting to think this company is scamming people out of their money. I dont understand why this is not working. Please can anyone help? My api key is spot on every letter number and symbol is spot on. I dont know what else to do. Is tech support on here can they see this and help me?

4
Beginners & Help / How do i contact leeview on telegram?
« on: November 06, 2017, 10:35:29 PM »
I received an email from the support and they told me if I would like anymore help concerning my issue that I can contact the telegram service and look for @leeview and that person will help me live. But there was no link to the telegram, where can I find that at?

5
Technical Support & Development / Where is the telegram service?
« on: November 06, 2017, 10:15:34 PM »
I received an email from the support and they told me if I would like anymore help concerning my issue that I can contact the telegram service and look for @leeview and that person will help me live. But there was no link to the telegram, where can I find that at?

6
Technical Support & Development / Is cryptopia working for you guys?
« on: November 06, 2017, 09:47:24 PM »
I bought the gunBot like maybe 4 days ago been trying to get it running ever since on my raspberry pi, my mac machine, and then i just went out and bought a brand new windows computer and it still is not working. I even downloaded the new XT edition, and when I hit runbot after putting in all my settings and pairs it wont load. It will just say loading config... loading exchange cryptopia. So I'm suspecting that it has something to do with the exchange not responding. Is anyone else having problems with cryptopia?

7
Hello Everyone,
So I've been running this gunbot version 5.0.5.5 for 2 days on my raspberry pi 3 and it has not made one trade yet. I think I have my pairs on some pretty active coins and I've set my buy level pretty low in my stepgain strategy so I should see something happening, but nothing is going on. Can anyone please look over my code and help me? Thank you for any help I really do appreciate it.

{
   "client": {
      "port": 3000,
      "hostname": "127.0.0.1"
   },
   "ws": {
      "port": 5000,
      "hostname": "127.0.0.1"
   },
   "bot": {
      "debug": true,
      "BOT_DELAY": 1,
      "interval_ticker_update": 25000,
      "period_storage_ticker": 300,
      "timeout_buy": 60000,
      "timeout_sell": 60000,
      "TV_GAIN": 0.6,
      "TV_TRADING_LIMIT_BUY": 0.001,
      "TV_PYRAMID": false,
      "TV_TRADING_LIMIT_SELL": 0.001,
      "TV_PROTECTION": true,
      "RETRY_TV_ORDER": false,
      "VERBOSE": true,
      "WATCH_MODE": false
   },
   "exchanges": {
      "bittrex": {
         "key": "YOUR_API_KEY_HERE",
         "secret": "YOUR_SECRET_KEY_HERE"
      },
      "cryptopia": {
         "key": "public key",
         "secret": "secret key"
      },
      "kraken": {
         "key": "YOUR_API_KEY_HERE",
         "secret": "YOUR_SECRET_KEY_HERE"
      },
      "poloniex": {
         "key": "YOUR_API_KEY_HERE",
         "secret": "YOUR_SECRET_KEY_HERE"
      }
   },
   "pairs": {
      "bittrex": {
         "BTC-LTC": {
            "strategy": "bb"
         }
      },
      "cryptopia": {
         "42_BTC": {
            "strategy": "stepgain"
         },
         "OMG_BTC": {
            "strategy": "stepgain"
         },
         "DGB_BTC": {
            "strategy": "stepgain"
         },   
         "EVR_BTC": {
            "strategy": "stepgain"
         },   
         "ALIS_BTC": {
            "strategy": "stepgain"
         }      
      },
      "kraken": {
         "DASHEUR": {
            "strategy": "bb"
         },
         "XLTCXXBT": {
            "strategy": "bb"
         },
         "XETHXXBT": {
            "strategy": "bb"
         }
      },
      "poloniex": {
         "BTC_XMR": {
            "strategy": "bb"
         },
         "BTC_ETH": {
            "strategy": "bb"
         },
         "eBTC_ETC": {
            "strategy": "bb"
         }
      }
   },
   "imap_listener": {
      "enabled": false,
      "authorized_froms": "[\"noreply@tradingview.com\"]",
      "user": "YOUR_EMAIL_HERE",
      "password": "YOUR_PASSOWORD_HERE",
      "host": "imap.gmail.com",
      "port": 993,
      "tls": true,
      "tlsOptions": {
         "rejectUnauthorized": false
      }
   },
   "strategies": {
      "bb": {
         "TRADING_LIMIT": 0.001,
         "PERIOD": 5,
         "BUY_LEVEL": 0.1,
         "GAIN": 0.4,
         "EMA1": 12,
         "EMA2": 4,
         "HIGH_BB": 10,
         "LOW_BB": 4,
         "STDV": 2,
         "SMAPERIOD": 10,
         "BUYLVL1": 0.4,
         "BUYLVL2": 2,
         "BUYLVL3": 70,
         "SELLLVL1": 0.6,
         "SELLLVL2": 2,
         "SELLLVL3": 70,
         "BUYLVL": 2,
         "SELLLVL": 2,
         "LASTPOINTS": 5,
         "AVGPOINTS": 250,
         "AVGMINIMUM": 0.00000001,
         "GUNTHY_API": false,
         "PP_BUY": 0.00000001,
         "PP_SELL": 0.12345678,
         "PANIC_SELL": false,
         "DOUBLE_UP": false,
         "STOP_LIMIT": 60,
         "BUY_ENABLED": true,
         "MIN_VOLUME_TO_BUY": 0.0001,
         "MIN_VOLUME_TO_SELL": 0.0001

         
      },
      "gain": {
         "TRADING_LIMIT": 0.001,
         "PERIOD": 5,
         "BUY_LEVEL": 0.1,
         "GAIN": 0.4,
         "EMA1": 12,
         "EMA2": 4,
         "HIGH_BB": 10,
         "LOW_BB": 10,
         "STDV": 2,
         "SMAPERIOD": 10,
         "BUYLVL1": 0.4,
         "BUYLVL2": 2,
         "BUYLVL3": 70,
         "SELLLVL1": 0.6,
         "SELLLVL2": 2,
         "SELLLVL3": 70,
         "BUYLVL": 2,
         "SELLLVL": 2,
         "LASTPOINTS": 5,
         "AVGPOINTS": 250,
         "AVGMINIMUM": 0.00000001,
         "GUNTHY_API": false,
         "PP_BUY": 0.00000001,
         "PP_SELL": 0.12345678,
         "PANIC_SELL": false,
         "DOUBLE_UP": false,
         "STOP_LIMIT": 60,
         "BUY_ENABLED": true,
         "MIN_VOLUME_TO_BUY": 0.0001,
         "MIN_VOLUME_TO_SELL": 0.0001

         
      },
      "pp": {
         "TRADING_LIMIT": 0.001,
         "PERIOD": 5,
         "BUY_LEVEL": 0.1,
         "GAIN": 0.6,
         "EMA1": 24,
         "EMA2": 12,
         "HIGH_BB": 40,
         "LOW_BB": 40,
         "STDV": 2,
         "SMAPERIOD": 20,
         "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,
         "GUNTHY_API": false,
         "PP_BUY": 0.00000001,
         "PP_SELL": 0.12345678,
         "PANIC_SELL": false,
         "DOUBLE_UP": false,
         "STOP_LIMIT": 60,
         "BUY_ENABLED": true,
         "MIN_VOLUME_TO_BUY": 0.0001,
         "MIN_VOLUME_TO_SELL": 0.0001


         
      },
      "stepgain": {
         "TRADING_LIMIT": 0.01,
         "PERIOD": 5,
         "BUY_LEVEL": 0.1,
         "GAIN": 0.6,
         "EMA1": 2000,
         "EMA2": 1000,
         "HIGH_BB": 40,
         "LOW_BB": 40,
         "STDV": 2,
         "SMAPERIOD": 20,
         "BUYLVL1": 0.5,
         "BUYLVL2": 3.9,
         "BUYLVL3": 6.9,
         "SELLLVL1": 2.14,
         "SELLLVL2": 4.28,
         "SELLLVL3": 8.56,
         "BUYLVL": 1,
         "SELLLVL": 3,
         "LASTPOINTS": 5,
         "AVGPOINTS": 250,
         "AVGMINIMUM": 0.00000001,
         "GUNTHY_API": false,
         "PP_BUY": 0.00000001,
         "PP_SELL": 0.12345678,
         "PANIC_SELL": false,
         "DOUBLE_UP": false,
         "STOP_LIMIT": 99,
         "BUY_ENABLED": true,
         "MIN_VOLUME_TO_BUY": 0.005,
         "MIN_VOLUME_TO_SELL": 0.005


         
      },
      "bbgain": {
         "TRADING_LIMIT": 0.001,
         "PERIOD": 5,
         "BUY_LEVEL": 0.1,
         "GAIN": 0.6,
         "EMA1": 24,
         "EMA2": 12,
         "HIGH_BB": 40,
         "LOW_BB": 40,
         "STDV": 2,
         "SMAPERIOD": 20,
         "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,
         "GUNTHY_API": false,
         "PP_BUY": 0.00000001,
         "PP_SELL": 0.12345678,
         "PANIC_SELL": false,
         "DOUBLE_UP": false,
         "STOP_LIMIT": 60,
         "BUY_ENABLED": true,
         "MIN_VOLUME_TO_BUY": 0.0001,
         "MIN_VOLUME_TO_SELL": 0.0001
      },
      "gainbb": {
         "TRADING_LIMIT": 0.001,
         "PERIOD": 5,
         "BUY_LEVEL": 0.1,
         "GAIN": 0.6,
         "EMA1": 24,
         "EMA2": 12,
         "HIGH_BB": 40,
         "LOW_BB": 40,
         "STDV": 2,
         "SMAPERIOD": 20,
         "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,
         "GUNTHY_API": false,
         "PP_BUY": 0.00000001,
         "PP_SELL": 0.12345678,
         "PANIC_SELL": false,
         "DOUBLE_UP": false,
         "STOP_LIMIT": 60,
         "BUY_ENABLED": true,
         "MIN_VOLUME_TO_BUY": 0.0001,
         "MIN_VOLUME_TO_SELL": 0.0001
      },
      "bbstepgain": {
         "TRADING_LIMIT": 0.001,
         "PERIOD": 5,
         "BUY_LEVEL": 0.1,
         "GAIN": 0.6,
         "EMA1": 24,
         "EMA2": 12,
         "HIGH_BB": 30,
         "LOW_BB": 30,
         "STDV": 2,
         "SMAPERIOD": 20,
         "BUYLVL1": 0.6,
         "BUYLVL2": 1.2,
         "BUYLVL3": 3,
         "SELLLVL1": 1.5,
         "SELLLVL2": 5,
         "SELLLVL3": 50,
         "BUYLVL": 2,
         "SELLLVL": 2,
         "LASTPOINTS": 5,
         "AVGPOINTS": 250,
         "AVGMINIMUM": 0.00000001,
         "GUNTHY_API": false,
         "PP_BUY": 0.00000001,
         "PP_SELL": 0.12345678,
         "PANIC_SELL": false,
         "DOUBLE_UP": false,
         "STOP_LIMIT": 60,
         "BUY_ENABLED": true,
         "MIN_VOLUME_TO_BUY": 0.0001,
         "MIN_VOLUME_TO_SELL": 0.0001
      },
      "stepgainbb": {
         "TRADING_LIMIT": 0.001,
         "PERIOD": 5,
         "BUY_LEVEL": 0.1,
         "GAIN": 0.6,
         "EMA1": 24,
         "EMA2": 12,
         "HIGH_BB": 40,
         "LOW_BB": 40,
         "STDV": 2,
         "SMAPERIOD": 20,
         "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,
         "GUNTHY_API": false,
         "PP_BUY": 0.00000001,
         "PP_SELL": 0.12345678,
         "PANIC_SELL": false,
         "DOUBLE_UP": false,
         "STOP_LIMIT": 60,
         "BUY_ENABLED": true,
         "MIN_VOLUME_TO_BUY": 0.0001,
         "MIN_VOLUME_TO_SELL": 0.0001
      },
      "bbpp": {
         "TRADING_LIMIT": 0.001,
         "PERIOD": 5,
         "BUY_LEVEL": 0.1,
         "GAIN": 0.6,
         "EMA1": 24,
         "EMA2": 12,
         "HIGH_BB": 40,
         "LOW_BB": 40,
         "STDV": 2,
         "SMAPERIOD": 20,
         "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,
         "GUNTHY_API": false,
         "PP_BUY": 0.00000001,
         "PP_SELL": 0.12345678,
         "PANIC_SELL": false,
         "DOUBLE_UP": false,
         "STOP_LIMIT": 60,
         "BUY_ENABLED": true,
         "MIN_VOLUME_TO_BUY": 0.0001,
         "MIN_VOLUME_TO_SELL": 0.0001
      },
      "ppbb": {
         "TRADING_LIMIT": 0.001,
         "PERIOD": 5,
         "BUY_LEVEL": 0.1,
         "GAIN": 0.6,
         "EMA1": 24,
         "EMA2": 12,
         "HIGH_BB": 40,
         "LOW_BB": 40,
         "STDV": 2,
         "SMAPERIOD": 20,
         "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,
         "GUNTHY_API": false,
         "PP_BUY": 0.00000001,
         "PP_SELL": 0.12345678,
         "PANIC_SELL": false,
         "DOUBLE_UP": false,
         "STOP_LIMIT": 60,
         "BUY_ENABLED": true,
         "MIN_VOLUME_TO_BUY": 0.0001,
         "MIN_VOLUME_TO_SELL": 0.0001
      },
      "gainstepgain": {
         "TRADING_LIMIT": 0.001,
         "PERIOD": 5,
         "BUY_LEVEL": 0.1,
         "GAIN": 0.6,
         "EMA1": 24,
         "EMA2": 12,
         "HIGH_BB": 40,
         "LOW_BB": 40,
         "STDV": 2,
         "SMAPERIOD": 20,
         "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,
         "GUNTHY_API": false,
         "PP_BUY": 0.00000001,
         "PP_SELL": 0.12345678,
         "PANIC_SELL": false,
         "DOUBLE_UP": false,
         "STOP_LIMIT": 60,
         "BUY_ENABLED": true,
         "MIN_VOLUME_TO_BUY": 0.0001,
         "MIN_VOLUME_TO_SELL": 0.0001
      },
      "stepgaingain": {
         "TRADING_LIMIT": 0.001,
         "PERIOD": 5,
         "BUY_LEVEL": 0.1,
         "GAIN": 0.6,
         "EMA1": 24,
         "EMA2": 12,
         "HIGH_BB": 40,
         "LOW_BB": 40,
         "STDV": 2,
         "SMAPERIOD": 20,
         "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,
         "GUNTHY_API": false,
         "PP_BUY": 0.00000001,
         "PP_SELL": 0.12345678,
         "PANIC_SELL": false,
         "DOUBLE_UP": false,
         "STOP_LIMIT": 60,
         "BUY_ENABLED": true,
         "MIN_VOLUME_TO_BUY": 0.0001,
         "MIN_VOLUME_TO_SELL": 0.0001
      },
      "gainpp": {
         "TRADING_LIMIT": 0.001,
         "PERIOD": 5,
         "BUY_LEVEL": 0.1,
         "GAIN": 0.6,
         "EMA1": 24,
         "EMA2": 12,
         "HIGH_BB": 40,
         "LOW_BB": 40,
         "STDV": 2,
         "SMAPERIOD": 20,
         "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,
         "GUNTHY_API": false,
         "PP_BUY": 0.00000001,
         "PP_SELL": 0.12345678,
         "PANIC_SELL": false,
         "DOUBLE_UP": false,
         "STOP_LIMIT": 60,
         "BUY_ENABLED": true,
         "MIN_VOLUME_TO_BUY": 0.0001,
         "MIN_VOLUME_TO_SELL": 0.0001
      },
      "ppgain": {
         "TRADING_LIMIT": 0.001,
         "PERIOD": 5,
         "BUY_LEVEL": 0.1,
         "GAIN": 0.6,
         "EMA1": 24,
         "EMA2": 12,
         "HIGH_BB": 40,
         "LOW_BB": 40,
         "STDV": 2,
         "SMAPERIOD": 20,
         "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,
         "GUNTHY_API": false,
         "PP_BUY": 0.00000001,
         "PP_SELL": 0.12345678,
         "PANIC_SELL": false,
         "DOUBLE_UP": false,
         "STOP_LIMIT": 60,
         "BUY_ENABLED": true,
         "MIN_VOLUME_TO_BUY": 0.0001,
         "MIN_VOLUME_TO_SELL": 0.0001
      },
      "stepgainpp": {
         "TRADING_LIMIT": 0.001,
         "PERIOD": 5,
         "BUY_LEVEL": 0.1,
         "GAIN": 0.6,
         "EMA1": 24,
         "EMA2": 12,
         "HIGH_BB": 40,
         "LOW_BB": 40,
         "STDV": 2,
         "SMAPERIOD": 20,
         "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,
         "GUNTHY_API": false,
         "PP_BUY": 0.00000001,
         "PP_SELL": 0.12345678,
         "PANIC_SELL": false,
         "DOUBLE_UP": false,
         "STOP_LIMIT": 60,
         "BUY_ENABLED": true,
         "MIN_VOLUME_TO_BUY": 0.0001,
         "MIN_VOLUME_TO_SELL": 0.0001
      },
      "ppstepgain": {
         "TRADING_LIMIT": 0.001,
         "PERIOD": 5,
         "BUY_LEVEL": 0.1,
         "GAIN": 0.6,
         "EMA1": 24,
         "EMA2": 12,
         "HIGH_BB": 40,
         "LOW_BB": 40,
         "STDV": 2,
         "SMAPERIOD": 20,
         "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,
         "GUNTHY_API": false,
         "PP_BUY": 0.00000001,
         "PP_SELL": 0.12345678,
         "PANIC_SELL": false,
         "DOUBLE_UP": false,
         "STOP_LIMIT": 60,
         "BUY_ENABLED": true,
         "MIN_VOLUME_TO_BUY": 0.0001,
         "MIN_VOLUME_TO_SELL": 0.0001
      }

   },
   "optionals": {
      "toOverride": {
         "BOUGHT_PRICE": 0.104744
      }
   }
}

8
So I've been running this gun bot on my raspberry pi 3 and I've been getting this "type error: cannot read property 'length' of null" that will restart my bot and then it will have to reload the config. Is this normal? How can I stop this? Is this the reason why my bot has yet to make a trade and I've had it on for over two days? I also made the trading pairs to be with coins that are trade a lot in 24 hour volume, so I should see some trade especially with my stepgain strategy Buy in is set to 0.5. Thanks for any help  everyone.


Pages: [1]