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
Create and Test Forex Strategies
You are not logged in. Please login or register.
Forex Software → Help and Support → 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
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:
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
tq Popov
Forex Software → Help and Support → EA input parameter questions
Powered by PunBB, supported by Informer Technologies, Inc.