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
Paul H.NinjaTrader Customer Service
Comment
Latest Posts
Collapse
Topics | Statistics | Last Post | ||
---|---|---|---|---|
Started by Tonyanse, Today, 08:25 AM
|
3 responses
8 views
0 likes
|
Last Post Today, 10:24 AM | ||
Started by icebergdelphi, 01-11-2025, 04:01 AM
|
2 responses
28 views
0 likes
|
Last Post Today, 10:21 AM | ||
Started by Powerbucker, Today, 08:40 AM
|
2 responses
14 views
0 likes
|
Last Post
by Powerbucker
Today, 10:21 AM
|
||
Started by donto, Today, 04:16 AM
|
4 responses
19 views
0 likes
|
Last Post Today, 10:19 AM | ||
Started by rayko, 01-11-2025, 10:49 AM
|
5 responses
120 views
0 likes
|
Last Post Today, 10:16 AM |
Comment