Solo gli utenti che hanno acquistato o noleggiato il prodotto possono lasciare commenti
Vladislav Andruschenko  
Susan Little :

Hi I am new to the environment. I was going to purchase The X but I read that the XcustomEA does everything that The X has and the ability to custom. I test The X and USDJPY by just putting the indicators on the chart and it works. However, I haven't been able to get a trade to trigger. Can I use the standard indicator on the chart and have it trigger or do I have to modify? I am not up to speed on modifying or programming mql5

Susan


Hello.

The X = This is an Expert Advisor that works on standard indicators. In the settings of the adviser, you can select a standard indicator.

The xCustomEA = This is an advisor that works on custom indicators. In the settings of the advisor, you must specify custom indicators or program your strategy.

Full instructions: https://www.expforex.com/publ/english_guide_and_article/exp_the_xcustomea_universal_trading_advisor_on_custom_indicators_advisor_on_the_indicator/11-1-0-207

Susan Little  
I feel like I should have purchase The X but I was thinking of a system that I can grow with. 
Susan Little  
Vladislav Andruschenko:


Hello.

The X = This is an Expert Advisor that works on standard indicators. In the settings of the adviser, you can select a standard indicator.

The xCustomEA = This is an advisor that works on custom indicators. In the settings of the advisor, you must specify custom indicators or program your strategy.

Full instructions: https://www.expforex.com/publ/english_guide_and_article/exp_the_xcustomea_universal_trading_advisor_on_custom_indicators_advisor_on_the_indicator/11-1-0-207

I thought the system had the flexibility to use both. I purchased this over the weekend. Can I switch to The X?

Susan Little  
Susan Little:

I thought the system had the flexibility to use both. I purchased this over the weekend. Can I switch to The X?

Susan Little  

You sent the following email.To trade the indicator The x - you do not need to do anything else. You simply copy the indicator into the indicators folder and in my advisor enter the name and configure further according to the instructions. PROGRAMMING does not need anything.
Examples are created in order to program a strategy for a custom indicator.


You are welcome. All questions regarding my program - please write in the discussion section! Tapm is easier to add pictures and translate into different languages.


I understand and added the indicators to the indicator folder. When you say, "in my advisor enter the name and configure further according to the instructions." I enter the name here?


I'm not sure what to configure.

Vladislav Andruschenko  
Susan Little:

You sent the following email.To trade the indicator The x - you do not need to do anything else. You simply copy the indicator into the indicators folder and in my advisor enter the name and configure further according to the instructions. PROGRAMMING does not need anything.
Examples are created in order to program a strategy for a custom indicator.


You are welcome. All questions regarding my program - please write in the discussion section! Tapm is easier to add pictures and translate into different languages.


I understand and added the indicators to the indicator folder. When you say, "in my advisor enter the name and configure further according to the instructions." I enter the name here?


I'm not sure what to configure.

Hello. 
Sorry. I can create guide for this indicator. 
Susan Little  
Vladislav Andruschenko:
Hello. 
Sorry. I can create guide for this indicator. 

Yes I need the guide for the configuration, I am no longer getting the notification that the indicators are not found. 

Susan Little  
Vladislav Andruschenko:
Hello. 
Sorry. I can create guide for this indicator. 

How is it going with the guide?

Vladislav Andruschenko  
Susan Little:

How is it going with the guide?

Now I in vocation. I can create guide for the x after 2 weeks. 
But 
Susan Little  
Vladislav Andruschenko:
Now I in vocation. I can create guide for the x after 2 weeks. 
But 

Oh, okay

Thanks

logstrup  

Hello.

Change of internal parameters of the custom indicator.

File:
59.jpg  248 kb
Vladislav Andruschenko  
logstrup:

Hello.

Change of internal parameters of the custom indicator.



Hello

you can use this:


"",2,1.6


Parameter Description
OWN Signal options
SignalNameIndicator

The name of the custom indicator from which the main signals for opening positions will be received.

Default: " Ind - The xCustomEA "

This is a standard empty indicator, into which you can program your strategy according to our example!

We also created an example of a custom indicator based on The X signals.

"Ind - The xCustomEA Example TheX"

You can use our example to receive signals using standard indicators.

Description of The X Standard Strategies

The xCustomEA Strategy Examples

SignalTypeIndicator

The type of indicator for signals.

There are two types of work advisor:

xCustomEA - Advisor's work on our indicator, in which you personally program your strategy.

xArrow - The EA  works directly with a custom indicator that has Arrow type buffers that can be used for the EA.

For example: Buffer with indicator signals to BUY and Buffer with indicator signals to SELL

Such buffers must be of the Arrow type.

Our Expert Advisor determines the signal by type: The buffer value is not equal to an empty value and above 0 .:

