Cumulative Tick Indicator for ThinkorSwim

Join useThinkScript to post your question to a community of 21,000+ developers and traders.

Here is a Cumulative TICK Histogram that was posted in the TOS thinkScript chat room last year. Scripted by Mobius.

*** Please notice that I changed the histogram color criteria.
Code:
# Cumulative_TICK
# Mobius
# V01_2016
## verticals added by ZupDog for Cumulative_TICK histogram crossing above or below zero
## histogram color criteria modified by ZupDog

# declare on_volume;

declare lower;

input TICK = {default "$TICK", "$TIKSP", "$TIKSPC", "$TICK/Q", "$TICKA", "$TICKAC", "$TICKAR", "$TICKARC", "$TICKC", "$TICKC/Q", "$TIKI", "$TIKIC", "$TIKND", "$TIKNDC", "$TIKRL", "$TIKUS", "$TIKUSC"};
#def T = OHLC4(symbol = TICK);
input showverticals = yes;

def T = OHLC4(symbol = TICK);
def RTH = if SecondsFromTime(0930) > 0 and
SecondsTillTime(1600) >= 0
then 1
else 0;
def cT = if RTH and !RTH[1]
then T
else if RTH
then cT[1] + T
else cT[1];

plot zero = if RTH then 0 else Double.NaN;
zero.SetDefaultColor(Color.WHITE);

plot Cumulative_TICK = if RTH then cT else Double.NaN;

Cumulative_TICK.SetStyle(Curve.POINTS);
Cumulative_TICK.SetPaintingStrategy(PaintingStrategy.Histogram);
Cumulative_TICK.SetLineWeight(3);

# Cumulative_TICK.AssignValueColor(if Cumulative_TICK > Cumulative_TICK[1] then Color.Green else Color.Red);

Cumulative_TICK.AssignValueColor(if Cumulative_TICK > zero then Color.BLUE else Color.Red);

#AddVerticalLine(RTH and !RTH[1], "Open", Color.DARK_GRAY, Curve.LONG_DASH);
#AddVerticalLine(SecondsTillTime(1030) == 0 and
# SecondsFromTime(1030) == 0, "EU", Color.DARK_GRAY, Curve.LONG_DASH);
#AddVerticalLine(SecondsTillTime(1500) == 0 and
# SecondsFromTime(1500) == 0, "Last H", Color.DARK_GRAY, Curve.LONG_DASH);
#AddVerticalLine(!RTH and RTH[1], "Close", Color.DARK_GRAY, Curve.LONG_DASH);

AddVerticalLine(showverticals and Cumulative_TICK crosses above zero, " Cumulative_TICK Long", Color.CYAN, Curve.SHORT_DASH);
AddVerticalLine(showverticals and Cumulative_TICK crosses below zero, " Cumulative_TICK Short", Color.YELLOW,
Curve.SHORT_DASH);


# End Code Cumulative Tick
 
Last edited by a moderator:

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

87k+ Posts
656 Online
Create Post

Similar threads

Similar threads

The Market Trading Game Changer

Join 2,500+ subscribers inside the useThinkScript VIP Membership Club
  • Exclusive indicators
  • Proven strategies & setups
  • Private Discord community
  • ‘Buy The Dip’ signal alerts
  • Exclusive members-only content
  • Add-ons and resources
  • 1 full year of unlimited support

Frequently Asked Questions

What is useThinkScript?

useThinkScript is the #1 community of stock market investors using indicators and other tools to power their trading strategies. Traders of all skill levels use our forums to learn about scripting and indicators, help each other, and discover new ways to gain an edge in the markets.

How do I get started?

We get it. Our forum can be intimidating, if not overwhelming. With thousands of topics, tens of thousands of posts, our community has created an incredibly deep knowledge base for stock traders. No one can ever exhaust every resource provided on our site.

If you are new, or just looking for guidance, here are some helpful links to get you started.

What are the benefits of VIP Membership?
VIP members get exclusive access to these proven and tested premium indicators: Buy the Dip, Advanced Market Moves 2.0, Take Profit, and Volatility Trading Range. In addition, VIP members get access to over 50 VIP-only custom indicators, add-ons, and strategies, private VIP-only forums, private Discord channel to discuss trades and strategies in real-time, customer support, trade alerts, and much more. Learn all about VIP membership here.
How can I access the premium indicators?
To access the premium indicators, which are plug and play ready, sign up for VIP membership here.
Back
Top