Hello,
I need to do this:
var listm = new List<double>();
for(int z = 0; z < 40; z++)
{
fibo2 = (listm[z] - lowPrice0) / (Ncma - lowPrice0);
// Is there a way to replace the for loop with some Linq method to do the same?
//I am getting lags above iteration 100 and crash above 150. The for loop is part of a nested for loop.
//Maybe it wont solve the problem but i can at least test something else.
Thank you