Solo gli utenti che hanno acquistato o noleggiato il prodotto possono lasciare commenti
Vladislav Andruschenko  
Pia Basson #:
Bought this and tried it and it does not work, no English manual and support won't help. Zero stars.
I don't have the technical ability to help.  before buying, you can use the product for free.  until we have peace, I cannot work.  sorry.
DadeSubandryo  
Vladislav Andruschenko #:
This is my full instructions and examples 
https://www.expforex.com/publ/11-1-0-207

how to properly fill separete by commas in mt4. even though I followed your instructions correctly. the indicator with your custom EA doesn't even work. 

At least there must be directing can not work as usual. because I already bought your product. so I don't buy things to be in vain

Vladislav Andruschenko  
DadeSubandryo #:

how to properly fill separete by commas in mt4. even though I followed your instructions correctly. the indicator with your custom EA doesn't even work. 

At least there must be directing can not work as usual. because I already bought your product. so I don't buy things to be in vain

I try to answer as much as possible. This store is the only way to live. if your indicator is not working, then you should investigate the reasons. it is a universal trading advisor. I have no opportunity to study your indicators. unfortunately. commas work. too little information from you. sorry.
DadeSubandryo  
Vladislav Andruschenko #:
I try to answer as much as possible. This store is the only way to live. if your indicator is not working, then you should investigate the reasons. it is a universal trading advisor. I have no opportunity to study your indicators. unfortunately. commas work. too little information from you. sorry.

good. if you respond like this. Help me. I've tried your comma menu always failed & doesn't work. If this works I will change my comment with five stars. because it's your job as a seller

this indicator for buffer, variable & value for commas custom EA :

Vladislav Andruschenko  
DadeSubandryo #:

good. if you respond like this. Help me. I've tried your comma menu always failed & doesn't work. If this works I will change my comment with five stars. because it's your job as a seller

this indicator for buffer, variable & value for commas custom EA :

I don't understand what words you are typing here. they are not parameter names. this is text. You must write the parameter names here. parameter names, not tooltip text. to find out the names, you must save your indicator's set file, open it and you will have the parameter names, not the tooltip text. You can contact the author of your indicator and find out the names of the variables.
DadeSubandryo  
Vladislav Andruschenko #:
I don't understand what words you are typing here. they are not parameter names. this is text. You must write the parameter names here. parameter names, not tooltip text. to find out the names, you must save your indicator's set file, open it and you will have the parameter names, not the tooltip text. You can contact the author of your indicator and find out the names of the variables.
great. like this I do not know. If the maker does not guide us, we will not understand. ok I will ask the indicator maker
Vladislav Andruschenko  
DadeSubandryo #:
great. like this I do not know. If the maker does not guide us, we will not understand. ok I will ask the indicator maker
You need to write inputs, no text,  only inputs, like 1, 2 ,3

SIGNALStrategyInputs

External parameters for custom indicator, in SignalTypeIndicator = xArrow mode

You can specify the external variables of the indicator as they are written in the settings table, separated by commas!

Important: You must respect the order of variables and the type of variables.

Variable typeRecordImportantExample
intx 

1

10

777

doublexxBe sure to specify through the point.

0.2

1.10

string"x"

In MT5: Be sure to specify the string (not numbers). You can write as "X"

In MT4: Attention! In the version for MetaTrader4, it is forbidden to transfer string parameters! When passing string parameters, the indicator may not load correctly!

 

"XXX"

"TEST SAME"

datetimeD'year.month.day'

Mandatory indication of D and single quotes

If you need to write without a specific date, then you need to write as a string: "00:00" or "23:59"

D'2018.11.08 '

D'2015.01.01 '

"00:00"

"23:59"

colorC'red / green / blue 'Mandatory indication of C and single quotes. Color enumeration through slash /

C'0 / 128/128 '

C'0 / 256/0 '

enum (list, enumeration)x (digit)

If your indicator has a list (selecting a parameter from the list), i.e. In the settings you need to write a number!

An example of how to do this: https://www.expforex.com/forum/69-965-25469-16-1587798560

1

eg

int InpCCIPeriod = 1;
double InpCCIPeriod2 = 2.0;
color InpCCIPeriod3 = clrGreen;
string InpCCIPeriod6 = "text";
datetime InpCCIPeriod4 = 2018.11.08;
bool InpCCIPeriod5 = false;

written as:

SIGNALStrategyInputs = 1,2.0, C'0 / 128/0 ', " text ", D'2018.11.08', false

Example:


mopheus black  
mopheus black #:

Hi Vladislav,


I buy your EA Builder very nice, but I had  a problem with the property SIGNALStrategyInputs.

It is not possible to import text (name of the Indicator) I use the indicator:

https://www.mql5.com/en/market/product/53124


Thanks mopheus 

Additional :

It will very good, if you can load settings by the set.

The best was, if we can load the own saved set file...... like a path  solution: \\MQL4\Presets\NameOfTheSet.set

Vladislav Andruschenko  
mopheus black #:

