using System; using System.Collections.Generic; using System.Text; using System.Drawing; using WealthLab; using WealthLab.Indicators; namespace WealthLab.Strategies { public class MyStrategy : WealthScript { bool NO_AUTO_EXECUTE = true; protected override void Execute() { if( NO_AUTO_EXECUTE ) goto halt; else goto go; halt: { NO_AUTO_EXECUTE = false; return; } go: // YOUR STRATEGY CODE GOES HERE DrawLabel( PricePane, "Executed" ); } } }