codypd

UVXY Contango Rate - my quick and dirty indicator

Feel the force ... read the source.

Give you an idea of the contango headwind / backwardation tailwind that UVXY is experiencing.

Works on Daily time frame only unless you buy the VIX feed.

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

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

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

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

ต้องการที่จะใช้สคริปต์นี้บนชาร์ตใช่ไหม?
study("UVXY Contango Rate")
VIX = security("VIX", "D", close)
UVXY = security("UVXY", "D", close)

contangoRatio = UVXY/VIX
contangoRate = 1-(contangoRatio[1]- contangoRatio[0])
fastemaCR = ema(contangoRate,7)
slowemaCR = ema(contangoRate,27)

h0 = hline(1, color=white)

plot(contangoRate, color=gray)
plot(fastemaCR, color=white)
plot(slowemaCR, color=black)
bgcolor(slowemaCR > .996 ? red : blue, 60 )