I'm not sure if this is expected behavior or a bug. I added an input to an indicator as defined below.
private BarsPeriod iMtfBars1 = new BarsPeriod { BarsPeriodType = BarsPeriodType.Minute, BarsPeriodTypeName = Custom.Resource.BarsPeriodTypeNameMinute, Value = 1 };
[NinjaScriptProperty] [Display(Name = "01. MTF BarType Selection", Description = "MTF TimeFrame Bar parameters", GroupName = "bMtfParameters", Order = 1)]
public BarsPeriod MtfBars1
{
get { return iMtfBars1; }
set { iMtfBars1 = value; }
}
However, when I create a chart using the bartype, the names are as I would expect. For example, a Renko chart will show Brick size (rather than Value).
I'm not sure if this is an error, or expected. I would expect the inputs to show as the same regardless as to where you're pulling them from.
Thank you in advance

Comment