// --- we check the conditions and set the value for sig if (xCustom_SIGNAL_BUY_buffer [OWNSIGNAL_shift]! = EMPTY_VALUE && xCustom_SIGNAL_BUY_buffer [OWNSIGNAL_shift]> 0) sig = 1; else if (xCustom_SIGNAL_SELL_buffer [OWNSIGNAL_shift]! = EMPTY_VALUE && xCustom_SIGNAL_SELL_buffer [OWNSIGNAL_shift]> 0) sig = -1;

IndSigToTrade

Selection of the indicator and signal for opening the first and main positions.
Strategy number from custom indicator  SignalNameIndicator

If the specified strategy is not found in the indicator, the Expert Advisor will be unloaded from the chart with an error!

If 0 is specified, then strategy signals are not used but filters are used!

TF_IndSigToTrade1 Timeframe for 1 main indicator. You can select the timeframe by which the indicator will receive signals.
Period_Current - current Timeframe
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 type Record Important Example
int x  

one

ten

777

double xx Be sure to specify through the point.

0.2

1.10

string "x"

Be sure to specify the string (not numbers), you can simply write as "X"

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"

datetime D'year.month.day ' Mandatory indication of D and single quotes

D'2018.11.08 '

D'2015.01.01 '

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

C'0 / 128/128 '

C'0 / 256/0 '

eg

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

written as:

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

Darius Liss  

Hello

I have the following error (invalid order)

2019.11.23 22:14:23.043 2019.11.04 13:00:00    SPREAD=6 Ask/Bid=0.0/0.0 stoplevel=12 DistanceAverage=50.0 DistanceAdditional=10.0 LevelWLossa=6 TrailingStops=100 TakeProfitsAver=200

2019.11.23 22:14:23.043 2019.11.04 13:00:00   OPEN DEAL sy=BTCUSD op=0 ll=5.0 sl=-1 tp=-1 coomment=The X Num mn=777 SYMBOL_FILLING_MODE=3 SYMBOL_TRADE_EXEMODE=3 SYMBOL_EXPIRATION_MODE=15 SYMBOL_TRADE_MODE=4 SYMBOL_TRADE_STOPS_LEVEL=0 SYMBOL_TRADE_FREEZE_LEVEL=0 SYMBOL_ORDER_MODE

2019.11.23 22:14:23.043 2019.11.04 13:00:00   failed exchange buy 5.00 BTCUSD at 9252.0 sl: 9181.0 tp: 9322.0 [Invalid order]

2019.11.23 22:14:23.043 2019.11.04 13:00:00   ===========================================================================================

2019.11.23 22:14:23.043 2019.11.04 13:00:00   4756 EAPADPRO_ErrorDescription: Trade EAPADPRO_request sending failed

2019.11.23 22:14:23.043 2019.11.04 13:00:00   EXP-The xCustomEA  BTCUSD H1 2019.11.04 13:00:00

2019.11.23 22:14:23.043 2019.11.04 13:00:00    Values: Result ERROR= 10035 symbol BTCUSD volume 5.0 action 1 tp 9322.0 sl 9181.0 type 0 price 9252.0   unknown error

2019.11.23 22:14:23.043 2019.11.04 13:00:00    TechInfo: Line: 4391 Function: OPs


I think, this causes the problem. But if I change the value from 1 to 2, then the current position has no TP and will be closed only after new signal.



Vladislav Andruschenko  
Darius Liss :

Hello

I have the following error (invalid order)

2019.11.23 22:14:23.043 2019.11.04 13:00:00    SPREAD=6 Ask/Bid=0.0/0.0 stoplevel=12 DistanceAverage=50.0 DistanceAdditional=10.0 LevelWLossa=6 TrailingStops=100 TakeProfitsAver=200

2019.11.23 22:14:23.043 2019.11.04 13:00:00   OPEN DEAL sy=BTCUSD op=0 ll=5.0 sl=-1 tp=-1 coomment=The X Num mn=777 SYMBOL_FILLING_MODE=3 SYMBOL_TRADE_EXEMODE=3 SYMBOL_EXPIRATION_MODE=15 SYMBOL_TRADE_MODE=4 SYMBOL_TRADE_STOPS_LEVEL=0 SYMBOL_TRADE_FREEZE_LEVEL=0 SYMBOL_ORDER_MODE

2019.11.23 22:14:23.043 2019.11.04 13:00:00   failed exchange buy 5.00 BTCUSD at 9252.0 sl: 9181.0 tp: 9322.0 [Invalid order]

2019.11.23 22:14:23.043 2019.11.04 13:00:00   ===========================================================================================

2019.11.23 22:14:23.043 2019.11.04 13:00:00   4756 EAPADPRO_ErrorDescription: Trade EAPADPRO_request sending failed

2019.11.23 22:14:23.043 2019.11.04 13:00:00   EXP-The xCustomEA  BTCUSD H1 2019.11.04 13:00:00

