for example, if I leave it outside... and have another indicator with the same enum name, there will be compilation problems because of the scope.
public enum Enum1
{
A,B,C
}
// This namespace holds all indicators and is required. Do not change it.
namespace NinjaTrader.Indicator
{

Comment