Do I need to declare WoodiesCCI first? and How? Please help.
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Need help with WoodiesCCI
Collapse
X
-
Need help with WoodiesCCI
I used the regular CCI(14)[0] in my trategy it worked fine but when I tried to use WoodiesCCI(14)[0] I got an error.
Do I need to declare WoodiesCCI first? and How? Please help.Tags: None
-
What is the error you are getting? The syntax for WoodiesCCI are outlined here: http://www.ninjatrader-support.com/H...oodiesCCI.htmlJosh P.NinjaTrader Customer Service
-
-
-
I'm having the same problem. If I try to compile
double WCCIvalue = WoodiesCCI(14)[0];
or
int ChpZoneClr = WoodiesCCI(14).ChopZone[0];
I get "No overload for method "WoodiesCCI" takes "1" arguments
What was the resolution?Last edited by jerryvellutini; 11-04-2009, 06:16 PM.
Comment
-
Please try this for the basic Woodie's CCI value -
This for the ChopZone -Code:double myCCIVal = WoodiesCCI(2, 5, 14, 34, 25, 6, 60, 100, 2)[0];
We'll take a look at the help guide link to update overloads, please refer to what Intellisense 'offers' you when coding in the NinjaScript editor.Code:double myCCIChopZoneVal = WoodiesCCI(2, 5, 14, 34, 25, 6, 60, 100, 2).ChopZone[0];
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
648 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
369 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
108 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
572 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
573 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment