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 - Lea N.

Pages: [1]
2
Beginners & Help / Re: retrieve old license from 2017
« on: June 12, 2020, 02:44:24 PM »
Hi all,

would also be interested how it works - as I also have a license back from 2017.

Thanks,
Jay

Send me a PM here please

3
Update: Our devs have found the issue and fixed it. It'll be included in the next stable release (or PM me to get the link to the channel where beta builds are getting shared)

4
Hi there,

Actually it's a rounding issue which will require a fix.

Your bot has sent this to the exchange:
Original volume: 11.32

While your Link balance is actually this:
11.31837 

We're on it to get it fixed asap.

5
General Discussion / Re: Binance API key change
« on: August 06, 2018, 02:09:17 PM »
I just want to tell a big THANK YOU to Cryptosticks and Exquitas who helped me by changing my Binance API key and getting my GunBOT working again. Thanks guys, keep up the good work !  ;D

You're welcome, have fun :)

6
General Discussion / Re: Tradingview information
« on: November 27, 2017, 07:55:52 PM »
Hello,

Here's a thread I did in September on this Topic: https://gunthy.org/forum/index.php/topic,1401.msg7223.html

I've currently a Tradingview specialized Telegram Group, if you're interested and want to purchase it, you can do so here: https://crypto-tradingbot.com

Tradingview basically let's you run customized strategies that Gunbot doesn't have. With all the possibilities that are there, they are basically limitless.

You can also PM me directly on Telegram if you need further information: https://t.me/exquitas

7
Beginners & Help / Re: ExQ's Tradingview Setup Guide & Noobconfig
« on: October 14, 2017, 08:58:43 PM »
After few hours, Trading View Addon stop alone with error message "Time out while authenticating with server...."

Hello, sorry for replying so late, please pm me over Telegram @exquitas

8
Beginners & Help / Re: ExQ's Tradingview Setup Guide & Noobconfig
« on: September 25, 2017, 06:12:42 AM »
Anyone who had the same problem as me, that in the alert setup the second plot to choose (the one the first one shall cross) only has 2 and not 3 options:
In the script you can title the plots
Code: [Select]
plot(macd, title="b", color=red)
plot(signal, title="c", color=yellow)

Thank you!

Implemented it to my guide to make it easier!

Code: [Select]
//@version=1
study("MACD")
fast = 5, slow = 10
fastMA = ema(close, fast)
slowMA = ema(close, slow)
macd = fastMA - slowMA
signal = sma(macd, 9)
hist = macd - signal
plot(hist, title="nope", color=hist>0 and hist[0]>hist[1]?#00ff00:hist<=0 and hist[0]<hist[1]?#f72e2e:hist>0 and hist[0]<hist[1]?#008000:hist<0 and hist[0]>hist[1]?#7f0000:white, style=histogram)
plot(macd, title="red line", color=red)
plot(signal, title="yellow line", color=yellow)

9
Beginners & Help / Re: ExQ's Tradingview Setup Guide & Noobconfig
« on: September 24, 2017, 10:07:39 PM »
The highly anticipated new version of my configuration/strategy on Tradingview:


So what am I using now? Basically I'm using MACD to detect pumps (to buy) or dumps (to sell).

I works similar to my first configuration but more efficient and aggressive.


So here's my current config in action:

photo upload



Click where i've marked the red "1" to set Period to 5minutes.
Then select where i've marked the red "2" to set the Candles to Heikin Ashi

Copy/Paste this configuration in Pinescript:

Code: [Select]
//@version=1
study("MACD")
fast = 5, slow = 10
fastMA = ema(close, fast)
slowMA = ema(close, slow)
macd = fastMA - slowMA
signal = sma(macd, 9)
hist = macd - signal
plot(hist, title="nope", color=hist>0 and hist[0]>hist[1]?#00ff00:hist<=0 and hist[0]<hist[1]?#f72e2e:hist>0 and hist[0]<hist[1]?#008000:hist<0 and hist[0]>hist[1]?#7f0000:white, style=histogram)
plot(macd, title="red line", color=red)
plot(signal, title="yellow line", color=yellow)

Code updated, there will now be names visible and not "PLOT"

And select add to chart.

Setting up alerts:



Select in the first dropdown MACD and in the box on the right after selecting it Plot. Now which one do you have to chose?
Well i had to run some tests so I've made it easier for you.
Look at the red darts. For the first MACD you'll have to select the second Plot (it's the red line in the MACD indicator = Signal)
For the second MACD you'll have to select the third Plot (it's the yellow line in the MACD indicator = Signal)

