namespace NinjaTrader.Strategy
{
[Description("Enter the description of your strategy here")]
public class a00000Test : Strategy
{
#region Variables
#endregion
protected override void Initialize()
{
CalculateOnBarClose = false;
}
protected override void OnBarUpdate()
{
double barLow = Low[0];
double barHigh = High[0];
Print("BarLow " +barLow +" BarHigh " +barHigh);
}
#region Properties
#endregion
}
}

Comment