public PBandUpper(Bars bars, int period, string description) public static PBandUpper Series(Bars bars, int period)public PBandLower(Bars bars, int period, string description) public static PBandLowerSeries(Bars bars, int period)
public PBFastOsc(Bars bars, int period, int FSmooth, string description) public static PBFastOsc Series(Bars bars, int period, int FSmooth)public PBSlowOsc(Bars bars, int period, int FSmooth, int SSmooth, string description) public static PBSlowOsc Series(Bars bars, int period, int FSmooth, int SSmooth)
using System; using System.Collections.Generic; using System.Text; using System.Drawing; using WealthLab; using WealthLab.Indicators; using Community.Indicators;namespace WealthLab.Strategies { public class MyStrategy : WealthScript { protected override void Execute() { PBandUpper pbu = PBandUpper.Series( Bars, 14 ); PBandLower pbl = PBandLower.Series( Bars, 14 ); PlotSeriesFillBand( PricePane, pbu, pbl, Color.Blue, Color.FromArgb( 30, Color.Purple ), LineStyle.Solid, 1 ); } } }