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 Mindset, 04-21-2026, 06:46 AM
|
0 responses
105 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
147 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
71 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|
||
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
125 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
79 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|

Comment