I'm one indicator with some custom parameters.
Some of the parameters are only for visual appearance (ShowBackGroundColor, by example) and I will not want to appear in the call to indicator from other indicators, but I want to appear in the indicator properties window.
I searched the forum and have not found the solution.
Can anyone help me?
Thank you in advance.
[Description("Show Back Ground Color from trend")]
[GridCategory("Visual")]
public bool ShowBackGroundColor
{
get { return showBackGroundColor; }
set { showBackGroundColor = value; }
}
[Description("Bars Filter to reverse trend")]
[GridCategory("Parameters")]
public int FilterBars
{
get { return filterBars; }
set { filterBars = Math.Max(0, value); }
}


Comment