Bitcoin Forum
June 24, 2024, 06:44:50 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1] 2 »  All
  Print  
Author Topic: Current Situation vs. 2011 Bubble - you ain't seen nothin' yet!  (Read 3228 times)
phelix (OP)
Legendary
*
Offline Offline

Activity: 1708
Merit: 1020



View Profile
March 11, 2013, 06:46:02 PM
 #1

The recent price increase is nothing compared to the bubble of 2011 or some earlier jumps.

You can clearly see it in a logarithmic chart and even more clearly in this relative momentum chart (green curve):


It was done by setting the price in relation to a long time exponential filter.

(invest reasonably)

myself
Legendary
*
Offline Offline

Activity: 938
Merit: 1000


chaos is fun...…damental :)


View Profile
March 11, 2013, 07:13:41 PM
Last edit: March 11, 2013, 07:23:50 PM by myself
 #2

there is still allot of room just to beat a recent bubble



the question is Zimbabwe did produce anything except money ?  Grin

Los desesperados publican que lo inventó el rey que rabió, porque todo son en el rabias y mas rabias, disgustos y mas disgustos, pezares y mas pezares; si el que compra algunas partidas vé que baxan, rabia de haver comprado; si suben, rabia de que no compró mas; si compra, suben, vende, gana y buelan aun á mas alto precio del que ha vendido; rabia de que vendió por menor precio: si no compra ni vende y ván subiendo, rabia de que haviendo tenido impulsos de comprar, no llegó á lograr los impulsos; si van baxando, rabia de que, haviendo tenido amagos de vender, no se resolvió á gozar los amagos; si le dan algun consejo y acierta, rabia de que no se lo dieron antes; si yerra, rabia de que se lo dieron; con que todo son inquietudes, todo arrepentimientos, tododelirios, luchando siempre lo insufrible con lo feliz, lo indomito con lo tranquilo y lo rabioso con lo deleytable.
flaab
Full Member
***
Offline Offline

Activity: 121
Merit: 100


View Profile
March 11, 2013, 10:20:39 PM
 #3

there is still allot of room just to beat a recent bubble



the question is Zimbabwe did produce anything except money ?  Grin
I love this chart!
bitlybit
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
March 11, 2013, 10:24:13 PM
 #4

haha bubble talkers are funny they wanna decrease but valu enever decrease for bitcoin Smiley hold = rich easy concept easy for all people to make money

bitcoin up 1000% 1 year this year 5000% we reach price 1000 $ to the moon!!!!
phelix (OP)
Legendary
*
Offline Offline

Activity: 1708
Merit: 1020



View Profile
March 20, 2013, 02:56:19 PM
 #5

new chart 2013-03-20


phelix (OP)
Legendary
*
Offline Offline

Activity: 1708
Merit: 1020



View Profile
March 20, 2013, 04:59:09 PM
 #6

Can you explain the second chart in a little more detail?
sure:

Code:
        # simple iir filter
        integrator = self.chartData[0,1]
        for i, d in enumerate(self.chartData):
            integrator += (float(d[1]) - integrator) / 50000.0
            self.filtY[i] = integrator

        # "momentum"
        for i in range(len(self.chartData)):
            Y = self.filtY[i]
            self.indicatorY[i] -= Y
            self.indicatorY[i] /= Y
            self.indicatorY[i] *= 100.0

Piper67
Legendary
*
Offline Offline

Activity: 1106
Merit: 1001



View Profile
March 20, 2013, 05:17:37 PM
 #7

Can you explain the second chart in a little more detail?
sure:

Code:
        # simple iir filter
        integrator = self.chartData[0,1]
        for i, d in enumerate(self.chartData):
            integrator += (float(d[1]) - integrator) / 50000.0
            self.filtY[i] = integrator

        # "momentum"
        for i in range(len(self.chartData)):
            Y = self.filtY[i]
            self.indicatorY[i] -= Y
            self.indicatorY[i] /= Y
            self.indicatorY[i] *= 100.0


Yes, yes. But what does it mean?  Cheesy
samson
Legendary
*
Offline Offline

Activity: 2097
Merit: 1070


View Profile
March 20, 2013, 05:28:22 PM
 #8

new chart 2013-03-20




So if I read this right you're saying we haven't even started yet.
phelix (OP)
Legendary
*
Offline Offline

Activity: 1708
Merit: 1020



View Profile
March 20, 2013, 05:30:28 PM
 #9

hehe.

It applies a very simple to implement/calculate long time filter to the price. Filtered data is the orange dotted line in the upper chart. Similar to a "simple moving average", SMA or probably more similar to an "exponential moving average". Data resolution is 17-19 mins so you can calculate the time constant of the filter if you like.
Then it takes the difference between the price and the filtered curve and sets it in relation to the filtered curve.

The idea is to remove the trend and only show short term movement in a normalized way so the situation now can be properly compared to earlier peaks.
phatsphere
Hero Member
*****
Offline Offline

Activity: 763
Merit: 500


View Profile
March 20, 2013, 05:51:07 PM
 #10

Can you explain the second chart in a little more detail?
sure:

