protected override void OnBarUpdate()
{
if(CurrentBar<85)
{
return;
}
else
{
if((Close[0]>EMA(50)[0])&&
(ToTime(Time[0])<= 140000)&&
(Close[0]>Open[0])&&
(Volume[0]>=(EMA(Volume,10)[1]))&&
(Close[0]>(MAX(High,10)[1]))&&
(Slope(EMA(50),11,1)<0)&&
(CrossAbove(EMA(10),EMA(20),20))&&
(CountIf(delegate {return Close[0]>EMA(20)[0];},10)>4)&&
(CountIf(delegate {return (SMA(10)[0]<EMA(20)[0])&&(EMA(20)[0]<EMA(50)[0]);},30)>9)&&
(CountIf(delegate {return Low[0]>EMA(50)[0];},10)<3)&&
(!(Math.Abs((Slope(EMA(20),7,0)-Slope(EMA(50),7,0))/Slope(EMA(50),10,0))<.05)))
{
Plot0.Set(1);
}
else
{
Plot0.Set(0);
}
}
}
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Custom indicator not returning expected values
Collapse
X
-
Custom indicator not returning expected values
Hi... I wrote a custom indicator that I want to use to trigger alerts from Market Analyzer. I have it coded to return 1 if true, 0 if false. As it is now, the column in MA is just showing the last price, not 0 or 1. The on bar update method is below, and I attached a screen shot of the MA settings. Any help would be appreciated..
Code:Tags: None
-
Thanks much. I'm just curious though, help me understand... I get that it's 0 based, that being the case, wouldn't it just need to be 86 for on bar close? Also, why does on bar open need a different number? Thanks again..
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
68 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
41 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
24 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
27 views
0 likes
|
Last Post
|
||
|
Started by Mindset, 02-28-2026, 06:16 AM
|
0 responses
54 views
0 likes
|
Last Post
by Mindset
02-28-2026, 06:16 AM
|

Comment