TradingView
wolf_trader155
2020年12月28日午前1時54分

Imbalance 

AUD/USDOANDA

詳細

Of the three consecutive candles, the state where the space between the first and third wicks not filled is called imbalance.
This indicator visualizes those imbalances.

How to use: Used to recognize sudden supply and demand fluctuations that have occurred in the market.


3つの連続するローソクのうち、1つ目と3つ目のヒゲからヒゲの間が埋まっていない状態をインバランスという。
このインジケーターは、それらのインバランスを可視化するものである。

使い方;マーケット場で起こった急激な需要と供給の変動を認識するのに用いる。
コメント
minhthinhly
Good Indicator
minhthinhly
Thanks
wolf_trader155
Seems like I cant send the same message to everyone, so I'll just post the code here.
ENJOY😇

//@version=3

//© wolf_trader155

study("Imbalance", overlay=true)

//rules
IB_buy = low - high > 0 ? low - high > 0 and open - close > 0 and open - close < 0? black : black : na
barcolor(IB_buy,-1)

IB_sell = low - high > 0 ? low - high > 0 and open - close < 0 and open - close > 0? black : black : na
barcolor(IB_sell,-1)
KennyTheRipper
@wolf_trader155, yay thanks man
DocRR
@wolf_trader155, Hmm, something seems be missing. When i add to chart nothing happens. I'd try to update v4 but doesnt work either :/
Cnsl
@wolf_trader155, Doesn't seem to work bro..
pastigianfranco
@wolf_trader155, Hi i want to ask you something. How is possible low - high > 0 ??? its always < 0 so rules will never fire
Firespidy
@wolf_trader155, thanks for sharing the script but it doesn't seem to work. Something seems to be missing.
rasoulian
@wolf_trader155, Thats not working for me. I've compile the code and attached to chart but not colorize the bars. please help me.
FXTQ
@wolf_trader155, this code is erro, please fix it
詳細