Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Can I combine two indicators to make one? RSI & TSI
Collapse
X
-
Thanks for the reply. Maybe I wasn't real clear on what I am looking for. Here is what I have in mind. I am looking for combing the RSI & TSI. For example, once RSI hits 80 and TSI hits 35 I would like to sell. Once RSI hits 20 and TSI hits -35 I would like to buy. I have them both set up this way on each individual ind but would like to combine the two ind so when both happen I can enter the trade. Maybe it could shot a dot or arrow on the new ind when both criteria are met? Maybe the #'s can be adjusted if I find a different value that will work better? Just looking for less "stuff" on my screen. Does this help? Thanks a lot!
Comment
-
Hello ckodad,
Thank you for your response and additional information.
There is no need to combine the two indicators in this case. You just need a custom indicator that calls the indicator methods of both the RSI and TSI and then draws the desired object on the chart to signal the trade.
For example:
You can create your own indicator by going to Tools > New NinjaScript > Indicator. You will find language references to all of the methods and functions you will be using at the link below. You will also see a tutorial section which will help you create your first indicator and get you started with some of these concepts.Code:if(RSI(14, 5)[0] == rsiLevel && TSI(14, 20)[0] == tsiLevel) { DrawDot("dot", true, 0, Close[0], Color.Green); }
I am also linking you to the Educational Resources section of the Help Guide to help you get started with NinjaScript: http://www.ninjatrader.com/support/h..._resources.htm
You will find Reference Samples online as well as some Tips and Tricks for both indicators and strategies:
Click here to see our NinjaScript Reference Samples: http://www.ninjatrader.com/support/f...splay.php?f=30
Click here to see our NinjaScript Tips: http://www.ninjatrader.com/support/f...ead.php?t=3229
These samples can be downloaded, installed and modified from NinjaTrader and hopefully serve as a good base for your custom works.
There is a also a growing library of user submitted custom indicators (100+) that can be downloaded from our support form. Please look in the NinjaScript File Sharing section of our support forum as you may find what you are looking for there: http://www.ninjatrader.com/support/f...splay.php?f=37
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
599 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
346 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
103 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
558 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
558 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment