TradingView
CaptainCoinFlip
28 мар 2020 г., 05:00

Heikin Ashi 

Bitcoin / TetherUSBinance

Описание

Heikin Ashi
Комментарии
habore
The script seems to be only changing the colors, unlike the candles shown in the picture, which are actual Heikin Ashi candles.
Tkumar91
//@version=4
study("Heikin Ashi", overlay=false, shorttitle="Heikin Ashi")
ha_open = security(heikinashi(syminfo.tickerid), timeframe.period, open)
ha_high = security(heikinashi(syminfo.tickerid), timeframe.period, high)
ha_low = security(heikinashi(syminfo.tickerid), timeframe.period, low)
ha_close = security(heikinashi(syminfo.tickerid), timeframe.period, close)
plotcandle(iff(ha_open < ha_close, ha_open, na), ha_high, ha_low, ha_close, title='Green Candles', color=#53b987, wickcolor=#53b987, bordercolor=#53b987)
plotcandle(iff(ha_open >= ha_close, ha_open, na), ha_high, ha_low, ha_close, title='Red Candles', color=#eb4d5c, wickcolor=#eb4d5c, bordercolor=#eb4d5c)
sdeepalucky
Hello bro,
To show the candle color when (O = L (green) and O = H(red)) if wick both side no color(different colour) for heikin ashi... Please help me how it can be achieved
Slick_SiD
Great indicator. If you move this indicator to the pane above into the chart the hide the regular candles, and pair it with Heikin Ashi True close by d_coin, you can accurately back test Heikin Ashi Strategies in bar replay mode! Great job. PS if anyone tries the setup I just mentioned, make sure to remember to pin to scale to accurately use EMAs or other indicators with this one on the chart. Happy trading
worldlyAccount58743
Good indicator
Kwesi_Ankh
nice indicator
Chartsignale
Hello, maybe you can write the Same Script for"normal" Candlestick? Thank you
Ещё