Ichimoku is a moving average based trend identification system. It contains more data points than standard candlestick charts and thus provides a clearer picture of potential price action.
Leading span 1, this line forms one edge of the kumo, or cloud.If the price is above the Senkou span, the top line serves as the first support level while the bottom line serves as the second support level.
//...privateIchimokuKinkoHyoichimokuKinkoHyo;//...protectedoverridevoidOnStart(){ichimokuKinkoHyo=Indicators.IchimokuKinkoHyo(tenkanSenPeriods,kijunSenPeriods,senkouSpanBPeriods);}protectedoverridevoidOnBar(){Print("ChikouSpan Value = {0}",ichimokuKinkoHyo.ChikouSpan.LastValue);Print("KijunSen Value = {0}",ichimokuKinkoHyo.KijunSen.LastValue);Print("SenkouSpanA Value = {0}",ichimokuKinkoHyo.SenkouSpanA.LastValue);Print("SenkouSpanB Value = {0}",ichimokuKinkoHyo.SenkouSpanB.LastValue);Print("TenkanSen Value = {0}",ichimokuKinkoHyo.TenkanSen.LastValue);//...}