When I create the indicator, I also create the custom namespace in the same file
using ......
using myNameSpace;
namespace NinjaTrader.NinjaScript.Indicators
{
public class MyIndicator: Indicator
{
.....
[NinjaScriptProperty]
public myCustomType PropertyName
{
get;
set;
}
}
}
namespace myNameSpace
{
public myCustomType
{
......
}
}
When I type in this using declaration manualy, ninja successfuly imports the indicator and everything works fine.

Comment