protected override void Initialize()
{
Add(new Plot(Color.FromKnownColor(KnownColor.Orange), PlotStyle.Line, "Plot0"));
Add(PeriodType.Day, 1);
Overlay = true;
}
protected override void OnBarUpdate()
{
Plot0.Set(1);
}
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Multi-Time Frame Indicator in Market Analyzer
Collapse
X
-
Multi-Time Frame Indicator in Market Analyzer
I was trying to have the value from one of my multi-time frame indicators show up in a market analyzer column but the value of the indicator would not display. I created a test indicator using the wizard to see if I could just get a 1 to show up in the market analyzer. This worked successfully, but when I add the line "Add(PeriodType.Day, 1);" to Initialize() the value displayed in the market analyzer is now 0. I have the main data series set to 60 min data. Is it possible make this work? The code below produces a 0 in the indicator column when the main data series set to 60 min.
Code:Tags: None
-
-
Hello,
First thing that needs added is a bar check to make sure you have enough bars. This is important for daily data.
if(CurrentBars[0] < 5 && CurrentBars[1] < 5)
return;
Right before you Plot0.Set(1);
http://www.ninjatrader.com/support/h...urrentbars.htm
Let me know if I can be of further assistance.
BrettNinjaTrader Product Management
Comment
-
Of course, thanks. I forgot to look in the log, the error message there always reminds me to add that line in. That also helped me understand what was happening with my original indicator. I simply needed to increase the "# of bars to look back" for my original indicator, I didn't have enough data loaded. I guess my confusion was in that they worked fine on my chart but not in the Market Analyzer.
Thanks again for the help and the extremely quick responses. I really appreciate it and I did also want to say that the support here is First Class.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
115 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
161 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
83 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|
||
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
127 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
87 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|

Comment