Is there a way to hide a plot from the parameter grid but have it still show up in strategy builder?
[Browsable(false)]
[XmlIgnore]
public Series<double> V14EMA
{
get { return Values[0]; }
}
this doesn’t seem to work and Adding the plot in state configure instead of state data loaded hides it from both
fc77
2
Not sure about strategy builder, but I know this will remove plots from the indicator properties menu. Might be worth a try.
1 Like
Mark
3
You could also try modifying the type converter. This allows you to manually determine what (and when) properties are displayed.
Here’s a link to the NT sample project
3 Likes