FxLowe

Renminbi Peg Band

Simple script to draw the upper and lower bands based on the % tolerance the PBOC has set around their reference rate.

Right now, reference rate and % tolerance are input variables that must be input/updated manually. Hopefully one day Tradingview allows the automatic update to be scripted.

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

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

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

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

ต้องการที่จะใช้สคริปต์นี้บนชาร์ตใช่ไหม?
//@version=2
//FxLowe - CNY Peg Bands.

study(title = "CNY Peg Band", overlay = true)
ReferenceRate = input(title="Reference Rate", type=float, defval=6.5233)
TolerancePercent = input(title="Percentage Tolerance", type=float, defval=2.1)

band = ReferenceRate * (TolerancePercent/100)

plot(ReferenceRate+band, title="Upper Bound", color=orange, editable=true)
plot(ReferenceRate-band, title="Lower Bound", color=orange, editable=true)