Get Updates:
Email
Twitter
RSS

Tag Archive 'range'

Three Day Pivot Range

Here’s another reader request. The three day rolling pivot range. The pivots are calculated using 24 hour data (vice normal hours) which appears to be a limitation of ThinkScript’s high() and low() functions. If anyone knows a workaround, I’d love to hear it. The formulas for the high and low pivot range are as follows: [...]

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 [...]

Read Full Post »