Diabolicus

Wash Volume Remover [Dia]

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

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

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

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

ต้องการที่จะใช้สคริปต์นี้บนชาร์ตใช่ไหม?
//@version=2
// Logic:
// determine ratio of current volume to current price range.
// If ratio greater 150% of the average ratio of the past 100 bars then assume wash trade and replace suspicious volume with
// an hypothetical volume equivalent to 75% of the 100 bar average (75% because the average might also be distorted by past wash trades;
// if anyone knows how to replace this with a median value let me know), normalized by current range.
study("Wash Volume Remover [Dia]")
lb=input(100, title = "Lookback Period")
th=input(3.0, minval=1.0, title = "Threshold")
range=high-low
ratio=volume/range
newvol=ratio<th*sma(ratio,lb)?volume:max(0.75*(sma(volume,lb)+sma(ratio,lb)*(range-sma(range,lb))),0)
plot(newvol,color=open<close?green:red,style=columns)