Bitcoin Forum

Economy => Speculation => Topic started by: phelix on March 11, 2013, 06:46:02 PM



Title: Current Situation vs. 2011 Bubble - you ain't seen nothin' yet!
Post by: phelix on March 11, 2013, 06:46:02 PM
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):
http://blockchained.com/stuff/momentum.png

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

(invest reasonably)



Title: Re: Current Situation vs. 2011 Bubble - you ain't seen nothin' yet!
Post by: myself on March 11, 2013, 07:13:41 PM
there is still allot of room just to beat a recent bubble

https://i.imgur.com/n9YEy4o.jpg

the question is Zimbabwe did produce anything except money ?  ;D


Title: Re: Current Situation vs. 2011 Bubble - you ain't seen nothin' yet!
Post by: flaab on March 11, 2013, 10:20:39 PM
there is still allot of room just to beat a recent bubble

https://i.imgur.com/n9YEy4o.jpg

the question is Zimbabwe did produce anything except money ?  ;D
I love this chart!


Title: Re: Current Situation vs. 2011 Bubble - you ain't seen nothin' yet!
Post by: bitlybit on March 11, 2013, 10:24:13 PM
haha bubble talkers are funny they wanna decrease but valu enever decrease for bitcoin :) 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!!!!


Title: Re: Current Situation vs. 2011 Bubble - you ain't seen nothin' yet!
Post by: phelix on March 20, 2013, 02:56:19 PM
new chart 2013-03-20
http://blockchained.com/stuff/momentum_2013-03-20.png



Title: Re: Current Situation vs. 2011 Bubble - you ain't seen nothin' yet!
Post by: phelix on March 20, 2013, 04:59:09 PM
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



Title: Re: Current Situation vs. 2011 Bubble - you ain't seen nothin' yet!
Post by: Piper67 on March 20, 2013, 05:17:37 PM
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?  :D


Title: Re: Current Situation vs. 2011 Bubble - you ain't seen nothin' yet!
Post by: samson on March 20, 2013, 05:28:22 PM

So if I read this right you're saying we haven't even started yet.


Title: Re: Current Situation vs. 2011 Bubble - you ain't seen nothin' yet!
Post by: phelix on March 20, 2013, 05:30:28 PM
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.


Title: Re: Current Situation vs. 2011 Bubble - you ain't seen nothin' yet!
Post by: phatsphere on March 20, 2013, 05:51:07 PM
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?  :D
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)


Title: Re: Current Situation vs. 2011 Bubble - you ain't seen nothin' yet!
Post by: TomRado on March 20, 2013, 05:57:13 PM
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?


Title: Re: Current Situation vs. 2011 Bubble - you ain't seen nothin' yet!
Post by: thezerg on March 20, 2013, 06:05:46 PM
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.


Title: Re: Current Situation vs. 2011 Bubble - you ain't seen nothin' yet!
Post by: Wekkel on March 20, 2013, 06:30:41 PM
So bottom line: what's the resulting price projection?


Title: Re: Current Situation vs. 2011 Bubble - you ain't seen nothin' yet!
Post by: lebing on March 20, 2013, 06:38:48 PM
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.


Title: Re: Current Situation vs. 2011 Bubble - you ain't seen nothin' yet!
Post by: TomRado on March 20, 2013, 07:40:26 PM
By the looks of it - if we were in a bubble it would be about 600.

I have to admit, made me laugh :)


Title: Re: Current Situation vs. 2011 Bubble - you ain't seen nothin' yet!
Post by: phelix on March 20, 2013, 10:08:29 PM
By the looks of it - if we were in a bubble it would be about 600.

I have to admit, made me laugh :)

:D Of course this time everything will be EXACTLY the same as before, only scaled up.   ::)

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.


Title: Re: Current Situation vs. 2011 Bubble - you ain't seen nothin' yet!
Post by: phelix on March 20, 2013, 11:08:09 PM
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.


Title: Re: Current Situation vs. 2011 Bubble - you ain't seen nothin' yet!
Post by: samson on March 20, 2013, 11:11:31 PM
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.


Title: Re: Current Situation vs. 2011 Bubble - you ain't seen nothin' yet!
Post by: phelix on March 21, 2013, 07:29:02 AM
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.


Title: Re: Current Situation vs. 2011 Bubble - you ain't seen nothin' yet!
Post by: phelix on April 03, 2013, 09:12:14 AM
update 2013-04-03 (static image @ 145usd/btc)

we are in rough see now...

http://blockchained.com/stuff/momentum_2013-04-03.png


Title: Re: Current Situation vs. 2011 Bubble - you ain't seen nothin' yet!
Post by: ManBearPig on April 03, 2013, 10:23:26 AM
So bottom line: what's the resulting price projection?

http://tonycoleby.com/shared/2013-04-03 Bitcoin Growth.png

Something like this. We've seen 900% growth this year as opposed to 3,800% in the 2011 spike.