NinjaCustomer
12-08-2008, 05:22 PM
Hi, my indicator code goes something like this... which is a problem of course since the enum is outside the indicator... how do I put it inside the indicator?
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
{
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
{