Skip to content

Tutorial 45 | Finding the highest high for a period specified by start and end times

Welcome to tutorial 45 in this series of tutorials designed to help you learn EasyLanguage programming skills. EasyLanguage is a programming language that is part of the TradeStation trading platform. It can be used to write programs to help in the technical analysis and trading of foreign exchange (forex or FX), commodities (e.g. the Dow e-mini, S&P e-mini etc), options, and stocks.

Please join our email mailing list if you have not already done so and we will let you know when we release new tutorials or programs.

Finding the high of a period specified by start time and end time

Program available for download applied to GBPUSD chart
Chart showing program developed in this tutorial, with the addition of low lines as well as high lines (available in the download version). The indicator is applied to a 30 minute GBPUSD chart. Start time = 2300 End time = 0300 (i.e. the start time is on one day and the end time on the following day. The bars on which the indicator bases its data are highlighted in blue. In TradeStation it is very easy to find the highest high of a particular day using the HighD function. I demonstrate a similar way of achieving this at the start of the video 1 below. But the HighD function is based on the fact that when a day changes from one day to another, Date <> Date[1], in other words the date of this bar is not the same as the date of the previous bar. But we may not necessarily be interested in what happens during a day, we may be more interested in a specific few hours during the day – or even several hours that

I am often asked by clients to create an indicator that plots the high, low or traders’ pivots for a specific session. For example, if you traded the USD/GBP Forex pair, rather than considering the entire day, you might be interested in the highest high and the lowest low of the period between 08:00 and 16:30 UK time (Midnight to 08:30 Pacific time – ignoring differences in the switch to daylight savings time).

Start and end times on same day
The downloadable indicator applied to 30 minute GBPUSD. Start time and end time are on the same day. Start time = 1000 and End Time =2000. The bars on which the high and low lines are base are highlighted in cyan. To create a program to do this is slightly more tricky, and I cover this in the video with a few examples. It can be even more confusing when the start of the period is today and the end, tomorrow.

Another issue that you need to bear in mind is to take account of start times for which there may not necessarily be a bar plotted on the chart. For example, if we were sure that there would be a 0900 bar for the stock we were looking at, then you could set a start time of 0900 and do a simple test within the program, i.e.

If T = 0900 then …..

However, what if there was no 0900 bar for a particular day? Or what if you entered the start time as 0845 and there is no 0845 bar?

This tutorial explains how to resolve these potential issues and plot on the chart the highest high of a specific period, irrespective of when the period begins or ends.

If you don’t want to type in the program, it is available for immediate download for $15.95 here:

The download version also includes plots of lows as well as highs for a given period.

TO THE BEST OF MARKPLEX CORPORATION’S KNOWLEDGE, ALL OF THE INFORMATION ON THIS PAGE IS CORRECT, AND IT IS PROVIDED IN THE HOPE THAT IT WILL BE USEFUL. HOWEVER, MARKPLEX CORPORATION ASSUMES NO LIABILITY FOR ANY DAMAGES, DIRECT OR OTHERWISE, RESULTING FROM THE USE OF THIS INFORMATION AND/OR PROGRAM(S) DESCRIBED, AND NO WARRANTY IS MADE REGARDING ITS ACCURACY OR COMPLETENESS. USE OF THIS INFORMATION AND/OR PROGRAMS DESCRIBED IS AT YOUR OWN RISK.

ANY EASYLANGUAGE OR POWERLANGUAGE TRADING STRATEGIES, SIGNALS, STUDIES, INDICATORS, SHOWME STUDIES, PAINTBAR STUDIES, PROBABILITYMAP STUDIES, ACTIVITYBAR STUDIES, FUNCTIONS (AND PARTS THEREOF) AND ASSOCIATED TECHNIQUES REFERRED TO, INCLUDED IN OR ATTACHED TO THIS TUTORIAL OR PROGRAM DESCRIPTION ARE EXAMPLES ONLY, AND HAVE BEEN INCLUDED SOLELY FOR EDUCATIONAL PURPOSES. MARKPLEX CORPORATION. DOES NOT RECOMMEND THAT YOU USE ANY SUCH TRADING STRATEGIES, SIGNALS, STUDIES, INDICATORS, SHOWME STUDIES, PAINTBAR STUDIES, PROBABILITYMAP STUDIES, ACTIVITYBAR STUDIES, FUNCTIONS (OR ANY PARTS THEREOF) OR TECHNIQUES. THE USE OF ANY SUCH TRADING STRATEGIES, SIGNALS, STUDIES, INDICATORS, SHOWME STUDIES, PAINTBAR STUDIES, PROBABILITYMAP STUDIES, ACTIVITYBAR STUDIES, FUNCTIONS AND TECHNIQUES DOES NOT GUARANTEE THAT YOU WILL MAKE PROFITS, INCREASE PROFITS, OR MINIMIZE LOSSES.

Tutorial 45 Video – Part 1 – Finding the high of a specified period based on start time and end time

Tutorial 45 Video – Part 2 – Finding the high of a specified period based on start time and end time

Tutorial 45 Video – Part 3 – Finding the high of a specified period based on start time and end time taking account of missing bars and the possibility that the end time is on the next day

If you don’t want to type in the program, it is available for immediate download for $15.95 here:

The download version also includes plots of lows as well as highs for a given period.

If you see any errors in this tutorial – or we have not made something clear, we would be most grateful if you could please let us know. E-mail us at: tutorials@markplex.com. Also, let us know if you have any ideas for new tutorials.