TIA!
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
RSI - Set High/Low Value
Collapse
X
-
RSI - Set High/Low Value
The default for the RSI is 70/30. This is displayed as a yellow line on the chart indicator at the 70 and the 30 level. I want to change this to 80/20. What are the properties I would use in C# to set these values in my code?
TIA!Last edited by sultanofsuede; 09-04-2024, 11:43 AM.Tags: None
-
Hi sultanofsuede,
First, declare the global variable:
Code:RSI rsi;
Then, initialize it and set the levels in Configure:
Please refer to the attached file below.Code:rsi = RSI(14, 3); rsi.Lines[0].Value = 20; rsi.Lines[1].Value = 80;
Regards,
WilliamAttached FilesLast edited by ninZa; 09-05-2024, 09:57 PM.
- Likes 1
-
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
331 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
210 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 12:02 AM
|
||
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
196 views
1 like
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
286 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
241 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment