Plot size of buy/sell signals for Half Trend and Alpha Trend indicators

I am a regular user of the HalfTrend indicators on Tradingview charts,Thanking for add it on Dhan Tradingview, but I have one important suggestion regarding visibility.

Problem:
The buy and sell signal markers (arrows/dots) shown on the chart for both Half Trend and Alpha Trend are extremely small. Even on a full screen chart (1-minute NIFTY 50), the signals are barely visible and easy to miss during live trading. Refer attached images.

Request: Please increase the default size of the buy/sell signal markers for HalfTrend and Alpha Trend to a normal, clearly visible size — similar to how signals appear on other popular indicators in TradingView-based charts. Feature Request: When i use HalfTrend on Tradingview i get alert for every BUY and SELL signals. Dhan can proivde the same. This is the code i used for that but currently its not available for free version buy = trend == 0 and trend[1] == 1
sell = trend == 1 and trend[1] == 0

if buy
alert(“LONG”, alert.freq_once_per_bar_close)

if sell
alert(“SHORT”, alert.freq_once_per_bar_close)