Setting up the Sell Alert is the same thing, you'll only have to set "Crossing Down" instead of "Crossing Up" and change the message to SELL_BITTREX_BTC-ETH




In short: it will buy when the MACD Signal Trend detects an uptrending or sells when it detects a downtrend.



Additional notes (MUST READ):
The disclamer from my first post is still active.
In a downtrending market it is possible that this strategy still buys if there are some uptrends.

It will average down itself. So please set your TV_TRADING_LIMIT to low when the global trend is going down and to high when the trend is pumping.
Why am I saying this? I've had coins that were bought 10-15 times before a sell (at great profit) occurred.

Below is a screenshot as proof that the setup works. As you can see in it, before the first sell it has bought twice then sold all at once at profit.
The second sell occurred right before the trend dumped (even if the indicator shows a green candle, right afterwards it dropped)




In 505 there will be an option to turn double buys off, in my opinion leave it on because it averages out itself, IF you didn't choose to trade a shitcoin.

This setup works best on coins that move up and down constantly (NOT Doge or BCN) or extremely upwards.

Also if you're interested in buying the Plugin, you can PM me here in the Forums or write me on Telegram @exquitas or by clicking here --> https://t.me/exquitas or by visiting my website here --> https://www.crypto-tradingbot.com

Happy trading :)

10
Beginners & Help / Re: ExQ's Tradingview Setup Guide & Noobconfig
« on: September 20, 2017, 04:25:29 AM »
You can use this TV strat, to backtest basic EMA crossings (5, 10) of Exquitas' guide. Dont forget to set the EMA source to "closed", as this is used in the strat described in the tutorial.

Tradingview Basic EMA Crossing Backtest
https://www.tradingview.com/script/yNNhMRlp-Gunbot-Basic-EMA-Crossing/

Thanks for backtesting!

You have to consider a few things while doing backtests:
- Gunbot doesn't sell at loss, it will only buy twice or more when the coin value dropped (double up), so the "Profitable" Value is not correct at all and will be 100% on all coins. Tradingview doesn't know that and will calculate every trade opportunity, even those at loss.
- I'm using High BB as sell point through EMA to maximize profits per gain and pure EMA crossing on some exception coins (those where I know I do enough Profit with EMA Crossing and they will almost never cross high BB)

11
Beginners & Help / ExQ's Tradingview Setup Guide & Noobconfig
« on: September 19, 2017, 06:35:35 PM »
Hello ladies and gentlemen,

Due to massive requests from the Gunbot Elite Group and our main TheBotFather Group, I'm releasing as promised my Tradingview configuration. (Thanks guys, you're awesome :) )

