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)