DovCaspi

Accumulation/Distribution - with markers

Accumulation/Distribution - with markers
สคริปต์โอเพนซอร์ซ

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

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

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

ต้องการที่จะใช้สคริปต์นี้บนชาร์ตใช่ไหม?
study("Accumulation/Distribution - with markers")

//AD  the Accumulation/Distribution cumulative running total line.

ad  = cum(  (((close - low) - (high - close)) / (high - low)) * volume )

ad1 = sma( ad , 9)
ad2 = sma( ad , 15)
adCross = cross(ad1, ad2) ? ad2 : na
adSmaller = ad1 < ad2
adLowHighColor = adSmaller? red : green
adDiff = ad1 - ad2
adMarker = adSmaller == true and adSmaller[1] == false ? adDiff : na

//plot(ad , color = green)
plot(adDiff, color=adLowHighColor, style=line, linewidth=2)
plot(adDiff, color=silver, style=area, transp=70)
plot(adMarker, color=maroon, linewidth=4, style=circles)

//plot(ad1, color=red)
//plot(ad2, color=blue)
//plot(adCross, color=green, linewidth=4, style=circles)