Disclamers:
1. I'm no Pro programmer so I've kept this setup as basic as possible (also because I simply don't have the patience to write in Pinescript)
2. This setup as it is will use a similar technique as double_up so count some funds in
3. I've made gains in between 5%-20% with this setup, it is possible that you don't reach the same results due to market fluctuation
4. I'm not responsible in any kind of loss you make with this setup
5. The Setup is not perfect at all but a really good start to get in the Tradingview world and to get some impressive gains

============================================

Please consider donating even a small amount to me, I've lost quite a bit of BTC when running those tests for the community due to limited funds (had to sell at loss from time to time to keep running tests). Any amount will be appreciated!
BTC 1HfxfquxyA9zyS5ABBPBbDbhxQQvDYjBS5
ETH 0x385564A318EFF945f7a92EC650Dd600F83F66296
LTC LXK8px4wdwpwWpGSg5LJuVf1A53tn1zAH9
ARK AKqxYadwuQ9UMoekVtpoXpqyb8j2uytUrH

============================================

UPDATE: If you don't have the Tradingview Plugin activated yet, I got approved from Gunthar himself to sell them. They cost 0.05 BTC which is seriously nothing compared to the possibilities with it. Simply hit me up with @exquitas on telegram

For this we'll be using the default config provided in Gunbot 5.0.4 (TV_GAIN = 0.6,   this only got trigged once in 1 week of running this setup so you can leave it as it is)

So how do we describe this config for those that don't want to read? It is basically a Stepgain Buy / Stepgain BB Hybrid Sell

Let's get started:

  • Create your account on Tradingview and activate your Pro Trial membership
You'll need a Pro Membership because you'll need 2 Alerts per Pair (BUY/SELL). Free membership only allows one Alert

  • After signing up and activating your Pro Membership, proceed to Charts on the Dashboard


  • Congratulations! You've made it to the core element of Tradingview. Basically what you can see in the screenshot below, is my config already up and running, so let me get to the details


=========== THE CONFIG ===========

On the top left there's a search bar, choose the pair you want to trade with Gunbot and choose the corresponding exchange for it.

Now on the right there's the Period setting. I personally had the best results with Period = 15mins you can change it to any desired period.

So lets start!

In total you'll need 3 EMA's and 1 BB Indicator.
To set them up go to the bottom, Pine Editor and Click on new and choose the indicators you need for this setup.

To get to my settings you have to configure them like this:

Quote
EMA 1 Length = 5 ; Source = close
EMA 2 Length = 10 ; Source = close
BB Length = 26 ; Source = close ; mult = 2 (Why did I choose 26 as length? well with 20 it has sold to early and with 30 almost always to late)
EMA 3 Length = 1 ; Source = BB;Plot  (Switch between the 3 BB Sources available until you have the top one. They all have the same name, to make it easier change the EMA 3 color to yellow for example

And bam, congrats you have the same chart as me now but how to set alerts up?


=========== Setting up alerts ===========

On the top right there's your Alerts Panel, click on the +

I'll use ETHBTC as an example here

BUY ALERT
Quote
Condition --- EMA (5,close) - Crossing Up - EMA (10, close)
Frequency --- Once per bar (on close)
Expiration Time --- Don't touch this
Alert Actions --- Send Email (only)
The message has to be written according to the exchange you're using

Copied from Github version 5.0.1 release notes:
Quote
For TradingViews plugin please read tutorial here https://www.tradingview.com/wiki/Creating_and_Managing_Alerts and create alerts with the following syntax:
ORDERTYPE_EXCHANGE_PAIR
Examples:
BUY_POLONIEX_BTC_ETH
SELL_POLONIEX_USDT_BTC
BUY_KRAKEN_DASHEUR
SELL_KRAKEN_XLTCXXBT
BUY_BITTREX_BTC-ETC
SELL_CRYPTOPIA_ETH_BTC
BUY_CRYPTOPIA_LTC_BTC

So since I'm using Bittrex in this case it'll be BUY_BITTREX_BTC-ETH

Sell Alert
Quote
Condition --- ETHBTC - Crossing Down - EMA (1, BB:Plot)
Frequency --- Once per bar (on close)
Expiration Time --- Don't touch this
Alert Actions --- Send Email (only)
Message --- SELL_BITTREX_BTC-ETH

So now let the magic happen :)

For the safety of your funds, only I mean ONLY use coins that are stable and no shitcoins.
In 5.0.4 Tradingview the bot doesn't know if he's already bought the pair that gets triggered by Tradingview. So if EMA 1 crosses EMA 2 up in this setup the bot will buy again even if there's an altcoin balance. This can happen if the trend never reached the sell trigger for example.

This will get "fixed" in 5.0.4 with an option where the user can chose if he wants to stop buying if there's a balance but in my honest opinion after running a few tests it works as a more predictable double_up feature and will sell at profit when the opportunity comes.

Correctly setting up your Gunbot for Email parsing will probably get discussed in another topic.

Side Note: There are also some coins where i'm using EMA1 crossing down EMA2 as Sell trigger. It entirely depends on the coin you're trading.

Happy trading gunners :)


Some proof:





12
General Discussion / Gunbot Telegram Group - Senseless Commands
« on: September 09, 2017, 05:03:00 PM »
Hello,

Because we've seen an increasing number of senseless command spams, I've decided to set up a tool that automatically warns and/or bans Users that post so called senseless commands for example /guntharsettings or /dieselsettings.

If you are one of those poor people that got banned because of this, please contact your reseller or one of the Chat Moderators to get access again to the chatroom.

If you still didn't learn from this, we might consider a more permanent solution to your ban.

You've been warned.

Code: [Select]
Spamfilter Alert!
@USERNAME
First warn. Using banned word not allowed

13
Beginners & Help / Re: "we have altcoins: switching to sell cycle!"
« on: September 04, 2017, 05:21:12 AM »
Probably because it has Altcoins and tries to sell them ... If it can't sell them you should check your settings in your configuration.

14
Beginners & Help / Re: bbstepgain setting help for 4.0.5
« on: September 04, 2017, 05:20:06 AM »
"bbstepgain": {
         "BTC_TRADING_LIMIT": 0.002,
         "PERIOD": 15,
         "HIGH_BB": 45,
         "LOW_BB": 45,
         "SELLLVL1": 0.1,
         "SELLLVL2": 0.1,
         "SELLLVL3": 70,
         "SELLLVL": 3,
         "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

problem im having is that its showing sell price about 4 times higher than market price(last price)
is this normal? after switching to bbstepgain, i have not seem sell only buys
please help!!!

Thats because with your current configuation (SELLLVL: 3) it will only sell when your coin reaches +70%
Change SELLLvL2 to 1.5 for example and SELLVL to 2. Then it will sell when the coin in between +1.5% -> +70%

15
If it is the expected behavior to buy at the top that is ridiculous. Clearly the bb forumula is wrong.
Why on earth would you want to buy at the top of the bb? Yes we are comparing it to other charts because clearly they are more accurate.
I ran version 4 for several days then switched back to 3. Doing much better on version 3 without this ridiculous behavior.

Well then do stepgainbb and set buy level 1 to 1.5 for example. It will buy -1.5% under EMA value.

16
Hello all,

I've been trying different options but my Gunbot 3.3.2 keeps crashing. It basically runs for a while (a few hours), then it freezes.

I've tried to start the Gunbot with all my coins (around 10-12), I always wait for the "this operation can take a while... retry/cancel" dialog and I don't rush it. I even tried starting up my coins manually with a decent wait in between.

Could you please let me know how I can possibly troubleshoot this?

Thanks,

There's probably some other problem there... I have +/- 40 pairs running on a VPS (not Contabo) with 5% CPU usage and 50% RAM usage (2GB)

Try reading your logs and look for an error thats building up and possibly clogging your VPS

17
Technical Support & Development / My Idea for future 4.0.x releases
« on: August 28, 2017, 08:29:14 PM »
Hi Gunthar,

How about adding a bag wait to sell override?

Let me explain... Let's say I have one bag in the following coin: BTC_XXX     Bought Price: 0.1234    Amount: 1234

If you could add a variable to the config to tell the bot to continue trading with the bag (INSTEAD of waiting until it reaches the selling point and INSTEAD of using Double_UP)

Example in config.js:

Bought_price_bag: "0.1234"
Amount_bag: "1234"

So the bot knows there's a bag and it continues trading like it weren't there.

But when the price reaches the Sellpoint with the bag, that the bot sells it at x% GAIN.

18
Technical Support & Development / Re: Bugs/Issues tracker v4.0.4
« on: August 18, 2017, 09:16:42 PM »
Got this error:
Error on strategy BB_STEPGAIN for BTC-LTC on bittrex while getting ema2 -\ Error: undefined is not a function

This ... used to go away in +/- 20mins, now the bot is running for 60mins and I still have this error with pure BB

19
I'm patiently waiting for this to work with the newer releases :)

Pages: [1]