forex software

Create and Test Forex Strategies

forex software

Skip to forum content

Forex Software

Create and Test Forex Strategies

You are not logged in. Please login or register.


Forex Software → Help and Support → EA input parameter questions

Pages 1

You must login or register to post a reply

RSS topic feed

Posts: 3

Topic: EA input parameter questions

hi folks

I notice when I save as EA, some of the indicator parameters are automatically shown as EA input parameter, is there option to show/hide these EA input parameters?


Pls advise

Re: EA input parameter questions

You can remove the input parameters you want with a minor modification of the expert.

To do it open the EA in the MT editor. You will see the indicator parameters around line 44:


http://s12.postimg.org/9xv1dko0t/screenshot_1.png

Remove the input modifier in order to hide the parameter from the input form.


static input string IndicatorName0 = "Ichimoku Kinko Hyo"; // ------ Indicator parameters ------
input int Slot0IndParam0 = 11; // Tenkan
input int Slot0IndParam2 = 23; // Kijun
input int Slot0IndParam4 = 76; // Senkou Span B

becomes

static string IndicatorName0 = "Ichimoku Kinko Hyo"; // ------ Indicator parameters ------
int Slot0IndParam0 = 11; // Tenkan
int Slot0IndParam2 = 23; // Kijun
int Slot0IndParam4 = 76; // Senkou Span B

Re: EA input parameter questions

tq Popov

Posts: 3

Pages 1

You must login or register to post a reply

Forex Software → Help and Support → EA input parameter questions

Similar topics in this forum