Repaints MTF RDT's Real Relative Strength For ThinkOrSwim

Repaints

QUIKTDR1

Active member
Plus
Author states: The Real Relative Strength (RRS) metric quantifies how a given ticker has been performing compared to a benchmark / market. It assumes that most stocks move with the market's trend / cycles most of the time. If over a given period the market has mktPC (market Price Change) and mktATR (market ATR), we'd expect that the ticker's PC would be

PWJXRPb.png


Here is the original Tradingview code:
https://www.tradingview.com/script/Ocj0Y6aW-ps-mft-RDT-s-Real-Relative-Strength/


For the new ThinkOrSwim code, you must scroll down to the next post
 
Last edited by a moderator:

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

Please convert TOS
https://www.tradingview.com/script/Ocj0Y6aW-ps-mft-RDT-s-Real-Relative-Strength/

my attempt


# Define inputs
input length1d = 5;
input atrLength1d = 20;
input length15m = 26;
input atrLength15m = 130;
input length5m = 12;
input atrLength5m = 390;

# Helper function: Calculate ATR (Thinkscript built-in)
def atr1d = Average(TrueRange(high, close, low), atrLength1d);
def atr15m = Average(TrueRange(high, close, low), atrLength15m);
def atr5m = Average(TrueRange(high, close, low), atrLength5m);

# Helper function: Price Change
def priceChange1d = close - close[length1d];
def priceChange15m = close - close[length15m];
def priceChange5m = close - close[length5m];

# Power Index calculations
def powerIndex1d = priceChange1d / atr1d;
def powerIndex15m = priceChange15m / atr15m;
def powerIndex5m = priceChange5m / atr5m;

# Relative Strength calculations
def rrs1d = powerIndex1d - (close - close[length1d]) / atr1d;
def rrs15m = powerIndex15m - (close - close[length15m]) / atr15m;
def rrs5m = powerIndex5m - (close - close[length5m]) / atr5m;

# Plot results
plot RRS_1D = rrs1d;
RRS_1D.SetDefaultColor(Color.CYAN);

plot RRS_15M = rrs15m;
RRS_15M.SetDefaultColor(Color.GREEN);

plot RRS_5M = rrs5m;
RRS_5M.SetDefaultColor(Color.RED);
check the below:

CSS:
#// Indicator for TOS
#// © satayev
#indicator("[#ps #mtf] RDT's Real Relative Strength", "RDT's RRS", max_bars_back = 500, timeframe = "5")
# Converted by Sam4Cok@Samer800     - 03/2025
declare lower;

input timeframe1 = AggregationPeriod.DAY;
input timeframe2 = AggregationPeriod.FIFTEEN_MIN;
input timeframe3 = AggregationPeriod.FIVE_MIN;
input Benchmark = "SPY"; # "Benchmark")
input Source = FundamentalType.CLOSE; #, "Source")
input period1 = 5; #, "Length", group = "1 day", tooltip = "How many bars to use for price change calculation?")
input atrPeriod1 = 20; #, "ATR length", group = "1 day", tooltip = "How many bars to use to determine ATR?")
input period2 = 26; #, "Length", group = "15 minute", tooltip = "How many bars? 26 is 1 day")
input atrPeriod2 = 130; #, "ATR length", group = "15 minute", tooltip = "How many bars? 130 is 5 days")
input period3 = 12; #, "Length", group = "5 minute", tooltip = "How many bars? 12 is 1 hour")
input atrPeriod3 = 390; #, "ATR length", group = "5 minute", tooltip = "How many bars? 390 is 5 days")

