namespace NinjaTrader.Strategy
{
public partial class Strategy : StrategyBase
{
[Gui.Design.WizardCondition("Indicator")]
public Indicator.MyIndicator MyIndicator()
{
return _indicator.MyIndicator(Input);
}
...
I do my project in VisualStudio as dll file and get compiler error
The name '_indicator' does not exist in the current context
Is any other way to list custom indicator in startegy wizard condition window?

Comment