Details (settings) of EA displayed on chart

 

Hello Traders,

Anyone have an indicator that can show the EA settings on chart.

Thanks a lot

Happy trading Guys!

 

My guess is that you'd like your EA to print out status on the chart itself.

This can be accomplished using a string and the comment() function.

- As you go through your EA, add items to string with "\n" on end.

- At end of start(), type comment(string);

It will display all of the information on your chart.

Example:

string s = "Whatever EA by Me\n";

s = s + "More info\n";

s = s + "Some more.\n";

comment(s);

 

Thanks a lot for your reply but my ea was custom made and i cannot go into the coding, more over i am not a coder.

It would be great if I hade a simple indicator placed in chart and I can see the settings of the EA.

Once again thanks

 

Thanks a lot for your reply but my ea was custom made and i cannot go into the coding, more over i am not a coder.

It would be great if I hade a simple indicator placed in chart and I can see the settings of the EA.

Once again thanks

 

Jeff,

I do not think this is possible. I did a quick check through the functions available to the language and I don't see anything referencing attached EAs.

If you have the source I can edit the EA to display the information. If not, there may still be on option. If this is an EA that utilizes files for storage, one of them may be used to store settings. I've created EAs like this in the past, so it's a possibility...

Otherwise, I think you're boned, sorry.

Reason: