When applying the same indicator to different charts it appears these arrays are sharing the same values
When the static declaration is removed the sharing stops.
Is this the behavior you would anticipate ?
I feel this may be a possible blind spot in my c# skills??
thx
private static int[] Deco = new int[50]; private static int[,] SubDeco = new int[100, 25];
Comment