// Buy, Sell, and Hold Signals buy_signal = trend_change and ha_trend == 1 sell_signal = trend_change and ha_trend == -1 hold_signal = not trend_change // HOLD when there's no trend change
// Label Positioning label_position_buy = low - ta.atr(14) * 0.5 label_position_sell = high + ta.atr(14) * 0.5 label_position_hold = (high + low) / 2 // HOLD appears in the middle
In true TradingView spirit, the author of this script has published it open-source, so traders can understand and verify it. Cheers to the author! You may use it for free, but reuse of this code in publications is governed by House rules. You can favorite it to use it on a chart.
The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by TradingView. Read more in the Terms of Use.