Hello! I have the following script to plot the new highs of NASDAQ on the daily chart: //@version=5 indicator(title='New Highs NASDAQ') highNsdaq = request.security('higq', timeframe.period, close) plot(highNsdaq, title='New Highs NASDAQ', color=#B2B5BE) But, let’s say that the new highs have the fo...