eldeivit

Volume CCI

Here simply calculate the CCI of the volume, this will use to measure the strength of the trend of the volume

Background:
I think the volume as the price could be represented by candles or other graphic to use indicators and strengthen their analysis, due to lack of registration of this it is first necessary to calculate a volume graph, if the candle traditionally negative price brand then the total volume is taken as negative for the period. An example of this is in the On Balance Volume indicator, the problem is that there is no way to analyze the volume using other methods. An approximate volume of the spread could be the use of the price spread to make a synthetic behavior

As traditionally is observed if Open> Close then the candle and the volume will be negative and vice versa; the next step, is estimate the amounts of the candle necessary to calculate the ratio to use for the volume and thus idealize their spread within the candle:

VLOW = Volume x Low
vHigh = x High Volume
VOpen = vClose
vClose = Volume x Close

This graph can show a stable synthetic form of fluctuations in the volume trend affected by price.
ideas, comments and suggestions (or corrections).They are always welcome
오픈 소스 스크립트

이 스크립트의 오써는 참된 트레이딩뷰의 스피릿으로 이 스크립트를 오픈소스로 퍼블리쉬하여 트레이더들로 하여금 이해 및 검증할 수 있도록 하였습니다. 오써를 응원합니다! 스크립트를 무료로 쓸 수 있지만, 다른 퍼블리케이션에서 이 코드를 재사용하는 것은 하우스룰을 따릅니다. 님은 즐겨찾기로 이 스크립트를 차트에서 쓸 수 있습니다.

면책사항

이 정보와 게시물은 TradingView에서 제공하거나 보증하는 금융, 투자, 거래 또는 기타 유형의 조언이나 권고 사항을 의미하거나 구성하지 않습니다. 자세한 내용은 이용 약관을 참고하세요.

차트에 이 스크립트를 사용하시겠습니까?
//@version=2
study("CCI de Volumen")
/// INPUTS
shortlen = input(28, title="signal",minval=1)
longlen = input(56, title="Profundidad",minval=1)
/// Values
volumex=volume//*(close>close[1] ? 1 : -1)
V_OPEN  = V_CLOSE[1]
V_CLOSE = close*volumex
V_HIGH  = max(max(high*volumex,V_CLOSE),V_OPEN)
V_LOW   = min(min(low*volumex,V_OPEN),V_CLOSE)
V_HL2   = ( V_HIGH + V_LOW ) / 2

ccx=cci(V_CLOSE,longlen)
plot(ccx, color=blue)
plot(sma(ccx,shortlen),color=red, transp=30, linewidth=2)
hline(0, title="Axis", color=gray, linestyle=dashed,linewidth=2)
sc=hline(100, title="Sobre-Compra", color=silver, linestyle=dotted)
ei=hline(200, title="Exuberancia Irracional", color=silver, linestyle=solid)
sv=hline(-100, title="Sobre-Venta", color=silver, linestyle=dotted)
pp=hline(-200, title="Panico Psicotico", color=silver, linestyle=solid)
fill(ei,pp, color=silver)
fill(sc,sv, color=gray)