Lemnos

ET/CandleStick-2

website: www.ersoytoptas.com
Newspaper : tr.investing.com/members/36623/opinion


Bullishharami , Bearishharami , hangingman

Analysis First, you are building your own, then use Indicator ..
Thank you

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

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

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

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

ต้องการที่จะใช้สคริปต์นี้บนชาร์ตใช่ไหม?
study("ET/Candlestick 2",overlay=true)

Bullishharami=((open[1] > close[1]) and (close > open) and (close <= open[1]) and (close[1] <= open) and ((close - open) < (open[1] - close[1])))
plotchar(Bullishharami,char='↑',title="Bullishharami",location=location.belowbar ,text="Bullishharami",color=black)

Bearishharami=((close[1] > open[1]) and (open >close)and (open <=close[1]) and (open[1] <= close) and ((open -close) < (close[1] - open[1])))
plotshape(Bearishharami,title="Bearishharami", style=shape.arrowdown ,text="Bearishharami",color=red)

hangingman=((((close<=open)*close)+ ((close>open)*open))-low)>=abs(close-open)*2 and (((close+open)/2)-low)> (high-((close+open)/2))*2 and abs(close-open)>.01
plotshape(hangingman,title="hangingman", style=shape.arrowdown ,text="hangingman",color=red)