I get this weird behavior where chikou does not lag 26 price behind when running on a live account but it works properly when running in backtest

Here is the snippet of my Ichimoku

Code
Ichimoku(9, 26, 53, 0);
vars Chikou = series(Chikou(-26));


As you can see the shift of chikou is set to -26 since I used PEEK flag because on the manual the chikou description:

Quote

The traditional Ichimoku requires a future peeking Chikou line (Shift = -26); this can be achieved by setting Shift = 0 and moving the rest of the Ichimoku forward by Offset = 26.


by setting the Shift = 0 of chikou the line will just plot on the priceClose() since the souce code of chikou from indicators.c is a priceClose(Shift) so following the description above would mess up the chart.
I compared the chart from Zorro and TWS and everything match except the Chikou line

Did i miss anything using the Chikou?

Attached Files backtest.pngchikou live.png
Last edited by marr; 07/26/19 07:17.