Summary
Low price series of historical trendbars.
Syntax
public DataSeries Low{ get; }
Example 1
[Parameter(DefaultValue = 14)] public int period { get; set; } private SimpleMovingAverage smaLow protected override void Initialize() { //Simple moving average of the Low price series for the specified period smaLow = Indicators.SimpleMovingAverage(MarketSeries.Low, period); }