using System; using System.Collections.Generic; using System.Text; using System.Drawing; using WealthLab; using WealthLab.Indicators; using TASCIndicators;namespace WealthLab.Strategies { public class Swing350 : WealthScript { private StrategyParameter rsiPer; private StrategyParameter smaPer; private StrategyParameter donchPer; private StrategyParameter gaussPer; public Swing350() { gaussPer = CreateParameter("Gaussian Period",50,10,100,5); donchPer = CreateParameter("Donchian Period",13,8,21,1); rsiPer = CreateParameter("RSI Period",3,2,21,1); smaPer = CreateParameter("SMA(RSI)Period",3,2,21,1); } protected override void Execute() { bool longSetup = false; bool sellSetup = false; Font font = new Font("Wingdings", 8, FontStyle.Bold); string diamond = Convert.ToChar(0x0077).ToString(); // Create and Plot Indicators DataSeries gauss = Gaussian.Series(Close, gaussPer.ValueInt, 3); // 3 poles DataSeries rsi = RSI.Series(Close, rsiPer.ValueInt); DataSeries smaRsi = SMA.Series(rsi, smaPer.ValueInt); DataSeries upper = Highest.Series(High, donchPer.ValueInt); DataSeries lower = Lowest.Series(Low,donchPer.ValueInt); DataSeries mid = (upper + lower) / 2d; mid.Description = "Mid Donchian"; ChartPane paneRSI = CreatePane(40,true,true); PlotSeries(paneRSI, rsi,Color.FromArgb(128,0,128,0), LineStyle.Solid, 1); PlotSeriesOscillator(paneRSI, smaRsi,80,20,Color.FromArgb(63,0,0,255),Color.FromArgb(63,255,0,0),Color.FromArgb(255,0,0,128),LineStyle.Solid, 1); DrawHorzLine(paneRSI, 50, Color.Pink, WealthLab.LineStyle.Dashed, 2); PlotSeries(PricePane,gauss,Color.Gray,LineStyle.Solid,1); PlotSeries(PricePane,upper,Color.Red,LineStyle.Dashed,1); PlotSeries(PricePane,lower,Color.Green,LineStyle.Dashed,1); PlotSeries(PricePane,mid,Color.Blue,LineStyle.Solid,1); PlotStops(); for(int bar = GetTradingLoopStartBar(1); bar < Bars.Count; bar++) { bool trendBullish = gaussbar - gaussbar - gaussPer.ValueInt / 2 > 0 && gaussbar > gaussbar - 2; if (trendBullish) SetBackgroundColor(bar, Color.Azure); // Color bars. OHLC Bar chart recommended! if (smaRsibar < 50) SetBarColor(bar, Color.Red); else if (smaRsibar >= 50) SetBarColor(bar, Color.Green); // Draw the Alert diamonds if (smaRsibar > 80) { AnnotateBar(diamond, bar, true, Color.Red, Color.Transparent, font); sellSetup = true; } else if (smaRsibar < 20) { AnnotateBar(diamond, bar, false, Color.Green, Color.Transparent, font); longSetup = true; } if (IsLastPositionActive) { longSetup = false; Position p = LastPosition; if (Closebar < p.RiskStopLevel) SellAtClose(bar, p, "Stop"); else if (sellSetup) { if (Lowbar < Lowest.Series(Low, 2)bar - 1) SellAtClose(bar, p, "Swing"); } } else if (trendBullish) { sellSetup = false; RiskStopLevel = Highest.Series(High, 2)bar - 1 * 0.95; if (longSetup ) BuyAtStop(bar + 1, Highest.Series(High, 2)bar - 1); } } } } }