TradingView
RicardoSantos
2016年2月9日午後6時15分

[RS]Swing Charts V1 Darvas Box V0.1 

Crude Oil (WTI)FXCM

詳細

UPDATE: had a minor bug on how to detect the range.
コメント
rinku.singh.111
Hi Ricardo,

It would be great if you can give some description how to use this indicator, when to enter and exit and what each color of the candles signifies. Thank you
RicardoSantos
colors are:
lime for up bar
red for down bar
navy for inside bar
aqua for outside bar

google.pt/webhp?sourceid=chrome-instant&ion=1&espv=2&ie=UTF-8
google.pt/webhp?sourceid=chrome-instant&ion=1&espv=2&ie=UTF-8
SchopplMarcus
@RicardoSantos, hello i found this code for the prorealtime plattform. can we use this in tradinview to?
i think they draw the darvas boxes very good. se here

k=50
once tth=undefined
once ttl=undefined
n=(k*2)-4
p=(n/2)-1
h1=dpo[n](high)
moyh=high-h1
hi=(moyh-moyh[1]+(high[p])/n)*n
hi=(round(hi*100))/100
l1=dpo[n](low)
moyl=low-l1
lo=(moyl-moyl[1]+(low[p])/n)*n
lo=(round(lo*100))/100
low1=(round(low*100))/100
high1=(round(high*100))/100
if barindex > 100 then
if box=1 and (high1>tth or low1<ttl) then
box=0
flag=0
endif
if box=0 and flag=0 and low1<=lo[46] and low1<=lo[45] and low1<=lo[44] then
th=low1
flag=1
endif
if box=0 and flag=1 then
for zz=0 to 44
if lo[47-zz-1]<th or lo[47-zz-2]<th or lo[47-zz-3]<th then
flag=0
break
endif
if hi[47-zz]>hi[47-zz-1] and hi[47-zz]>hi[47-zz-2] and hi[47-zz]>hi[47-zz-3] then
box=1
ttl=th
tth=hi[47-zz]
break
endif
next
endif
else
tth=undefined
ttl=undefined
endif
if box=1 then
ba=ttl
else
ba=tth
endif
return ba coloured by box-1, tth coloured by box-1, ttl coloured by box-1
SchopplMarcus
SamsonBTC
Thanks so much for making this! Do you have plans to add in breakout indicators or other features such as box formations?

example...
sethi.org/investments/darvas/sbp_non-java.phtml
RicardoSantos
not at the moment
詳細