AleksandrLombrozo

Qstick as described by Tushar S. Chande and Stanley Kroll

Qstick indicator as described by Tushar S. Chande and Stanley Kroll in the New Technical trader. The indicator shows the range between open and close for the specified period of time boosted by the presence of exponential moving average.
Qstick is best to discover divergence and find local tops and bottoms.

Mercurius.a.m@gmail.com

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

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

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

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

ต้องการที่จะใช้สคริปต์นี้บนชาร์ตใช่ไหม?
//@version=2
study("Qstick")
lenght=input(defval=8,title="length_Qstick", step=1)
difference=sum(close,lenght)-sum(open,lenght)
ema_input=input(defval=5,title="length_ema", step=1)
ema=ema(difference,ema_input)
plot(difference, color=red, linewidth=2, style=histogram)
plot(ema)