this is my entry condition
if buyConditionB and testPeriod
strategy.entry("Long", strategy.long, qty=buyQty)
alert('{"CustomId": "456","BuySide": "Long"}',freq=alert.freq_all)
if buyConditionS and testPeriod
strategy.entry("Short", strategy.short, qty=buyQty)
alert('{"CustomId": "123","BuySide": "Short"}',freq=alert.freq_all)
but seems it trigger alert from HA and normal candle if have buy or sell signal.
How to ensure i just want to receive HA signal only. (i created alert using HA cannot fix this issue)