Get Updates:
Email
Twitter
RSS

Tag Archive 'TICK'

$TICK Range

NOTE:The original post of the code had the > signs swapped with < signs and is now fixed.
Here’s one for the folks over at EminiAddict and followers of Dave Halsey’s methods. This study is designed only to run on an intraday chart of the $TICK. The day’s range is indicated by the red and green [...]

Read Full Post »

TICK + TRIN Indicator

I’ve taken the original TICK indicator and gone a few steps further. The plot more closely resembles a bar chart now and the bars are colored based on three options. First you can color the bars based on the slope of the nine period EMA of the TICK. Second you may color the bars based [...]

Read Full Post »

TICK Indicator

I had a request for an indicator that shows all the TICK data not just the extremes. Here’s my first cut at it. The green bars represent the high tick reading, red the low, the white dots the close, and the white line is an EMA of the HLC3 data. You can set your extreme [...]

Read Full Post »

Extreme NYSE TICK Dots

Here’s a simple script that plots a dot above/below the current bar if an extreme NYSE TICK reading is registered. The thresholds are user selectable.
# EXTREMETICK
# (c) 2009 http://www.thinkscripter.com
# thinkscripter@gmail.com
# Last Update 17 Jan 2009
input dotOffset = 1.0;
input HighThreshold = 1000;
input LowThreshold = -1000;
def tickDataLow = low("$TICK");
def tickDataHigh = high("$TICK");
def tickClose = close("$TICK");
def isLow = [...]

Read Full Post »