Get Updates:
Email
Twitter
RSS

Tag Archive 'high'

Here’s a custom script a reader commissioned me to build. It displays the previous day’s regular trading hours high/low/close as well as two custom pivots. The script works on both 24H charts as well as Trading Hours only charts. The custom pivots are defined as follows:
1) yesterday’s high + (yesterday’s high-two day’s ago high)
2) yesterday’s [...]

Read Full Post »

Day Range and Midpoint Pivot

This script plots the highest regular-hours high, lowest regular-hours low, and midpoint pivot at each bar.
# DAYRANGE
# (c) 2009 http://www.thinkscripter.com
# thinkscripter@gmail.com
# Last Update 14 Feb 2009
input showOnlyToday = YES;
input Market_Open_Time = 0930;
input Market_Close_Time = 1600;
def day = getDay();
def lastDay = getLastDay();
def isToday = if(day==lastDay,1,0);
def shouldPlot = if(showOnlyToday and isToday, 1,if(!showOnlyToday,1,0));
def pastOpen = if((secondsTillTime(Market_Open_Time) > 0), [...]

Read Full Post »