Hy!

When I call the Kijun in Ichimoku, do the period of it is by default on 26 ?

I call it like this :

SY1DW.ichiW = new IchimokuKinkoHyo(CreateIndicatorName(SY1DW.Symbol, "ICHIW", Resolution.Second), RLLWSM);

consolidator1D_QM.DataConsolidated += (sender, baseData) =>
{
var bar = (QuoteBar)baseData;

SY1DW.BQM.Add(bar);

SY1DW.ichiW.Update(bar);
SY1DW.KijunW.Add(SY1DW.ichiW.Kijun.Current.Value);
};

Thanks !