Coordinator

EMA Difference

This is a custom script initially invented by Thomas Bierovic. It is a difference between opening and closing prices and it gives a good understanding of trend strength.

สคริปต์โอเพนซอร์ซ

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

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

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

ต้องการที่จะใช้สคริปต์นี้บนชาร์ตใช่ไหม?
study(title="EMA Difference", shorttitle="EMAD")
closing = input(9, minval=1, title="Closing")
opening = input(9, minval=1, title="Opening")
hi = input(9, minval=1, title="High")
lo = input(9, minval=1, title="Low")
CEMA = ema(close, closing)
OEMA = ema(open, opening)
HEMA = ema(high, hi)
LEMA = ema(low, lo)
CO = CEMA - OEMA
HL = HEMA - LEMA
plot(CO, color=blue, style=histogram)
h1=hline(0.005)
h2=hline(-0.005)
fill(h1,h2,color=blue)
//Created by Ali Mamedov