Champion Indicator For ThinkOrSwim

Santhosh

Member
VIP
I just finished watching this webinar (below link), and they claimed that this indicator (thinkorswim/tradingview/trade station) has a 75.8% win rate (backtested since 2002).

They mentioned in the webinar that it works best on a daily basis. 1 hour or weekly time frame can also be used. The average length of a trade is 8 days.

I don't want to buy this indicator because it's expensive and I'm not sure if their claims are true, so are there any indicators similar to it on this website? Please remove this post if I have broken the rules.
 
Solution
The code is in the video, and it does in fact appear to be the actual code relative to the samples shown.

nshMX7m.png


Video:
SGAhez0.png


Code in action:
Dp17qya.png


Code:
declare lower;
input FastLength = 4;
input MedLength = 8;
input SlowLength = 12;

def trRng = TrueRange(high,close,low);

def trRngFast = sum(trRng, fastlength);
def trRngMed = sum(trRng,medLength);
def trRngSlow = sum(trRng, slowLength);

def diff = close - min(close[1],low);

def diffFast = sum(diff,fastlength);
def diffMed = sum(diff,medlength);
def diffSlow = sum(diff,slowlength);

def factorfast = slowlength / fastlength;
def factormed = slowlength / medlength;

def valfast = (difffast / trrngfast) * factorfast;
def valmed = (diffmed / trrngMed) * factormed;
def...
The code is in the video, and it does in fact appear to be the actual code relative to the samples shown.

nshMX7m.png


Video:
SGAhez0.png


Code in action:
Dp17qya.png


Code:
declare lower;
input FastLength = 4;
input MedLength = 8;
input SlowLength = 12;

def trRng = TrueRange(high,close,low);

def trRngFast = sum(trRng, fastlength);
def trRngMed = sum(trRng,medLength);
def trRngSlow = sum(trRng, slowLength);

def diff = close - min(close[1],low);

def diffFast = sum(diff,fastlength);
def diffMed = sum(diff,medlength);
def diffSlow = sum(diff,slowlength);

def factorfast = slowlength / fastlength;
def factormed = slowlength / medlength;

def valfast = (difffast / trrngfast) * factorfast;
def valmed = (diffmed / trrngMed) * factormed;
def valslow = (diffslow / trrngSlow);

plot Osc = if trrngFast == 0 or trrngMed == 0 or trrngSlow == 0 then 0 else
(valfast + valmed + valslow) / (factorfast + factormed + 1);

plot OB = .6;
OB.setDefaultColor(color.red);
plot OS = .25;
OS.setDefaultColor(color.green);

I'll let you draw your own conclusions.
 
Solution

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

Thank you incredibly much. I am extremely grateful to you.
You are completely correct. I noticed the code while watching the video but didn't realize they gave the entire code.
 
Last edited:
It's just a modification based off any RSI indicator and he just the shorten the volume lines to 25 and 60. He used the True Range RIS, See the (TrRngFast ) in the script.
 

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

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