It is showing me the current price in the MA window, I need it show me a "1" for inside bar or a 0 for not an inside bar, his screen shot does that... don't know why it won't for me...
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Need Code Help for MA
Collapse
X
-
...
It is showing me the current price in the MA window, I need it show me a "1" for inside bar or a 0 for not an inside bar, his screen shot does that... don't know why it won't for me...
-
Hi tshirtdeal,
Try restarting NinjaTrader and re-applying the indicator. You will see an error in the log tab.
The following link describes the steps to resolve this error - http://www.ninjatrader.com/support/f...ead.php?t=3170TimNinjaTrader Customer Service
Comment
-
Thanks Tim
learn something new everyday I guess, seems to be working, i got to learn this stuff better, that was so frustrating for me:
anyway, this is what I did and seems to work... make sense to you?
if(High[0] <= High[Math.Min(CurrentBar, 1)] && Low[0] >= Low[Math.Min(CurrentBar, 1)])
{
Plot0.Set(1);
}
else
{
Plot0.Set(0);
}
Comment
-
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
93 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
48 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
31 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
34 views
0 likes
|
Last Post
|
||
|
Started by Mindset, 02-28-2026, 06:16 AM
|
0 responses
70 views
0 likes
|
Last Post
by Mindset
02-28-2026, 06:16 AM
|

Comment