I'm trying to create a file to write to for debugging purposes on a trailing stop because for somereason it sometimes works and sometimes doesn't and i want to see why it is happening, i entered the code the same way as in the efs help section but it doesn't work, anyone know what i'm doing wrong?
var f = new File("list.txt");
f.open("at+");
writeIn(diff1);
f.close();
diff1 is the variable for the stop.
var f = new File("list.txt");
f.open("at+");
writeIn(diff1);
f.close();
diff1 is the variable for the stop.
Comment