Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
How to determine if a CCI value is above a line value not just the CrossAbove test?
Collapse
X
-
How to determine if a CCI value is above a line value not just the CrossAbove test?
I am attempting to determine if the CCI value on a bar close is above or below a certain value. I know you can test if it CrossAbove, but can you determine if the value is > than 30 or < than -30 on each bar close and then take some action?Tags: None
-
Calculate = Calculate.OnBarClose; // set this within OnStateChange(), if (State == State.SetDefaults)
if(CCI(14)[0] > 30)
{
//do something
}
if(CCI(14)[0] < -30)
{
//do something
}
Or you can combine if you need to.
if(CCI(14)[0] > 30 || CCI(14)[0] < -30)
{
//do something
}
14 is CCI period.
-
Hello gjbeaudin,
Thanks for your post.
Forum member Leeroy_Jenkins has provided the correct advice assuming you are creating the strategy in Ninjascript.
If you are using the Strategy Builder then in a sets conditions you would take the approach of:
Left side: Indicators>CCI
Center: Less or Greater
Right side: Misc>Numeric Value 30 or -30
The Calculate setting specifies how the code is to be run, using Calculate.OnBarClose means your strategy code is run once per bar at the end of the bar. This is the default setting in the strategy builder and can be changed in the "default properties" window of the strategy builder
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by NullPointStrategies, Yesterday, 05:17 AM
|
0 responses
76 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
146 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
79 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
50 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
54 views
0 likes
|
Last Post
|

Comment