Code:
        # simple iir filter
        integrator = self.chartData[0,1]
        for i, d in enumerate(self.chartData):
            integrator += (float(d[1]) - integrator) / 50000.0
            self.filtY[i] = integrator

        # "momentum"
        for i in range(len(self.chartData)):
            Y = self.filtY[i]
            self.indicatorY[i] -= Y
            self.indicatorY[i] /= Y
            self.indicatorY[i] *= 100.0


Yes, yes. But what does it mean?  Cheesy
the code is quite ugly and part of a larger class (this is some surrounding world to these lines, that also store data)
first part does an "average" between a lot of numbers, like drawing a very smooth line through the data points.
the second part is a bit odd to me, because i don't know with what value "indicatorY" begins. maybe, it subtracts this smoothed value from the chart data and calculates the percentage change (divide + multiplication by 100)
TomRado
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
March 20, 2013, 05:57:13 PM
 #11

So the diagram states that the price today is not as far off from it's long term average as it was back then? We only saw a 500% increase instead of 3500% given the same time constants?
thezerg
Legendary
*
Offline Offline

Activity: 1246
Merit: 1010


View Profile
March 20, 2013, 06:05:46 PM
 #12

So the diagram states that the price today is not as far off from it's long term average as it was back then? We only saw a 500% increase instead of 3500% given the same time constants?

Yes, its a little hard to understand but compare the top diagram blue line from April-July 2011 and compare that to Jan 2013 onwards.  April-July 2011 shows a much steeper rise.
Wekkel
Legendary
*
Offline Offline

Activity: 3108
Merit: 1531


yes


View Profile
March 20, 2013, 06:30:41 PM
 #13

So bottom line: what's the resulting price projection?

lebing
Legendary
*
Offline Offline

Activity: 1288
Merit: 1000

Enabling the maximal migration


View Profile
March 20, 2013, 06:38:48 PM
 #14

So bottom line: what's the resulting price projection?

By the looks of it - if we were in a bubble it would be about 600.

Bro, do you even blockchain?
-E Voorhees
TomRado
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
March 20, 2013, 07:40:26 PM
 #15

By the looks of it - if we were in a bubble it would be about 600.

I have to admit, made me laugh Smiley
phelix (OP)
Legendary
*
Offline Offline

Activity: 1708
Merit: 1020



View Profile
March 20, 2013, 10:08:29 PM
 #16

By the looks of it - if we were in a bubble it would be about 600.

I have to admit, made me laugh Smiley

Cheesy Of course this time everything will be EXACTLY the same as before, only scaled up.   Roll Eyes

hehe.

It applies a very simple to implement/calculate long time filter to the price. Filtered data is the orange dotted line in the upper chart. Similar to a "simple moving average", SMA or probably more similar to an "exponential moving average". Data resolution is 17-19 mins so you can calculate the time constant of the filter if you like.
Then it takes the difference between the price and the filtered curve and sets it in relation to the filtered curve.

The idea is to remove the trend and only show short term movement in a normalized way so the situation now can be properly compared to earlier peaks.

very interesting! what is the period for the moving average? It's based on minute data?
see quote.
with info here: http://en.wikipedia.org/wiki/Moving_average#Exponential_moving_average
...you can calculate that the filter is similar to an exponential moving average of a factor of 1224 (note that this is quite different from SMA).

Quote
has anyone seen similar metrics used to analyze price data in other markets?
This would interest me, too. Just pulled it out of my...

I guess normal stock prices do not fluctuate by such large factors. But with Bitcoin an approach like this seems necessary.
phelix (OP)
Legendary
*
Offline Offline

Activity: 1708
Merit: 1020



View Profile
March 20, 2013, 11:08:09 PM
 #17

So bottom line: what's the resulting price projection?

By the looks of it - if we were in a bubble it would be about 600.
nah it would be around 300. You have to subtract the base value before multiplying.

People are much more afraid of a bubble now than back then, though.
samson
Legendary
*
Offline Offline

Activity: 2097
Merit: 1070


View Profile
March 20, 2013, 11:11:31 PM
 #18

So bottom line: what's the resulting price projection?

By the looks of it - if we were in a bubble it would be about 600.
nah it would be around 300. You have to subtract the base value before multiplying.

People are much more afraid of a bubble now than back then, though.

I guess that depends what price they paid for the BTC.
phelix (OP)
Legendary
*
Offline Offline

Activity: 1708
Merit: 1020



View Profile
March 21, 2013, 07:29:02 AM
 #19

So bottom line: what's the resulting price projection?

By the looks of it - if we were in a bubble it would be about 600.
nah it would be around 300. You have to subtract the base value before multiplying.

People are much more afraid of a bubble now than back then, though.

I guess that depends what price they paid for the BTC.
No, it depends on the filter.
phelix (OP)
Legendary
*
Offline Offline

Activity: 1708
Merit: 1020



View Profile
April 03, 2013, 09:12:14 AM
 #20

update 2013-04-03 (static image @ 145usd/btc)

we are in rough see now...

Pages: [1] 2 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!