Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Using Max/Min as y values for a Trend Channel.
Collapse
X
-
Using Max/Min as y values for a Trend Channel.
I am in the process of making a custom indicator that uses the highest high and lowest low of the last n bars to make a horizontal channel. I have used Max/Min but the indicator does not plot. However when I use High or Low it does. Is there another way of finding the Max/Min of a certain number of bars?Tags: None
-
Hello VTrades,
Thank you for your reply.
When you use Max/Min in the indicator and it doesn't plot, do you see an error in the Control Center regarding the indicator when you try to apply it to the chart? Max/Min should not generally keep the indicator from plotting. If so, what is the full text of the error? Keep in mind that there need to be enough bars loaded on the chart before you use one of them to look back at bars, so you'd want to make sure you are checking that CurrentBar is greater than the lookback period before processing. You'd want to make sure you have something like this at the beginning of OnBarUpdate:
if (CurrentBar < n)
return;
Where n is the largest lookback period you're using.
Thanks in advance; I look forward to assisting you further.
-
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
558 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
324 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
101 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
545 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
547 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment