For a new chart or existing chart when selecting Point and Figure the Box Size and Reversal are not showing in the DataSeries properties window.
I am using version 8.1.4.1 64-bit
I see in the source code:
public override void ApplyDefaultValue(BarsPeriod period)
{
period.Value = 2;
period.Value2 = 3;
}
and in the OnStateChange method
if (State == State.SetDefaults)
{
Name = Custom.Resource.NinjaScriptBarsTypePointAndFigure;
BarsPeriod = new BarsPeriod { BarsPeriodType = BarsPeriodType.PointAndFigure };
DaysToLoad = 5;
DefaultChartStyle = Gui.Chart.ChartStyleType.PointAndFigure;
}
else if (State == State.Configure)
{
......
.Properties.Remove(Properties.Find("ReversalType", true));
SetPropertyName("Value", Custom.Resource.NinjaScriptBarsTypePointAndFigureB oxSize);
SetPropertyName("Value2", Custom.Resource.NinjaScriptBarsTypePointAndFigureR eversal);
}
}
So why am i not seeing these properties in the DataSeries properties window? Is this a bug? How do I fix it?
Kind Regards
Last edited by gmacjapan; Today, 08:44 PM.
Tags: None
Comment