Thanks for your reply.
I've created a short video to demonstrate, on a very simple basis, how your script can collect the information from all time frames, perform analysis on all time frame and can update simultaneously on all charts (using calculate.OnEachTick) when the indicator is added to each chart where you want to see the info. With this example, I would suggest that you have some logic issues as this (I think) demonstrates the concept you are trying to employ but with different methods: https://Paul-ninjaTrader.tinytake.co...N18xMTYwNTk5Mw
Note: for anyone copying the code shown in the video, I did not add a CurrentBars[4] check (I started with just 3 and forgot to change this before the video). Here is what that line should look like: if (CurrentBars[0] < 1 || CurrentBars[1] < 1 || CurrentBars [2] < 1 || CurrentBars[3] < 1 || CurrentBars[4] < 1) return;

Comment