Summary
Lower Bollinger Band.
Syntax
public IndicatorDataSeries Bottom{ get; }
Example 1
//... [Parameter("Source")] public DataSeries Source { get; set; } [Parameter("BandPeriods", DefaultValue = 14)] public int BandPeriod { get; set; } [Parameter("Std", DefaultValue = 14)] public int std { get; set; } [Parameter("MAType")] public MovingAverageType MAType { get; set; } //... private BollingerBands boll; //... protected override void OnStart() { boll = Indicators.BollingerBands(Source,BandPeriod,std,MAType); } protected override void OnBar() { Print("Current Bottom Bollinger Band's price is: {0}", boll.Bottom.LastValue); } //...