Moving Average Crossover RSI Indicator for ThinkorSwim

@Njo Do you have any examples (screenshots) of both conditions happening within the same candle on your chart?
 
Is there a way to make this a multiple time frame indicator? I want to see it on a timeframe of 5min or 15 min but on a 1min chart
 
Would it be possible to add a second moving average to my choice on the RSI? I tried copying

Code:
# plot the RSI Moving Average
def rsiMA = MovingAverage(rsiAverageType, RSI, rsiMALength);
plot prsiMA = rsiMA;

But keeps giving me errors
 
@whats up Here you go:

Code:
input rsiAverageType_2 =  AverageType.SIMPLE;
input rsiMALength_2 = 20;
def rsiMA_2 = MovingAverage(rsiAverageType_2, RSI, rsiMALength_2);
plot prsiMA_2 = rsiMA_2;
 
Would anyone be able to convert this bottom study for TOS :) forever grateful for the information and indicators i've learned here already! Most useful website i have ran across and appreciative of everyone who takes time out of their life to help! The link to the indicator and script is below. thank you
I moved your request to this thread. Because while the tradingview indicator you referenced is not currently available on this forum, the RSI EMA study in the first post could be a workaround for you.
 
Last edited:
Looks like this is not very active but will ask how to convert the MA/RSI indicator to a scan. I did this once before but dont really recall how I did it.

I am referring to the code on 1st page of this thread.
 
Last edited by a moderator:
Hi
I would like to make a filter to search for stocks that have had their 14 period RSI cross above the price oscillator but I have no idea how to write code.
Preferably I would like to code to look for stocks that have their 14 period RSI cross above the price oscillator while they are both increasing if it is possible.
Thank you for any help!
 
Last edited:

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
390 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