Script for an increasing or decreasing ADX indicator.

Thepremier

New member
Hey guys and gals. I would like my ADX indicator to change colors if it's increasing or decreasing. If the value increases from bar to bar, I would like to see it as green. If the value decreases, I would like to see it red. If the value doesn't change, which isn't often, it would be white. In my trading I would like to know when the trend is possibly ending. Its should be able to be used on all timeframes. Can anyone put this together? I think it would be beneficial to all day traders! Thanks everyone!
 
Solution
Ruby:
declare lower;

input lengthX = 14;
input averageType = AverageType.Wilders;

def hiDiff = high - high[1];
def loDiff = low[1] - low;

def plusDM = if hiDiff > loDiff and hiDiff > 0 then hiDiff else 0;
def minusDM = if loDiff > hiDiff and loDiff > 0 then loDiff else 0;

def ATR = MovingAverage(averageType, TrueRange(high, close, low), lengthX);
def "DI+" = 100 * MovingAverage(averageType, plusDM, lengthX) / ATR;
def "DI-" = 100 * MovingAverage(averageType, minusDM, lengthX) / ATR;

def DX = if ("DI+" + "DI-" > 0) then 100 * AbsValue("DI+" - "DI-") / ("DI+" + "DI-") else 0;
plot ADX = MovingAverage(averageType, DX, lengthX);


ADX.SetDefaultColor(Color.Plum);
ADX.DefineColor("Up", Color.Green);
ADX.DefineColor("Down", Color.Red)...
Ruby:
declare lower;

input lengthX = 14;
input averageType = AverageType.Wilders;

def hiDiff = high - high[1];
def loDiff = low[1] - low;

def plusDM = if hiDiff > loDiff and hiDiff > 0 then hiDiff else 0;
def minusDM = if loDiff > hiDiff and loDiff > 0 then loDiff else 0;

def ATR = MovingAverage(averageType, TrueRange(high, close, low), lengthX);
def "DI+" = 100 * MovingAverage(averageType, plusDM, lengthX) / ATR;
def "DI-" = 100 * MovingAverage(averageType, minusDM, lengthX) / ATR;

def DX = if ("DI+" + "DI-" > 0) then 100 * AbsValue("DI+" - "DI-") / ("DI+" + "DI-") else 0;
plot ADX = MovingAverage(averageType, DX, lengthX);


ADX.SetDefaultColor(Color.Plum);
ADX.DefineColor("Up", Color.Green);
ADX.DefineColor("Down", Color.Red);
ADX.AssignValueColor(if ADX > ADX[1] then ADX.color("Up") else ADX.color("Down"));
ADX.SetLineWeight(3);
 
Last edited by a moderator:
Solution

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