using System; using System.Globalization; using System.Net; using System.IO; using System.Collections.Generic; using System.Text; using System.Drawing; using WealthLab; using WealthLab.Indicators;namespace WealthLab.Strategies { public class PutCallRatio : WealthScript { protected override void Execute() { /* Location of the Put/Call Ratio, year 2003 to present */ Bars pcratio = new Bars( "PCRATIO", BarScale.Daily, 0 ); IFormatProvider format = new CultureInfo("en-US"); string URI = @"http://www.cboe.com/publish/ScheduledTask/MktData/datahouse/indexPC.csv"; if ( GetGlobal("onDemand") == null ) { /* Download the file and split into lines */ WebClient client = new WebClient(); string text = client.DownloadString(URI); string" title=" lines = text.Split(new string">"> lines = text.Split(new string[ { "\n" }, StringSplitOptions.RemoveEmptyEntries); /* Parse the Put/Call Ratio data file starting from line 2 */ for ( int i = 3; i < lines.Length; i++ ) { try { string">i"> t = lines[i.Split(','); DateTime d = DateTime.ParseExact( t0, new string[] { "M/d/yyyy" }, format, DateTimeStyles.None ); double ratio = Convert.ToDouble( t4, format ); pcratio.Add( d,ratio,ratio,ratio,ratio,1 ); } catch { PrintDebug( linesi ); } } SetGlobal( "onDemand", pcratio ); } pcratio = Synchronize( (Bars)GetGlobal("onDemand") ); ChartPane PCRatioPane = CreatePane( 30, true, true ); PlotSeries( PCRatioPane, pcratio.Close, Color.Blue, WealthLab.LineStyle.Solid, 2 ); DataSeries bbL = BBandLower.Series( pcratio.Close, 20, 2 ); bbL.Description = "Put/Call Ratio: Lower BB"; DataSeries bbU = BBandUpper.Series( pcratio.Close, 20, 2 ); bbU.Description = "Put/Call Ratio: Upper BB"; PlotSeriesDualFillBand( PCRatioPane, bbU, bbL, Color.Empty, Color.Empty, Color.Brown, WealthLab.LineStyle.Solid, 1 ); for(int bar = 50; bar < Bars.Count; bar++) { if (IsLastPositionActive) { Position p = LastPosition; if ( p.PositionType == PositionType.Long ) SellAtStop( bar+1, p, p.EntryPrice * 0.9, "Stop Loss" ); else CoverAtStop( bar+1, p, p.EntryPrice * 1.1, "Stop Loss" ); ExitAtAutoTrailingStop( bar+1, p, 5, 25, "AutoStop" ); } else { if( CrossUnder( bar, pcratio.Close, bbL ) ) BuyAtMarket( bar+1 ); if( CrossOver( bar, pcratio.Close, bbU ) ) ShortAtMarket( bar+1 ); } } } } }