Based on what u described u don't need an array. The date filter can b created via stringing together dates using the reserved word "or".If I could find some code for a single array, I am sure I could work it out.
Code:
if d=1160226 or d=1160225 {or d=next d in ur list} then begin
plot1(c,"c"); // test this in an indicator until you're certain it's working right
// then move it to a strategy and replace your plots with buy and sell commands
end;
Code:
var: x(0);
array: ohyeah[100](0);
once begin
ohyeah[1]=1160226;
ohyeah[2]=1160225;
// complete this list for all your dates up to your 100th date
ohyeah[100]=1010203;
end;
for x=1 to 100 begin
if d=ohyeah[x] then begin
plot2(c,"c"); // replace this plot with your strategy code
end;
end;