// This namespace holds all strategies and is required. Do not change it.
namespace NinjaTraderMA.Strategy
{
/// <summary>
/// Simple moving average cross over strategy.
/// </summary>
///
/// sample 1 a copy and paste from the originag Sample file
/// [Description("Simple moving average cross over strategy.")]
/// public class SampleMACrossOver : Strategy
///Sample 2
[Description("Moving average cross over strategy.")]
public class MACrossOver : Strategy

Comment