EMAcross +RSI Watchlist

maston21

Member
Is there any way to make this a watchlist column? Would like is move average cross bull cross or RSI crosses above 50 to be light green, if both conditions are met, dark green. Also, is move averages cross bear or RSi crosses below 59 then light red and if both conditions are met then dark red. Thank you in advance for any assisance with this!

Code:
# EMAcrossPlusRSI50v2
# question from maston21 on 4-15-24
# version 2 adds rule that arrows only occur if price has closed at or above a longterm MA line for UpSignals and at or below a longterm MA line for DownSignals

input price = close;
input length1 = 5;
input length2 = 13;
input RSIlength = 14;
input averagetype2 = AverageType.WILDERS;
input length3 = 100;
input averagetype = AverageType.EXPONENTIAL;

def NetChgAvg = MovingAverage(averageType2, price - price[1], RSIlength);
def TotChgAvg = MovingAverage(averageType2, AbsValue(price - price[1]), RSIlength);
def ChgRatio = if TotChgAvg != 0 then NetChgAvg / TotChgAvg else 0;
def RSI = 50 * (ChgRatio + 1);

def FastMA = movingaverage(averagetype, price, length1);
def SlowMA = movingaverage(averagetype, price, length2);
def SlowestMA = movingaverage(averagetype, price, length3);

plot UpSignal = FastMA crosses above SlowMA and RSI > 50 and close >= SlowestMA;
plot DownSignal = FastMA crosses below SlowMA and RSI < 50 and close <= SlowestMA;

UpSignal.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_UP);
UpSignal.SetDefaultColor(Color.BLUE);
UpSignal.SetLineWeight(4);

DownSignal.SetPaintingStrategy(PaintingStrategy.BOOLEAN_ARROW_DOWN);
DownSignal.SetDefaultColor(Color.RED);
 
Last edited by a moderator:

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

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