// 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. 您可以收藏它以在圖表上使用。