Author

Topic: June 21 2015 - BTCUSD $%@! Green Dragon !@%$ (Read 1490 times)

hero member
Activity: 681
Merit: 507
November 05, 2015, 11:50:12 AM
#12
after litecoin you are also right with bitcoin. great work.

legendary
Activity: 3248
Merit: 1070
Thank you for you input.
So when M00n?

I'm expecting a 60-90 day bullish movement.




this is reassuring, but it will be a slow movementss in your view, or a fast rise?

i still need to have bitcoin below 300 for the time being
legendary
Activity: 1204
Merit: 1028
This is pretty much guaranteed, the problem is when exactly, no one knows so whats why you hold. The mighty green dragon Shenron Nakamoto will grant us 3 wishes in the future.
OP, do you see Litecoin following a similar figure? because on that case, gains would be even bigger if invested on the current mega cheap LTC.
legendary
Activity: 1568
Merit: 1001
LP is one hell of a coder and has been fairly accurate for the last year+ that I've followed him. This is the time we've been waiting for. I just wonder if this signifies a moon for litecoin as well or if that move is behind us.
full member
Activity: 358
Merit: 118
Thank you for you input.
So when M00n?

I'm expecting a 60-90 day bullish movement.


newbie
Activity: 22
Merit: 0
Thank you for you input.
So when M00n?
hero member
Activity: 588
Merit: 500
One of them big green dragons would be nice right about now.
full member
Activity: 358
Merit: 118
full member
Activity: 358
Merit: 118
What is a green dragon





When 12 hour simple moving averages are stacked

2>30>60>90>150

AND

12 hour simple moving average slope of 30, 60, and 90 are positive/uphill


That is a Green Dragon.


Quote
and what does it stand for in this financial world?

loss of shares for all who bet against it
vast riches for all who bet on it
legendary
Activity: 1722
Merit: 1000
Just going by the steady price I agree it is time to buy.

I did this for primecoin.. .01 > .30 .. / FLEX.
newbie
Activity: 22
Merit: 0
What is a green dragon and what does it stand for in this financial world?
full member
Activity: 358
Merit: 118


It is time to hoard your coins.

btcusd = 90 day hold.

Green Dragon.

12h sma 2>30>60>90>150 off 3 month consolidation.

12h sma 30 60 and 90 rising.



http://pastebin.com/sHFuLZvg
https://i.imgur.com/Msve2tN.png

Code:
# litepresence
 # june 21 2015
 # Green Dragon Begins Today
 
 
 PAIR = pairs.btc_usd
 
 def tick():
     
     ma2 = data[PAIR].ma(2)
     ma30 = data[PAIR].ma(30)
     ma60 = data[PAIR].ma(60)
     ma90 = data[PAIR].ma(90)
     ma150 = data[PAIR].ma(150)
     ma30i = data[PAIR][-1].ma(30)
     ma60i = data[PAIR][-1].ma(60)
     ma90i = data[PAIR][-1].ma(90)
     ma150i = data[PAIR][-1].ma(150)   
     
     
     # GREEN DRAGON                             CURRENT STATE 6/21/2015
     
     green_dragon = 0
     if ((ma30 > ma60) and                       # True
         (ma60 > ma90) and                       # False, but converging               
         (ma90 > ma150) and                      # True
         (ma2 > ma30) and                        # True
         (ma30 >  ma30i) and     # True
         (ma60 >  ma60i) and     # True
             (ma90 >  ma90i)):   # True
         green_dragon = 1
             
     
     plot('green_dragon', green_dragon, secondary=True)
     plot('green_dragon', 0, secondary=True)
     plot('o', 0, secondary=True)
     
     if info.tick == 0:
         plot('z', -20, secondary=True)
Jump to: