public class Strategy1 : Strategy
{
private double volumeMultiple = 3;
private double stopLossPct = 1;
private double trailingStopPct = 0.5;
private int atrPeriod = 28;
private double trailStop = 0;
private double StopLoss = 1;
private double prevValue = 0;
private bool justEntered = false;
I want to hide these from the graphical interface.
I want to only be able to edit them on ninjascript editor. and they don't show on the strategy parameters when I add it to the chart.
How can I achieve that please?

Comment