TradingView
vdubus
Jul 28, 2015 7:32 AM

Vdub High/Low Projection v1 

Euro Fx/U.S. DollarFXCM

Description

Vdub High/Low Projection v1
Modified London Underground /
3 x MTF High/Low / projected targets Hourly, Daily, Weekly


Comments
kloutt
//=============================== Projection 1==================================//
tf2 = input('240', title="Projection 1 / Mins/D/W")
M2 = input('ATR')
P2 = input(13.00, type=float)
W2 = input(2)
pf2 = pointfigure(tickerid, 'close', M2, P2, W2)
spfc2 = security(pf2, tf2, close)
channel3=input(false, title="Connect Projected High/Low")
p22=plot(channel3?spfc2:spfc2==nz(spfc2[1])?spfc2:na, color=green, linewidth=2, style=linebr, title="Hour Projection", offset=+50)

pf2 = pointfigure(tickerid, 'close', M2, P2, W2)

can this pointfigure calculation be done any other way.... i am trying to code this in thinkscript which does not have pointfigure charting

tia

great work

thanks
kloutt
i wrote a thinkscript study that provides a renko chart now i must figure out the ATR inputs
kinggold
Are these levels based on ATR?
Alphaoptions
You have shared another great one - thank you. Having levels is a really nice compliment to the other indicators you have created. A slight enhancement might be if you can add a tiny text label to each level if it does not obscure the chart? As far as expectations for plotting, will the levels continually re-plot at the end of each period? each bar? other?
vdubus
hi, thank you. yes the should plot ot ok, it helps to refresh the chart. I was contemplating labelling but I decided to colour code them instead
PaulBergin
@vdubus, Hi vdubus, great indicator thank you. Just wondering, does this work with bar replay? I noticed it prints some very different lines than the live chart. Maybe I have something set incorrectly?
More