public static Sum Series(WealthLab.DataSeries ds, int period) public Sum(DataSeries ds, int period, string description) public static double Value(int bar, DataSeries ds, int period)
using System; using System.Collections.Generic; using System.Text; using System.Drawing; using WealthLab; using WealthLab.Indicators;namespace WealthLab.Strategies { public class PriceVolumeRank : WealthScript { protected override void Execute() { DataSeries dsBVUD = new DataSeries(Bars,"BigVolumeUpDays"); DataSeries dsBVDD = new DataSeries(Bars,"BigVolumeDownDays"); SMA smaVol = SMA.Series(Volume,50); int days = 5; for(int bar = GetTradingLoopStartBar(50); bar < Bars.Count; bar++) { //A big volume up day would equal //If close is greater than yesterday and volume was 150% greater than the average volume for the last 50 days count as big up volume day. //A big volume down day would equal //If close is less than yesterday and volume was 150% greater than the average volume for the last 50 days count as big down volume day. bool bigVol = Volumebar > smaVolbar-1 * 1.5; int upDay = (Closebar > Closebar-1) && bigVol ? 1 : 0; int dnDay = (Closebar < Closebar-1) && bigVol ? 1 : 0; //I'd like to count the number of Up days - the number of down days on heavy volume over the last 50 days. //Then the buys signal would be the count of Up days on heavy volume 2 greater that the down days on heavy volume. dsBVUDbar = upDay; dsBVDDbar = dnDay; } dsBVUD = Sum.Series(dsBVUD,50); dsBVDD = Sum.Series(dsBVDD,50); ChartPane cpD = CreatePane( 30,true,true ); ChartPane cpU = CreatePane( 30,true,true ); PlotSeries( cpU, dsBVUD, Color.Red, WealthLab.LineStyle.Histogram, 3 ); PlotSeries( cpD, dsBVDD, Color.Blue, WealthLab.LineStyle.Histogram, 3 ); for(int bar = 1; bar < Bars.Count; bar++) { if (IsLastPositionActive) { // Exit after N days Position p = LastPosition; if ( bar+1 - p.EntryBar >= days ) SellAtMarket( bar+1, p, "Timed" ); } else { if (dsBVUDbar > dsBVDDbar * 2) { SetBackgroundColor( bar, Color.FromArgb( 30, Color.Red ) ); BuyAtMarket(bar+1); } } } } } }