Combine multiple indicators into lower study dashboard

GuitarSlinger81

New member
Hello

I'm learning Thinkscript and I'm looking for some guidance on how to code a matrix style indicator like the one shown in the link (I tried using the insert image button but it didn't work ???). I want to plot green or red values for four studies on the matrix. Any code snippets to push me in the right direction would be appreciated, and, I'll share the finished product once completed. I'm sure people would find it useful and appreciate being able to modify it to suit their purposes with their choices of indicators.

Thank you!

https://www.mediafire.com/view/ylhp9ws3eagmo0e/Matrix.PNG/file
 
Solution
Hello

I'm learning Thinkscript and I'm looking for some guidance on how to code a matrix style indicator like the one shown in the link (I tried using the insert image button but it didn't work ???). I want to plot green or red values for four studies on the matrix. Any code snippets to push me in the right direction would be appreciated, and, I'll share the finished product once completed. I'm sure people would find it useful and appreciate being able to modify it to suit their purposes with their choices of indicators.

Thank you!

https://www.mediafire.com/view/ylhp9ws3eagmo0e/Matrix.PNG/file
I think this Trend Meter looks very similar. Maybe start there. Good luck!
Hello

I'm learning Thinkscript and I'm looking for some guidance on how to code a matrix style indicator like the one shown in the link (I tried using the insert image button but it didn't work ???). I want to plot green or red values for four studies on the matrix. Any code snippets to push me in the right direction would be appreciated, and, I'll share the finished product once completed. I'm sure people would find it useful and appreciate being able to modify it to suit their purposes with their choices of indicators.

Thank you!

https://www.mediafire.com/view/ylhp9ws3eagmo0e/Matrix.PNG/file
I think this Trend Meter looks very similar. Maybe start there. Good luck!
 
Solution

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

Hello

I'm learning Thinkscript and I'm looking for some guidance on how to code a matrix style indicator like the one shown in the link (I tried using the insert image button but it didn't work ???). I want to plot green or red values for four studies on the matrix. Any code snippets to push me in the right direction would be appreciated, and, I'll share the finished product once completed. I'm sure people would find it useful and appreciate being able to modify it to suit their purposes with their choices of indicators.

Thank you!

https://www.mediafire.com/view/ylhp9ws3eagmo0e/Matrix.PNG/file

here is an example file to show the basics of plotting dots in a row

Code:
# dot_rows_template1

# create a condition formula
# plot at some number, row1
# define the plot as a shape, like points. set a size for it.
# the condition value determines the color of the shape


declare lower;
#-----------------------
# test condition formula
def avg1 = average(close, 20);

# a true/false condition to test with
def condition1 = (close > avg1);

#-----------------------
# row location
input row1 = 1;
#-----------------------

plot data1 = row1;
data1.SetPaintingStrategy(PaintingStrategy.POINTS);
data1.SetLineWeight(4);
data1.AssignValueColor(if condition1 then color.green else color.red);
#

shapes
https://tlc.thinkorswim.com/center/reference/thinkScript/Constants/PaintingStrategy
 
Last edited:

Similar threads

Not the exact question you're looking for?

Start a new thread and receive assistance from our community.

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