is it possible???

 

ive just come up with very useful /for me/ idea.....

is it possible to declare a lets say a var in such format

var field_1 (x,y,z,a,b,c)

var field_2 (d,g,h,i,j,k)

...

...

of ur trading parameters so this are visible in expert as a fields to fill up in sort of password like.

lets say ive got few sets of set-ups for different market conditions or currencies.... so i cud just past into the fild lets say a keyword:

field_1: 01,12,12,33,2,6

field_2: 88,77,5,23,1,3

...

...

so ea will work according to them,

// plz i no that "google" trick... so ... do not...:)

 
nicwaznego:
is it possible to declare a lets say a var in such format
var field_1 (x,y,z,a,b,c)
of ur trading parameters so this are visible in expert as a fields to fill up in sort of password like.
extern string field_1 = "01,12,12,33,2,6";

You code will have to parse the string and convert the values yourself. Found via Google Split String.

Obviously you can't vary the values in the tester.

 
and this is it???? thanks a lot.