Dear Team,
I have created a composite chart by plotting OHLC with the following code. I have saved the chart. My question is if the data for the symbols CAT and C are real time, will the chart be dynamic to plot the chart based on real time figures.
Regards,
O = Foreign("CAT", "O") / Foreign("C", "O");
C = Foreign("CAT", "C") / Foreign("C", "C");
H = Foreign("CAT", "H") / Foreign("C", "H");
L = Foreign("CAT", "L") / Foreign("C", "L");
PlotOHLC( O, H, L, C, "(" + Symbol2+" / "+Symbol1 + ") spread", Color, style );
Moderator comment: Use code tags! I had to fix the formatting of your message because it wasn’t using code tags as written in “How to use this site”