| WORD | NAME | DESCRIPTION | |
| Hi() | Price OHLC | Historical High price 'bars' or 'trading days' ago (the length of a bar can be determined by the series used). Use negative values to peek into the future. | Full Description |
| Hi_D() | Price OHLC | Historical High price 'days' ago including holidays. Holidays are filled in with previous day close. | Full Description |
| Hi_W() | Price OHLC | Historical weekly High price. Use 0 for the most recent week, 1 for the week before, etc. | Full Description |
| Higher() | Count higher/lower values in a set | Returns the number of times xi > xi+1. For example to find companies that price increased at least 2 out of 3 days enter: Higher(Close(0),Close(1),Close(2),Close(3))>=2 | |
| HighPct() | Percent From Hi/Lo | Percent from high in the period (incl div) | |
| HighPct_W() | Percent From Hi/Lo | Percent from high in the period using the weekly series (incl div) | |
| HighVal() | Price Highest/Lowest | This function returns the highest value of the series within the specified lookback period. The close prices are used by default. | Full Description |
| HighValBar() | Price Highest/Lowest | This function returns bar where highest value of the series occurred within the specified lookback period. The close prices are used by default. | Full Description |
| HistQ1Difference | Historical EPS Difference | Historical Quarter Difference (Actual - Estimate), 1 Quarter Ago | |
| HistQ1EPSActual | EPS Actual | Historical EPS (Actual), 1 Quarter ago | Full Description |
| HistQ1EPSEst | Historical EPS Estimate | Historical EPS Mean Estimate, 1 Quarter ago | Full Description |
| HistQ2Difference | Historical EPS Difference | Historical Quarter Difference (Actual - Estimate), 2 Quarters Ago | |
| HistQ2EPSActual | EPS Actual | Historical EPS (Actual), 2 Quarters ago | Full Description |
| HistQ2EPSEst | Historical EPS Estimate | Historical EPS Mean Estimate, 2 Quarters ago | Full Description |
| HistQ3Difference | Historical EPS Difference | Historical Quarter Difference (Actual - Estimate), 3 Quarters Ago | |
| HistQ3EPSActual | EPS Actual | Historical EPS (Actual), 3 Quarters ago | Full Description |
| HistQ3EPSEst | Historical EPS Estimate | Historical EPS Mean Estimate, 3 Quarters ago | Full Description |
| HistQ4Difference | Historical EPS Difference | Historical Quarter Difference (Actual - Estimate), 4 Quarters Ago | |
| HistQ4EPSActual | EPS Actual | Historical EPS (Actual), 4 Quarters ago | Full Description |
| HistQ4EPSEst | Historical EPS Estimate | Historical EPS Mean Estimate, 4 Quarters ago | Full Description |
| HistQ5Difference | Historical EPS Difference | Historical Quarter Difference (Actual - Estimate), 5 Quarters Ago | |
| HistQ5EPSActual | EPS Actual | Historical EPS (Actual), 5 Quarters ago | Full Description |
| HistQ5EPSEst | Historical EPS Estimate | Historical EPS Mean Estimate, 5 Quarters ago | Full Description |
| HoldingsCnt() | Running count of holdings | Returns a count of stocks in the list that are current holdings | |
| Holiday() | Holiday | Returns TRUE (1) if weekday is a holiday, FALSE (0) otherwise. Use negative values to check for upcoming holidays. (Note: It doesn't support checking future dates.) |