Pages:
Author

Topic: Current Situation vs. 2011 Bubble - you ain't seen nothin' yet! (Read 3280 times)

sr. member
Activity: 350
Merit: 250
"Don't go in the trollbox, trollbox, trollbox"
So bottom line: what's the resulting price projection?



Something like this. We've seen 900% growth this year as opposed to 3,800% in the 2011 spike.
legendary
Activity: 1708
Merit: 1020
update 2013-04-03 (static image @ 145usd/btc)

we are in rough see now...

legendary
Activity: 1708
Merit: 1020
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.
legendary
Activity: 2097
Merit: 1070
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.
legendary
Activity: 1708
Merit: 1020
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.
legendary
Activity: 1708
Merit: 1020
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.
newbie
Activity: 28
Merit: 0
By the looks of it - if we were in a bubble it would be about 600.

I have to admit, made me laugh Smiley
legendary
Activity: 1288
Merit: 1000
Enabling the maximal migration
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.
legendary
Activity: 3108
Merit: 1531
yes
So bottom line: what's the resulting price projection?
legendary
Activity: 1246
Merit: 1010
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.
newbie
Activity: 28
Merit: 0
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?
hero member
Activity: 763
Merit: 500
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)
legendary
Activity: 1708
Merit: 1020
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.
legendary
Activity: 2097
Merit: 1070
new chart 2013-03-20




So if I read this right you're saying we haven't even started yet.
legendary
Activity: 1106
Merit: 1001
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
legendary
Activity: 1708
Merit: 1020
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

legendary
Activity: 1708
Merit: 1020
new chart 2013-03-20


newbie
Activity: 14
Merit: 0
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!!!!
full member
Activity: 121
Merit: 100
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!
legendary
Activity: 938
Merit: 1000
chaos is fun...…damental :)
there is still allot of room just to beat a recent bubble



the question is Zimbabwe did produce anything except money ?  Grin
Pages:
Jump to: