using System; using System.Drawing; using System.Collections; using WealthLab; using WealthLab.Indicators;namespace WealthLab.Strategies { public class TradingHighYieldBonds : WealthScript { private StrategyParameter _period; private StrategyParameter _atClose; private StrategyParameter _dayOfMonth; private DateTime _endofMonth; private Queue _priceQueue = new Queue(); // FIFO queue private double AverageQueue() { if (_priceQueue.Count == 0) return 0; double sum = 0; foreach(Object obj in _priceQueue) sum += (double)obj; return sum / _priceQueue.Count; } public void SetNextMonth() { if (_dayOfMonth.ValueInt == 0) return; int y = _endofMonth.Year; int m = _endofMonth.Month; m++; if (m > 12) { m = 1; y++; } _endofMonth = new DateTime(y, m, _dayOfMonth.ValueInt); } public double MonthlyAverage(double currentPrice) { if (_priceQueue.Count == _period.ValueInt) { _priceQueue.Dequeue(); _priceQueue.Enqueue(currentPrice); return AverageQueue(); } else { _priceQueue.Enqueue(currentPrice); return AverageQueue(); } } public TradingHighYieldBonds() { _period = CreateParameter("MA Period",8,3,21,1); _atClose = CreateParameter("Trade AtClose",0,0,1,1); _dayOfMonth = CreateParameter("Day of Month",0,0,28,1); } protected override void Execute() { HideVolume(); int day = _dayOfMonth.ValueInt; bool tradeAtClose = _atClose.ValueInt == 1; bool isLastDayofMonth = false; _priceQueue = new Queue(); DataSeries ma = new DataSeries(Bars, "Monthly Average(" + _period.ValueInt.ToString() + "), dayOfMonth = " + day.ToString()); if (_dayOfMonth.ValueInt != 0) _endofMonth = new DateTime(Date0.Year, Date0.Month, day); ma0 = Close0; if (Date0 >= _endofMonth) SetNextMonth(); for(int bar = 1; bar < Bars.Count; bar++) { bool isLastBar = (bar == Bars.Count - 1); isLastDayofMonth = isLastBar; int today = Datebar.Day; if (!isLastBar) { if (day == 0) // test calendar months isLastDayofMonth = Datebar.Month != Datebar + 1.Month; else if ( today == day || (Datebar+1 > _endofMonth) ) isLastDayofMonth = true; } if (isLastDayofMonth) { SetBackgroundColor(bar, Color.FromArgb(30, Color.Blue)); mabar = MonthlyAverage(Closebar); SetNextMonth(); } else { mabar = mabar - 1; continue; } if (bar < _period.ValueInt) continue; if (IsLastPositionActive) { Position p = LastPosition; if (Closebar < mabar) { if (tradeAtClose) SellAtMarket(bar, p); else SellAtMarket(bar + 1, p); } } else if (Closebar > mabar) { if (tradeAtClose) BuyAtClose(bar); else BuyAtMarket(bar + 1); } } PlotSeries(PricePane, ma,Color.Blue, LineStyle.Solid, 2); } } }