200 EMA Custom Color

rookiescipt

New member
Hi,

I hope this doesn't break any rules by asking this question.

But I was wondering if anyone can help me with a task.

If the price is above 200 EMA the color change to green. And if the price is below the 200 EMA the color is changed to red.
 
Solution
Hi,

I hope this doesn't break any rules by asking this question.

But I was wondering if anyone can help me with a task.

If the price is above 200 EMA the color change to green. And if the price is below the 200 EMA the color is changed to red.

As I wasn't sure what you wanted colored, I colored the ema200 and an option to color the price bars.

Capture.jpg
Ruby:
input length  = 200;
input avgtype = averageType.EXPONENTIAL;
plot ema200   = movingAverage(avgtype, close, length);
ema200.assignvalueColor(if close > ema200 then color.green else color.red);
ema200.setlineWeight(3);

input colorprice = yes;
assignpriceColor(if colorprice then if close > ema200 then color.green else color.red else color.current);
Hi,

I hope this doesn't break any rules by asking this question.

But I was wondering if anyone can help me with a task.

If the price is above 200 EMA the color change to green. And if the price is below the 200 EMA the color is changed to red.

As I wasn't sure what you wanted colored, I colored the ema200 and an option to color the price bars.

Capture.jpg
Ruby:
input length  = 200;
input avgtype = averageType.EXPONENTIAL;
plot ema200   = movingAverage(avgtype, close, length);
ema200.assignvalueColor(if close > ema200 then color.green else color.red);
ema200.setlineWeight(3);

input colorprice = yes;
assignpriceColor(if colorprice then if close > ema200 then color.green else color.red else color.current);
 
Solution
hey @SleepyZ so i created a script name and pasted your code under 'Custom name' I see the script working when i use the chart. So, i assume I can just go into my watchlist and use the same 'custom name' My watchlist was not able to find the script. anyidea what I should do?

Also, Apologies if my question is elementary; im new to the forum and new to scripts. thanks in advance
 
hey @SleepyZ so i created a script name and pasted your code under 'Custom name' I see the script working when i use the chart. So, i assume I can just go into my watchlist and use the same 'custom name' My watchlist was not able to find the script. anyidea what I should do?

Also, Apologies if my question is elementary; im new to the forum and new to scripts. thanks in advance

Here is what I suggested.

Capture.jpg
 

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