I'm creating a two-dimensional array to store the prices in.
private double[,] priceArray = new double[1,200];
An entry must be made when some condition is met.
if(conditions)
{
priceArray[0, 0] = Close[0];
}
When, in the future, the price crosses the price from this array, the sign is drawn on the chart.
But it turns out that the array priceArray[0, x] for all x contains only one last price value.
Please tell me what am I missing.
Regards

Comment