Hi Vladislav,


I buy your EA Builder very nice, but I had  a problem with the property SIGNALStrategyInputs.

It is not possible to import text (name of the Indicator) I use the indicator:

https://www.mql5.com/en/market/product/53124


Thanks mopheus 

Hello. I don't have computer now, sorry. 
For your question. 

enum (list, enumeration)x (digit)

If your indicator has a list (selecting a parameter from the list), i.e. In the settings you need to write a number!

An example of how to do this: https://www.expforex.com/forum/69-965-25469-16-1587798560

mopheus black  

he problem is, I think the field is a textfield and you ignore it ! (is a  "ab" field)(for example as commentation field used)

Have attention of the screenshot ! 

 

Vladislav Andruschenko  
mopheus black #:

he problem is, I think the field is a textfield and you ignore it ! (is a  "ab" field)(for example as commentation field used)

Have attention of the screenshot ! 

 

String forbidden 

string"x"

In MT5: Be sure to specify the string (not numbers). You can write as "X"

In MT4: Attention! In the version for MetaTrader4, it is forbidden to transfer string parameters! When passing string parameters, the indicator may not load correctly!

 

mopheus black  
Vladislav Andruschenko #:
String forbidden 

string "x"

In MT5: Be sure to specify the string (not numbers). You can write as "X"

In MT4: Attention! In the version for MetaTrader4, it is forbidden to transfer string parameters! When passing string parameters, the indicator may not load correctly!

 

Ah ok....I don´t see it ........I must look for other solution.

Where I can set TP1, TP2 and TP3 and the SL ? 

I understand the section 

 


Thanks

Vladislav Andruschenko  
if your indicator has separate signals buffers for tp(3) and sl(6), then you can set them up in the same way as the main signal.  
or set your take profit and stop loss.  
Only one take profit and 1 stop loss.
Maris Zujevs  

Long time I was looking for trading strategies and possibilities all arround and i am here and I bought EA and it is realy good.Can do my experiments and play arround and learn.

There is only one thing missing and that is my Question.Is it possible to add more custom indicator filter options?

Vladislav Andruschenko  
MARISZ #:

Long time I was looking for trading strategies and possibilities all arround and i am here and I bought EA and it is realy good.Can do my experiments and play arround and learn.

There is only one thing missing and that is my Question.Is it possible to add more custom indicator filter options?

I am very pleased thank you.  Unfortunately, there is currently no technical possibility to change something.  I apologize for the inconvenience.
Maris Zujevs  
Vladislav Andruschenko #:
I am very pleased thank you.  Unfortunately, there is currently no technical possibility to change something.  I apologize for the inconveniencW

Would you be able to add your code of exp averager to my existing EA?

Wolfgang Rockert  
Pia Basson #:
Bought this and tried it and it does not work, no English manual and support won't help. Zero stars.

Works very good. You have to learn.

ROBERT URBANSKI  

Hi Vladislav.
How can I set for
1. open next new buy order every new green candle
2. open next new sell order every new red candle .
Thank you


Vladislav Andruschenko  
ROBERT URBANSKI #:

Hi Vladislav.
How can I set for
1. open next new buy order every new green candle
2. open next new sell order every new red candle .
Thank you


Hello

Maybe this 
ONlyOnePosbySignalTrade only 1 current main position in one direction.
If the Expert Advisor opens the SELL position, then all other signals on the SELL will be ignored
OnePosPerDirectionOpening of 1 deal on 1 direction
e.g.:
  1. if OnePosPerDirection true and ONlyOnePosbySignal false then the advisor can open 1 Buy deal on a signal and 1 Sell deal on a signal;
  2. if OnePosPerDirection false and ONlyOnePosbySignal true then the advisor can only open one deal at a signal, either Buy or SELL;
  3. if OnePosPerDirection false and ONlyOnePosbySignal false then the advisor can open any deals for each indicator signal;
OnlyOnePositionPerMagicOpening of 1 position on 1 magic,
The advisor checks whether there are open positions for this magic number in other currency pairs. If there is no position, the advisor will open the deal at the signal, and the remaining advisors will wait for the completion of this deal.
  1. If OnePosPerDirection = false, then OnlyOnePositionPerMagic = true works like this: 1 position by magic number is allowed;
  2. If OnePosPerDirection = true, then OnlyOnePositionPerMagic = true works as follows: 1 position of each direction is allowed by magic number;
OnlyAlternateSignalsAllows you to open positions only one by one.
If the last closed position was SELL, the next could be opened only BUY!

It is necessary to trade the main indicator in No Signal mode
MAX_BUY_POSITION

limit of the maximum number of BUY deals.

The positions opened by signals of indicators are taken into account.

The averaging and refilling positions are not taken into account

MAX_SELL_POSITION

the parameter for limiting the maximum number of SELL deals.

The positions opened by signals of indicators are taken into account.

The averaging and refilling positions are not taken into account

Solo gli utenti che hanno acquistato o noleggiato il prodotto possono lasciare commenti