2019.11.23 22:14:23.043 2019.11.04 13:00:00    Values: Result ERROR= 10035 symbol BTCUSD volume 5.0 action 1 tp 9322.0 sl 9181.0 type 0 price 9252.0   unknown error

2019.11.23 22:14:23.043 2019.11.04 13:00:00    TechInfo: Line: 4391 Function: OPs


I think, this causes the problem. But if I change the value from 1 to 2, then the current position has no TP and will be closed only after new signal.





Hello.

It seems to me that the problem is that the BUY and SELL  positions are prohibited on your server.

I think that only Limit orders are allowed on your server.

10035

TRADE_RETCODE_INVALID_ORDER

Incorrect or prohibited   order type


Therefore, I recommend that you set the type of orders = Limit orders:

StopOrderUSE

Open pending orders or limit orders instead of positions.
Allows you to set a pending or limit order for the received signal at a distance StopOrderDeltaifUSE points. Thus, we recheck the signal for profitability.
If the signal is opened in the right direction of price movement, then the pending order will work through StopOrderDeltaifUSE points.

Use Virtual Stop Orders : Exposes a virtual pending stop order at a distance StopOrderDeltaifUSE
points;
Use Virtual Limit Orders : Exposes a virtual pending limit order at a distance StopOrderDeltaifUSE
points;
Caution: Only works in Visualization mode or on real graphics, only when the terminal is switched on.
Does not work in optimization mode!

StopOrderDeltaifUSE Number of items for a deferred or limit order
StopOrderDayToExpiration StopOrderDayToExpiration = number of days for the order expiration.
0 - ORDER_TIME_GTC The order will be in the queue until it is removed
1 - ORDER_TIME_DAY The order will be valid only for the current trading day
2 ... X - ORDER_TIME_SPECIFIED The order will remain valid until the expiry date
If the pending order does not work within the specified days, it is automatically deleted.
Patrice Pat  

Hi  Vladislav


i use The xCustomEA for MT5 with Trendfinite Pro.

Could you help me ? 


Where i can change parameters for Take Profit ? 


I Don't want to close automatically position on reverse signal. How i can adjust parameters ? 


And sometimes i have this error. 

2019.12.19 06:23:15.016 PipFinite Trend PRO MT5 (CADCHF,D1) array out of range in 'PipFinite Trend PRO MT5.mq5' (2872,25)
How can i solve ? 


Thanks you



Patrice


Vladislav Andruschenko  
Patrice Pat :

Hi  Vladislav


i use The xCustomEA for MT5 with Trendfinite Pro.

Could you help me ? 

Where i can change parameters for Take Profit ? 

I Don't want to close automatically position on reverse signal. How i can adjust parameters ? 

And sometimes i have this error. 

2019.12.19 06:23:15.016 PipFinite Trend PRO MT5 (CADCHF,D1) array out of range in 'PipFinite Trend PRO MT5.mq5' (2872,25)
How can i solve ?  

Thanks you

Patrice



Hello.

Thanks for using.

Let's start:

You can set your take-profit parameter, for this:

1. Erase take profit from your indicator:

SLTPNameIndicator = ""

2. Set your take profit:

TakeProfit Takeprofit of each open position in points


To prevent closing by a reverse signal, disable the following option:

ClosePosifChange Closing the positions when the general indicator signal is reversed.
The difference between ClosePosifChange and ClosePositionifChangeOWNSignal is that with ClosePosifChange - a signal change is considered for all filters + the main signal.
and when ClosePositionifChangeOWNSignal - the signal change is considered only on the main indicator.
It also works for pending orders.



Error 2019.12.19 06: 23: 15.016 PipFinite Trend PRO MT5 (CADCHF, D1) array out of range in 'PipFinite Trend PRO MT5.mq5' (2872.25)

Occurs in your indicator, contact the creator of the indicator and report this error.

Patrice Pat  
Vladislav Andruschenko:


Hello.

Thanks for using.

Let's start:

You can set your take-profit parameter, for this:

1. Erase take profit from your indicator:

SLTPNameIndicator = ""

2. Set your take profit:

TakeProfit Takeprofit of each open position in points


To prevent closing by a reverse signal, disable the following option:

ClosePosifChange Closing the positions when the general indicator signal is reversed.
The difference between ClosePosifChange and ClosePositionifChangeOWNSignal is that with ClosePosifChange - a signal change is considered for all filters + the main signal.
and when ClosePositionifChangeOWNSignal - the signal change is considered only on the main indicator.
It also works for pending orders.



Error 2019.12.19 06: 23: 15.016 PipFinite Trend PRO MT5 (CADCHF, D1) array out of range in 'PipFinite Trend PRO MT5.mq5' (2872.25)

Occurs in your indicator, contact the creator of the indicator and report this error.

Thank you


Very good EA :)

Vladislav Andruschenko  
Patrice Pat:

Thank you


Very good EA :)


Thank you

You can write review for my EA in REVIEW tab 

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