EA Params list

 

Hi,

Is it possible to get the list of EA params on the OnTesterInit function?

I would like to do something like:

void OnTetsterInit()
{
  string all_params[];
  for(int i=0; i<ArraySize(all_params); i++)
  {
    ParameterGetRange(all_params[i], ...);
    // Do some verifications
  }
}

But how to fill the all_params variable? (other than manually fill it)

Att. 

 
Henrique Vilela:

Hi,

Is it possible to get the list of EA params on the OnTesterInit function?

Not that I know.
 
calli:
Not that I know.

Thank you.

Anyone else? I need something like FrameInputs, but accessible from the OnTesterInit.

Reason: