FloydBostwickOdlum

Dental Quest Setups

3
who knows, knows
สคริปต์โอเพนซอร์ซ

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

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

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

ต้องการที่จะใช้สคริปต์นี้บนชาร์ตใช่ไหม?
study("Dental Quest Setups", overlay = true)
//Buy Setup
bearflip = close[14]<close[10] and close[13]>close[9]
nineconsecbuy = close[4]>close and close[5]>close[1] and close[6]>close[2] and close[7]>close[3] and close[8]>close[4] and close[9]>close[5] and close[10]>close[6] and close[11]>close[7] and close[12]>close[8]
buysetup = bearflip and nineconsecbuy
plotarrow(buysetup, colorup = green, colordown = red, maxheight =50)
//Sell Setup
bullflip = close[14]>close[10] and close[13]<close[9]
nineconsecsell = close[4]<close and close[5]<close[1] and close[6]<close[2] and close[7]<close[3] and close[8]<close[4] and close[9]<close[5] and close[10]<close[6] and close[11]<close[7] and close[12]<close[8]
sellsetup = bullflip and nineconsecsell
plotarrow(-1*sellsetup, colorup = green, colordown = red, maxheight =50)
//plot(close)