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
Mã nguồn mở

Với tinh thần TradingView, tác giả của tập lệnh này đã xuất bản nó dưới dạng mã nguồn mở, vì vậy các nhà giao dịch có thể hiểu và xác minh nó. Chúc mừng tác giả! Bạn có thể sử dụng mã này miễn phí, nhưng việc sử dụng lại mã này trong một ấn phẩm chịu sự điều chỉnh của Nội quy nội bộ. Bạn có thể yêu thích nó để sử dụng nó trên biểu đồ.

Thông báo miễn trừ trách nhiệm

Thông tin và ấn phẩm không có nghĩa là và không cấu thành, tài chính, đầu tư, kinh doanh, hoặc các loại lời khuyên hoặc khuyến nghị khác được cung cấp hoặc xác nhận bởi TradingView. Đọc thêm trong Điều khoản sử dụng.

Bạn muốn sử dụng tập lệnh này trên biểu đồ?
//@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)