def na = Double.NaN;
def last = IsNaN(close);
def GAP = GetAggregationPeriod();
def tf1D = Max(GAP, timeframe1);
def tf15 = Max(GAP, timeframe2);
def tf05 = Max(GAP, timeframe3);
#// -- Relative Strength --
script powerIndexCurr {
    input src = FundamentalType.CLOSE;
    input period = 5;
    input atrLength = 20;
    input tf = 300000;
    def last = IsNaN(close(Period = tf));
    def h = if !last then high(Period = tf)[1] else high(Period = tf);
    def c = if !last then close(Period = tf)[1] else close(Period = tf);
    def l = if !last then low(Period = tf)[1] else low(Period = tf);
    def tr = TrueRange(h, c, l)[1];
    def source0 = if !last then Fundamental(src, Period = tf)[1] else Fundamental(src, Period = tf);
    def source1 = if !last then Fundamental(src, Period = tf)[period+1] else Fundamental(src, Period = tf)[period];
    def priceChange = source0 - source1;
    def atr = WildersAverage(tr, atrLength);
    def powerIndex = priceChange / atr;
    plot out = powerIndex;
}
script powerIndex {
    input symb = "SPY";
    input src = FundamentalType.CLOSE;
    input period = 5;
    input atrLength = 20;
    input tf = 300000;
    def last = IsNaN(close(symb, Period = tf));
    def h = if !last then high(symb, Period = tf)[1] else high(symb, Period = tf);
    def c = if !last then close(symb, Period = tf)[1] else close(symb, Period = tf);
    def l = if !last then low(symb, Period = tf)[1] else low(symb, Period = tf);
    def tr = TrueRange(h, c, l)[1];
    def source0 = if !last then Fundamental(src, symb, tf)[1] else Fundamental(src, symb, tf);
    def source1 = if !last then Fundamental(src, symb, tf)[period+1] else Fundamental(src, symb, tf)[period];
    def priceChange = source0 - source1;
    def atr = WildersAverage(tr, atrLength);
    def powerIndex = priceChange / atr;
    plot out = powerIndex;
}

def symPI1d  = powerIndexCurr(Source, period1, atrPeriod1 , tf1D);
def symPI15m = powerIndexCurr(Source, period2, atrPeriod2, tf15);
def symPI5m  = powerIndexCurr(Source, period3, atrPeriod3 , tf05);
#--
def mktPI1d  = powerIndex(Benchmark, Source, period1, atrPeriod1 , tf1D);
def mktPI15m = powerIndex(Benchmark, Source, period2, atrPeriod2, tf15);
def mktPI5m  = powerIndex(Benchmark, Source, period3, atrPeriod3 , tf05);

def rrs1d  = (symPI1d)  - (mktPI1d);
def rrs15m = (symPI15m) - (mktPI15m);
def rrs5m  = (symPI5m)  - (mktPI5m);

plot rs05 = if !last then rrs5m else na;
plot rs15 = if !last then rrs15m else na;
plot rs1D = if !last then rrs1d else na;
plot zero = if !last then 0 else na;

rs1D.SetLineWeight(2);
zero.SetStyle(Curve.SHORT_DASH);

rs05.AssignValueColor(if rrs5m>0 then Color.GREEN else if rrs5m < 0 then Color.RED else Color.GRAY);
rs15.AssignValueColor(if rrs15m>0 then Color.CYAN else if rrs15m < 0 then Color.MAGENTA else Color.GRAY);
rs1D.AssignValueColor(if rrs1d>0 then Color.DARK_GREEN else if rrs1d < 0 then Color.DARK_RED else Color.GRAY);
zero.SetDefaultColor(Color.GRAY);

#-- END of CODE
 
check the below:

CSS:
#// Indicator for TOS
#// © satayev
#indicator("[#ps #mtf] RDT's Real Relative Strength", "RDT's RRS", max_bars_back = 500, timeframe = "5")
# Converted by Sam4Cok@Samer800     - 03/2025
declare lower;

input timeframe1 = AggregationPeriod.DAY;
input timeframe2 = AggregationPeriod.FIFTEEN_MIN;
input timeframe3 = AggregationPeriod.FIVE_MIN;
input Benchmark = "SPY"; # "Benchmark")
input Source = FundamentalType.CLOSE; #, "Source")
input period1 = 5; #, "Length", group = "1 day", tooltip = "How many bars to use for price change calculation?")
input atrPeriod1 = 20; #, "ATR length", group = "1 day", tooltip = "How many bars to use to determine ATR?")
input period2 = 26; #, "Length", group = "15 minute", tooltip = "How many bars? 26 is 1 day")
input atrPeriod2 = 130; #, "ATR length", group = "15 minute", tooltip = "How many bars? 130 is 5 days")
input period3 = 12; #, "Length", group = "5 minute", tooltip = "How many bars? 12 is 1 hour")
input atrPeriod3 = 390; #, "ATR length", group = "5 minute", tooltip = "How many bars? 390 is 5 days")

