samuelhei

VOLATILITY COMPARISON METHODOLOGY

70
A simple method to compare the volatility of two securities.
สคริปต์โอเพนซอร์ซ

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

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

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

ต้องการที่จะใช้สคริปต์นี้บนชาร์ตใช่ไหม?
//@version=2
study("VOLATILITY COMPARASION", overlay=false)

comp1 = input('BTCUSD', type=symbol)
comp2 = input('IF1!', type=symbol)

input = security(comp1,period,close[1])

bars = input(100)
h = highest(input,bars)
l = lowest(input,bars)


dif = h/l
avgDif = (sma(dif,bars)-1)*100

plot(avgDif, title="VOL1", color=black)

input2 = security(comp2,period,close[1])


h2 = highest(input2,bars)
l2 = lowest(input2,bars)


dif2 = h2/l2
avgDif2 = (sma(dif2,bars)-1)*100

plot(avgDif2, title="VOL2", color=red)