i attatch the file here
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Bollinger Bands on RSI
Collapse
X
-
Bollinger Bands on RSI
I am trying to develop an indicator by plotting bollinger bands on rsi.It should help in better identifying overbought and oversold conditions.My code has errors and is not compiling.every help will be usefull.thank you.
i attatch the file hereTags: None
-
Hi easyfying,
you selected identical names for the variable and the property. I guess that is what the compiler complains about?
[Description("default SuperRSI period 14 ")]
[Category("Parameters")]
public int SuperRSIperiod
{
get { return SuperRSIperiod; }
set { SuperRSIperiod = Math.Max(1, value); }
}
Regards
Ralph
-
Hi Ralph,
Thanks for reply.I edited my code and rewrote it.I am getting one error while compiling.It says the type NinjaTrader.Indicator.Bbrsi holds already a definition for rsPeriod.
The idea is to plot rsi bands and then plotting bollinger bands using rsi values as input values.Any help would be very usefull.
Here is the edited code as attachment .
regards.
easyfyingAttached Files
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
239 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
155 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
164 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
247 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
199 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment