View Full Version : how to hide my custom indicators
tbtrades
08-21-2008, 03:03 PM
I don't like others to see my customer indicators...how can i hide it..
For example. MACD(12,26,9)...how can I hide (12,26,9) data?
NinjaTrader_Ben
08-21-2008, 03:11 PM
Hello,
When you apply the indicator to the chart, remove the text in the Label parameter field and the indicator name and parameters will be removed.
You cannot remove just the (etc..) part.
Rollins
08-21-2008, 03:18 PM
Name = "";
NinjaTrader_Jessica
08-21-2008, 03:28 PM
If you right click in your chart, select Indicator, highlight the Indicator, then view its properties to the right, you can delete all information in the Label field.
Rollins
08-21-2008, 03:59 PM
Parameter's in a category other than "Parameters" will not appear
e.g.:
[Description("")]
[Category("FilePath")]
public string Path
{
get { return path; }
set { path = value; }
}
tbtrades
08-21-2008, 10:10 PM
where should i make the change the for coding?
NinjaTrader_Josh
08-21-2008, 11:59 PM
In the "Parameters" region of the code. Near the bottom. You need to expand it by pressing the + sign next to it on the left.