you mean list as array like:
openPrice[0]=1.10
openPrice[1]=1.15
openPrice[2]=1.12
.....
openPrice[x]=y
?
yes you can do this now ...
just define in variables these:
double openPrices[100]
double openPrice=0
int myInc=0
take 4 blocks:
- reset variable myInc=0
- For each Trade
- Modify Variable block: save Open price into variable openPrice
- custom code block where you put:
openPrices[myInc]=openPrice;
myInc=myInc+1;
after this you have open price from all trades in array openPrices[] and you can get values from it like:
openPrices[0] ... open price from first loaded trade
openPrices[1] ... open price from second loaded trade
.. etc
or using Loop/for where you use your increment variable myInc and you can get values one after another: openPrices[myInc]
of course you can resize this array using some functions from mql code, or all what you will do, all next is up to you ...