What do use in your study sets to confirm if a movement has enough energy to continue it's movement after a MA crossover event?

Mr_Wheeler

Active member
A lot of times the cross-over events are like a rocket that starts to take off the but then falls back onto the launch pad.
 

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

I use this ADX Label

Code:
input length = 14;
input averageType = AverageType.WILDERS;
#input Label_Color_Choice =  {default "gray", "white"};

def ADX = DMI(length, averageType).ADX;

AddLabel (ADX > 30, "ADX > (30) UP ",
(color.GREEN));
 #GetColor(Label_Color_Choice));
AddLabel(ADX < 20, "ADX < (20) DOWN ", #GetColor(Label_Color_Choice));
(color.RED));
 
I also use RSI Label
Code:
#RSI label for upper study


input length = 14;
input over_Bought = 70;
input over_Sold = 30;
input price = close;
input avg_type = AverageType.WILDERS;
 
def NetChgAvg = MovingAverage(avg_type, price - price[1], length);
def TotChgAvg = MovingAverage(avg_type, AbsValue(price - price[1]), length);
def ChgRatio = if TotChgAvg != 0 then NetChgAvg / TotChgAvg else 0;
 
def RSI = round(50 * (ChgRatio + 1),2);

 
AddLabel(1, (if avg_type == 0 then "RSI SMA" else if avg_type == 1 then "RSI EMA" else if avg_type == 2 then "RSI WMA" else if avg_type == 3 then "RSI Wldr" else "RSI Hull") + ": "+rsi+""+ if rsi==rsi[1] then " NC" else if  rsi>rsi[1] then " UP" else " DN", if between(rsi,30,70) then color.yellow else if rsi > 50 then if rsi<rsi[1] then color.dark_green else Color.GREEN else if rsi < 50 then if rsi>rsi[1] then color.dark_red else Color.RED else Color.DARK_GRAY);


#addlabel(yes,"RSI " +rsiavg, if rsiavg>70 then color.green else if rsiavg<30 then color.red else color.yellow);

######
 
@BobHug @Mr_Wheeler
Here are a few of the write-ups on the internet as to how to implement an ADX-RSI strategy:

The ADX/RSI represent only the trend/momentum component of your strategy. Support&Resistance and Volume are the other two basic components that every good strategy requires.
Also, remember that indicators only indicate, not predict - 99% of stock movement is based on price or volume.. Look at market and cycle and analyze consolidation/expansion periods to provide insight into market structure and price action. And evaluate if the volume is there to drive the price.
 
Last edited:

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

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