namespace NinjaTrader.NinjaScript.Indicators
{
public partial class Indicator
{
public string CoolString(string str){
return str;
}
}
}
else if (State == State.Configure){
Print(CoolString("test"));
}
Error compiling export assembly: c:\Users\scooke\Documents\NinjaTrader 8\bin\Custom\Indicators\CoolIndicator.cs(51,11) : error CS0103: The name 'CoolString' does not exist in the current context

Comment