def na = Double.NaN;
def last = IsNaN(close);
def GAP = GetAggregationPeriod();
def tf1D = Max(GAP, timeframe1);
def tf15 = Max(GAP, timeframe2);
def tf05 = Max(GAP, timeframe3);
#// -- Relative Strength --
script powerIndexCurr {
    input src = FundamentalType.CLOSE;
    input period = 5;
    input atrLength = 20;
    input tf = 300000;
    def last = IsNaN(close(Period = tf));
    def h = if !last then high(Period = tf)[1] else high(Period = tf);
    def c = if !last then close(Period = tf)[1] else close(Period = tf);
    def l = if !last then low(Period = tf)[1] else low(Period = tf);
    def tr = TrueRange(h, c, l)[1];
    def source0 = if !last then Fundamental(src, Period = tf)[1] else Fundamental(src, Period = tf);
    def source1 = if !last then Fundamental(src, Period = tf)[period+1] else Fundamental(src, Period = tf)[period];
    def priceChange = source0 - source1;
    def atr = WildersAverage(tr, atrLength);
    def powerIndex = priceChange / atr;
    plot out = powerIndex;
}
script powerIndex {
    input symb = "SPY";
    input src = FundamentalType.CLOSE;
    input period = 5;
    input atrLength = 20;
    input tf = 300000;
    def last = IsNaN(close(symb, Period = tf));
    def h = if !last then high(symb, Period = tf)[1] else high(symb, Period = tf);
    def c = if !last then close(symb, Period = tf)[1] else close(symb, Period = tf);
    def l = if !last then low(symb, Period = tf)[1] else low(symb, Period = tf);
    def tr = TrueRange(h, c, l)[1];
    def source0 = if !last then Fundamental(src, symb, tf)[1] else Fundamental(src, symb, tf);
    def source1 = if !last then Fundamental(src, symb, tf)[period+1] else Fundamental(src, symb, tf)[period];
    def priceChange = source0 - source1;
    def atr = WildersAverage(tr, atrLength);
    def powerIndex = priceChange / atr;
    plot out = powerIndex;
}

def symPI1d  = powerIndexCurr(Source, period1, atrPeriod1 , tf1D);
def symPI15m = powerIndexCurr(Source, period2, atrPeriod2, tf15);
def symPI5m  = powerIndexCurr(Source, period3, atrPeriod3 , tf05);
#--
def mktPI1d  = powerIndex(Benchmark, Source, period1, atrPeriod1 , tf1D);
def mktPI15m = powerIndex(Benchmark, Source, period2, atrPeriod2, tf15);
def mktPI5m  = powerIndex(Benchmark, Source, period3, atrPeriod3 , tf05);

def rrs1d  = (symPI1d)  - (mktPI1d);
def rrs15m = (symPI15m) - (mktPI15m);
def rrs5m  = (symPI5m)  - (mktPI5m);

plot rs05 = if !last then rrs5m else na;
plot rs15 = if !last then rrs15m else na;
plot rs1D = if !last then rrs1d else na;
plot zero = if !last then 0 else na;

rs1D.SetLineWeight(2);
zero.SetStyle(Curve.SHORT_DASH);

rs05.AssignValueColor(if rrs5m>0 then Color.GREEN else if rrs5m < 0 then Color.RED else Color.GRAY);
rs15.AssignValueColor(if rrs15m>0 then Color.CYAN else if rrs15m < 0 then Color.MAGENTA else Color.GRAY);
rs1D.AssignValueColor(if rrs1d>0 then Color.DARK_GREEN else if rrs1d < 0 then Color.DARK_RED else Color.GRAY);
zero.SetDefaultColor(Color.GRAY);

#-- END of CODE
TY for your assistance
 

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

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