IvanLabrie

CCI with averages

I coded this indicator to adapt a few techniques I learned from Constance Brown to CCI, which is a very good momentum indicator which gives great signals if you know how to read them.
I plotted a few examples on the chart.
As you can see, it complements a trader's bar chart reading skills nicely if applied correctly.
Hope you can find it of use.
Cheers,
Ivan.

🔒Want to dive deeper? Check out my paid services below🔒

linktr.ee/ivanlabrie
สคริปต์โอเพนซอร์ซ

ด้วยจิตวิญญาณของ TradingView อย่างแท้จริง ผู้เขียนสคริปต์นี้ได้เผยแพร่เป็นโอเพนซอร์ส เพื่อให้ผู้ค้าสามารถเข้าใจและตรวจสอบได้ ไชโยให้กับผู้เขียน! คุณสามารถใช้ได้ฟรี แต่การใช้รหัสนี้ซ้ำในสิ่งพิมพ์อยู่ภายใต้กฎระเบียบการใช้งาน คุณสามารถตั้งเป็นรายการโปรดเพื่อใช้บนชาร์ตได้

คำจำกัดสิทธิ์ความรับผิดชอบ

ข้อมูลและบทความไม่ได้มีวัตถุประสงค์เพื่อก่อให้เกิดกิจกรรมทางการเงิน, การลงทุน, การซื้อขาย, ข้อเสนอแนะ หรือคำแนะนำประเภทอื่น ๆ ที่ให้หรือรับรองโดย TradingView อ่านเพิ่มเติมที่ เงื่อนไขการใช้บริการ

ต้องการที่จะใช้สคริปต์นี้บนชาร์ตใช่ไหม?
study(title="CCI with averages")

cciLength = input(title="CCI Length", type=integer, defval=11, minval=3, maxval=100)
source = input(title="Source", defval=hlc3)
len2 = input(9, minval=1, title="EMA #1")
len3 = input(45, minval=1, title="EMA #2")

cci = cci(source, cciLength)
ema1CCI = ema(cci,len2)
ema2CCI = ema(cci,len3)

plot(cci, title="CCI Histogram", style=histogram)
plot(ema1CCI, title="EMA #1", style=line, linewidth=1, color=black)
plot(ema2CCI, title="EMA #2", style=line, linewidth=1, color=blue)

hline(0, title="Zero Line", color=black, linestyle=solid)
hline(100, title="100 Line", color=black, linestyle=dotted)
hline(-100, title="-100 Line", color=black, linestyle=dotted)

ไอเดียที่เกี่ยวข้อง