HPotter

Piercing Line automatic finding script

Hi
Let me introduce my Piercing Line automatic finding script.
This is a bullish reversal pattern formed by two candlesticks. Following a downtrend,
an up candlestick with a long real body is followed by a lower open on the next
candlestick. This session finishes as an up candlestick and closes above the midpoint
of the prior candlestick's real body. It is the reverse of the Dark Cloud.

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

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

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

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

ต้องการที่จะใช้สคริปต์นี้บนชาร์ตใช่ไหม?
////////////////////////////////////////////////////////////
//  Copyright by HPotter v1.0 10/04/2014
//    This is a bullish reversal pattern formed by two candlesticks. Following a downtrend, 
//    an up candlestick with a long real body is followed by a lower open on the next 
//    candlestick. This session finishes as an up candlestick and closes above the midpoint 
//    of the prior candlestick's real body. It is the reverse of the Dark Cloud.
////////////////////////////////////////////////////////////

study(title = "Piercing Line", overlay = true)
upper = highest(10)[1]
barcolor(close[1] < open[1] ?  open < low[1] ? close > close[1] + ((open[1] - close[1])/2) ? close < open[1] ? yellow :na :na  : na : na)