RicardoSantos

Function 2 Point Line using UNIX TIMESTAMP V0

method to draw 2 point line using unix timestamp.

note: works only in intraday timeframes, for others will need to calculate the timeframe period in unix timestamp.
Open-source script

In true TradingView spirit, the author of this script has published it open-source, so traders can understand and verify it. Cheers to the author! You may use it for free, but reuse of this code in a publication is governed by House Rules. You can favorite it to use it on a chart.

Disclaimer

The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by TradingView. Read more in the Terms of Use.

Want to use this script on a chart?
//@version=2
study("Function 2 Point Line using UNIX TIMESTAMP V0", overlay=true)
offset = input(100)
_p0 = 1.07518
_t0 = 1446828000000.0000
_p1 = 1.07407
_t1 = 1446832500000.0000

//plot(n)
//bgcolor(n==_t0?black:na, transp=25)
//bgcolor(n==_t1?black:na, transp=25)

f_2p_line(_price0, _time0, _price1, _time1, _shift) => _price0 + (((_price1 - _price0) / (_time1 - _time0)) * ((time + (_shift*interval*60000)) - _time0))

plot(f_2p_line(_p0, _t0, _p1, _t1, offset), color=black, offset=offset)