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 firstlanetech, Today, 11:31 PM
|
0 responses
2 views
0 likes
|
Last Post Today, 11:31 PM | ||
Started by AH369, 07-03-2024, 10:17 AM
|
8 responses
832 views
1 like
|
Last Post
by Karado58
Today, 09:17 PM
|
||
Started by FAQtrader, 04-25-2024, 12:00 PM
|
58 responses
1,289 views
0 likes
|
Last Post
by rene69851
Today, 09:13 PM
|
||
Started by kevtancw, Today, 07:09 PM
|
0 responses
4 views
0 likes
|
Last Post
by kevtancw
Today, 07:09 PM
|
||
Started by LanceFulk, Today, 06:28 PM
|
0 responses
6 views
0 likes
|
Last Post
by LanceFulk
Today, 06:28 PM
|
Comment