Optimizing Custom Indicators

Avatar
  • updated
  • Completed

So a while back I used to use an MT4 EA. The one thing that this EA excelled at was how it handled custom indicators.

So here's the Idea -

There will be a bunch of generic variables:

Image 5284

As you can see you can set the start, step and stop for each as you generally would while optimizing.


Then you can use any of the variables to your liking. For example, if you only want to optimize the first parameter of your custom indicator, then replace that with one of the INPUT_xx and pass the rest of the parameters normally.

Image 5285

This also gives you the added benefit of using the same variable on multiple indicators. So for example say you want to use indicator x for entry and indicator y for exit, but want to always have them in the same period when optimizing, then just pass the same variable to both.

Hope I've explained it clearly enough.

Avatar
0
Andrey Khatimlianskyi
  • Planned (collecting votes)

Explained perfectly! Let's do it.

Avatar
0
mel
Quote from Andrey Khatimlianskyi

Explained perfectly! Let's do it.

I guess the question now becomes, what inputs or signals will be removed to add so many of these?

Avatar
2
Andrey Khatimlianskyi
Quote from mel

I guess the question now becomes, what inputs or signals will be removed to add so many of these?

I've already hidden the GUI settings, so we have room for 10 new inputs.

Avatar
0
Andrey Khatimlianskyi
  • Started