Van Tharp's market types

zwedle

New member
Does anyone remember what Van Tharp's formula was for calculating his six different market types?
 
Last edited by a moderator:
Price gauge
13 week ROC < 5.53% and > 0 sideways market > 5.53 bullish and bearish if less than zero
Volatility gauge
13 week ATRP > 2.87 volatile < 2.87 quiet
Hey Andrew, thanks for that. Do you have it scripted? Maybe you can let me know if my version of a chart label seems to accurately capture the idea:

def roc13 = AbsValue(close / close[13] - 1.0);
def atrp13 = MovingAverage(AverageType.EXPONENTIAL, TrueRange(high, close, low) / close, 13);

def sidewaysCondition = roc13 < 0.0553;
def bullishCondition = close > close[13] and roc13 > 0.0553;
def bearishCondition = close < close[13] and roc13 > 0.0553;
def volatileCondition = atrp13 > 0.0287;
def quietCondition = atrp13 <= 0.0287;

AddLabel(yes, "Market Type:", color = Color.WHITE);
AddLabel(sidewaysCondition, "Sideways", color = Color.YELLOW);
AddLabel(bullishCondition, "Bullish", color = Color.GREEN);
AddLabel(bearishCondition, "Bearish", color = Color.RED);
AddLabel(volatileCondition, "Volatile", color = Color.CYAN);
AddLabel(quietCondition, "Quiet", color = Color.GRAY);
 
Last edited:
Hey Andrew, thanks for that. Do you have it scripted? Maybe you can let me know if my version of a chart label seems to accurately capture the idea:

def roc13 = AbsValue(close / close[13] - 1.0);
def atrp13 = MovingAverage(AverageType.EXPONENTIAL, TrueRange(high, close, low) / close, 13);

def sidewaysCondition = roc13 < 0.0553;
def bullishCondition = close > close[13] and roc13 > 0.0553;
def bearishCondition = close < close[13] and roc13 > 0.0553;
def volatileCondition = atrp13 > 0.0287;
def quietCondition = atrp13 <= 0.0287;

AddLabel(yes, "Market Type:", color = Color.WHITE);
AddLabel(sidewaysCondition, "Sideways", color = Color.YELLOW);
AddLabel(bullishCondition, "Bullish", color = Color.GREEN);
AddLabel(bearishCondition, "Bearish", color = Color.RED);
AddLabel(volatileCondition, "Volatile", color = Color.CYAN);
AddLabel(quietCondition, "Quiet", color = Color.GRAY);
zwedle, I'm definitely NOT a thinkscripting expert, or even an accomplished thinkscripter, but I think that VT was talking about the market/ index conditions and I don't see the market/ index included in your script. MerryDay included a link in this thread to one that looks at a VT market indication called SQN that sort of follows along the same line of thinking.
 

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

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

87k+ Posts
331 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