Post
Topic
Board Speculation
Merits 1 from 1 user
Re: BETI: Bitcoin Exponential Trend Index and technical analysis
by
mararn1618
on 08/01/2018, 18:22:40 UTC
⭐ Merited by www.www (1)
Hi guys. I've just translated the regression function used for this beti to a tradingview script.

Screenshot: https://i.imgur.com/lelTQrq.png

Code:
//based on
//https://www.wolframalpha.com/input/?i=e+%5E+(+0.00331836433279664++(+number+of+seconds+since+jul+17,+2010+12pm+UTC%2F86400%2Fseconds+)+-0.120774828196607+)
//https://bitcointalk.org/index.php?topic=470453.680

study(title='BTC Approx', overlay=true)

a = 0.00331836433279664
b = -0.120774828196607
timevar = (time-1279368000000)/(1000*60*60*24)
plot(exp(a*timevar+b))


//Epoch timestamp: 1279368000
//Timestamp in milliseconds: 1279368000000
//Human time (GMT): Saturday, July 17, 2010 12:00:00 PM
//Human time (your time zone): Saturday, July 17, 2010 2:00:00 PM GMT+02:00