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.


Topics - Gunthar

Pages: 1 2 3 [4]
61
Code: [Select]
//@version=2
study("GUNBOT by Gunthar", overlay=true)

// GUNBOT by Gunthar 29 Nov 2016

src = input(title="Data Array",type=source,defval=ohlc4)
prd1=input(title="Short MA period", type=integer,defval=10)
prd2=input(title="Long MA period",type=integer,defval=20)
AP = ema(src,2)
Fast = ema(AP,prd1)
Slow = ema(AP,prd2)


Bullish = Fast>Slow
Bearish = Fast<Slow

Green = Bullish and AP>Fast
Red = Bearish and AP<Fast
Yellow = Bullish and AP<Fast
Blue = Bearish and AP>Fast

//Long Signal
Buy = Green and Green[1]==0
Sell = Red and Red[1]==0

//Short Signal
Short = Red and Red[1]==0
Cover = Red[1] and Red==0

//Plot

l1=plot(Fast, linewidth=1,color=red)
l2=plot(Slow, linewidth=2,color=blue)
bcolor = Green ? red : Red ? lime : Yellow ? gray : Blue ? gray : white
barcolor(color=bcolor)
fill(l1,l2,bcolor)

63
Technical Support & Development / For bagholders only
« on: April 09, 2017, 07:22:48 PM »
so this is what i'm starting to test right now, correct me if i'm wrong
 say we have a bag of ETH and the bot is stucked because price is not good to sell and we holding since 2 days
 what i'm going to implement is:
 1.- delete eventual sell order of ETH we have open and unfilled
 2.- calculate the most profitable ETH_XXX pair trading at ETH market in polo
 3.- start pair ETH_XXX
 4.- restart the BTC_ETH pair
 point 3 is on a subaccount
 <\end of theory>
 in this way we wont have a stucked bot anymore because soon as we get bags and stucked, we move those coins in one of the other available markets
 point 2 and 3 can be done differently too
 USDT_ETH or XMR_ETH starting with a "sell" order instead
 and then let the bot continue on that new pair
 opinions, suggestions, insults are welcome,
 thanks!

64
Beginners & Help / The Art of Withdrawing
« on: April 08, 2017, 04:12:25 PM »
How to: Withdraw GUNBOT's daily profits like a boss

There are many tools to calculate how much profit your GUNBOT is giving you: FrilledShark's Excel Spreadsheet, Cointracking, Poloniex Analyzer. I will cover them all in separated topics. Let's start with the native Poloniex Analyzer.
Rule of thumb: your GUNBOT is giving profit and can gives you profits only. It is unlikely to happen that if you buy 1 coin at 0.1 and sell the same coin at 0.2, you have a loss :)
Let's use your GUNBOT then, like it was a little "miner" giving you daily coins to withdraw to your own wallet.

Step 1: go to this page https://poloniex.com/tradeHistory - On top right select one of the coins you are trading, i.e. HUC and click "Analyze"

Step 2: On top right, there is the profit/loss. As you can see there is a positive number that is safe to withdraw from your poloniex account, as those coins are already consolidated by a BUY/SELL loop.


Ok, clear enough. What about if the profit/loss indicator says we have a loss?
Easy enough, look at this image:




Step 3: Click on every BUY trade starting from the most recent, until Total Buys is the same amount fo Total Sells. Enjoy the withdraw.



I suggest you to do this check at least once a day. If you dont do this on regula basis, you will not lose your money: the GUNBOT will use it reinvesting in other trades and possibly in other pairs.

~Gun

65
Beginners & Help / F.A.Q. (Frequently Asked Questions)
« on: April 07, 2017, 10:32:58 AM »
F.A.Q. (Frequently Asked Answered Questions)

Before I can answer questions you need to put questions, so don't be shy and ask!
~Gun

66
How to not panic during a dump and continue to make profits

            Ok, this is probably the most waited topic of this thread so I'm going to be straight: when a dump starts there is nothing you can do. It will continue until the last penny has been sold. I will give you 2 weapons to fight the dumpers: a psychological one and a technical one.
  • Understand that trading is possible only because the price goes down and then it goes up. If it goes only up or only down, you can't trade. None would. So, take the bears as a part of the scenario. Accept it. Like it. As the price goes down, you know it will go up again, over and over. Oh wait....your GUNBOT bought when the price was up? Ok then, here to you the solution:
  • The Bollinger Band: Poloniex was smart enough, they gave us another indicator to trade with crypto. What is the Bollinger Band exactly? It is an indicator of the volatility of the coin, related to the quantity of trades volume in a given instant. Open your Poloniex graphic and enable Bollinger lines, you will see something like this:


               The larger the Bollinger Band is the more volatility on the market. As the Bollinger Band tights, there is less volatility. Said that, how to use the Bollinger Band? Well: it is a technical support to your weak morale because of a dump. Look the next picture:


               The Bollinger Band is used to identify the entry point to buy and to sell in a certain strategy. Whenever the candlesticks cross over the Bollinger Band, there is a change of the trend. If you look at yellow arrows I drew, after any yellow arrow, there is a bullish trend. Now look at the next picture:


               After any azure arrow, there is a bearish trend. The right moment for a change of the trend is when the candlesticks exit and THEN enter back inside the band. Sometimes they get very close to the band and the trend changes without crossing borders. Use the Bollinger Band to be aware of what is going on: it is a dump, yes, but you know exactly when it will stop and you know exactly when the bear will turn into a bull. Stay calm...take a deep breath....and don't stop the GUNBOT  :D
              So, do you like it? Did you ever see this? If yes: did you ever use the Bollinger Band as a tool to be aware you are not losing all your money and you don't have to stop your bot but it is just the wonderful world of trading going on? Well, now you know it...if you need more help on this, just shoot me a PM and please again...don't stop your GUNBOT, let it do its job for you...I didn't code emotions in it...  ;)

    ~Gun

Pages: 1 2 3 [4]