Looking at it again it actually looks like Add("ABC", PeriodType.Day,3); & Lows[1][0] is giving the low from 4 days back?
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Lowest low..3day
Collapse
X
-
Lowest low..3day
How would I go about getting the lowest low of the previous 3 days? I was trying to use Add("ABC", PeriodType.Day,3); and use Lows[1][0] but that apparently gives the value for 3 days back instead of the whole 3day period.
Looking at it again it actually looks like Add("ABC", PeriodType.Day,3); & Lows[1][0] is giving the low from 4 days back?Last edited by zachj; 12-24-2013, 08:17 AM.Tags: None
-
Hi Zachj,
Thank you for your post.
You may want to look into using LowestBar() function to get the lowest price over a specified look back period -
http://www.ninjatrader.com/support/h...?lowestbar.htm
Additionally, you would want to use one day instead of three and use try this code -
Let me know if I can be of further assistance.Code:LowestBar(Lows[1], 3);
Cal H.NinjaTrader Customer Service
-
Zachj,
Lows is used for the BarsArray collection to access the particular Data Series.
In this case Lows[1] will use the first Data Series that you have added to the script.
Index [0] will always be the primary Data Series.
http://www.ninjatrader.com/support/h....html?lows.htmCal H.NinjaTrader Customer Service
Comment
-
Originally posted by NinjaTrader_Cal View PostHi Zachj,
Thank you for your post.
You may want to look into using LowestBar() function to get the lowest price over a specified look back period -
Additionally, you would want to use one day instead of three and use try this code -
Let me know if I can be of further assistance.Code:LowestBar(Lows[1], 3);
This isn't giving the price though, it's giving the # of bars back? I see it in the print output, it show 1, 2 or 3 not a price.
Comment
-
Zachj,
I do apologize, that is indeed correct.
You will need to use MIN(Lows[1], 3); That will return the lowest price from 3 bars ago.
http://www.ninjatrader.com/support/h...inimum_min.htmCal H.NinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CarlTrading, 03-31-2026, 09:41 PM
|
1 response
152 views
1 like
|
Last Post
|
||
|
Started by CarlTrading, 04-01-2026, 02:41 AM
|
0 responses
89 views
1 like
|
Last Post
by CarlTrading
04-01-2026, 02:41 AM
|
||
|
Started by CaptainJack, 03-31-2026, 11:44 PM
|
0 responses
131 views
2 likes
|
Last Post
by CaptainJack
03-31-2026, 11:44 PM
|
||
|
Started by CarlTrading, 03-30-2026, 11:51 AM
|
0 responses
127 views
1 like
|
Last Post
by CarlTrading
03-30-2026, 11:51 AM
|
||
|
Started by CarlTrading, 03-30-2026, 11:48 AM
|
0 responses
107 views
0 likes
|
Last Post
by CarlTrading
03-30-2026, 11:48 AM
|

Comment