Type: Indicator, Name: Ichimoku — Lines
Inputs:
Standard(26),
Turning(9),
DelayColor(Yellow),
ShowDelayLine(False);
Variables:StdLine(0),
TurnLine(0),
DelayLine(0);
StdLine = (Highest(High, Standard) +
Lowest(Low, Standard)) / 2;
TurnLine = (Highest(High, Turning) +
Lowest(Low, Turning)) / 2;
DelayLine = Close[Standard];
Plot1(StdLine, «Standard»);
Plot2(TurnLine, «Turning»);
If Close > DelayLine Then
SetPlotcolor(2, Blue)Else
SetPlotColor(2, DelayColor);
If ShowDelayLine Then
Plot3[Standard](Close, «Delayed»);