Minimum (MIN)
<< Click to Display Table of Contents >> Minimum (MIN) |
Returns the lowest value over the specified period.
MIN(int period)
MIN(ISeries<double> input, int period)
Returns default value
MIN(int period)[int barsAgo]
MIN(ISeries<double> input, int period)[int barsAgo]
double; Accessing this method via an index value [int barsAgo] returns the indicator value of the referenced bar.
input |
Indicator source data (?) |
period |
Number of bars used in the calculation |
// Prints the lowest low value over the last 20 periods
// Note the above call with a barsAgo of 0 includes the current MIN of the input low series in the value. If we want to check for example for a break of this value, storing the last bar's MIN would be needed. |
You can view this indicator method source code by selecting the menu New > NinjaScript Editor > Indicators within the NinjaTrader Control Center window.