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

2020.08.30 22:20:39.911 Exp4 The xCustomEA for MT4 EURCHF,Daily: Alert: Indicator "Market\\Identify Trend PRO" not found. Please check the indicator name in the Expert Advisor settings Market\\Identify Trend PRO

Удалил с Графика и вот результат ))))

То есть если не будет на графике, то при синхронизации:

2020.08.30 22:20:39.911 cannot open file 'C:\Hosting\instances\595D147EE961910A46966182746FEE04\MQL4\indicators\Market\\Identify Trend PRO.ex4' [3]


Vladislav Andruschenko  
MIKHAIL SMIRNOV:

То есть если не будет на графике, то при синхронизации:

2020.08.30 22:20:39.911 cannot open file 'C:\Hosting\instances\595D147EE961910A46966182746FEE04\MQL4\indicators\Market\\Identify Trend PRO.ex4' [3]


Приветствую. 
Интересно получается. Тогда пусть на графиках, до выяснения такого поведения. 
Получается сервер не переносит индикаторы с icustom на vps. Странно. 

Теперь надо проводить эксперимент. 
189114nickynomates  

Hi new to this does anyone have a set file for PipFinite that i can test.   I not getting trades and would like to study a proven set file 


Thanks in advance

Mujeeb Abdul  

Hi 

how to deal with zero line indicator buy above zero line sell below zero 

how to do that help please 

thanks

Vladislav Andruschenko  
Mujeeb Abdul:

Hi 

how to deal with zero line indicator buy above zero line sell below zero 

how to do that help please 

thanks

Hello. 
For default, ea trade with arrows indictators. 
You need to create strategy file. 
Please create new topic https://www.expforex.com/forum/69-907-1
jewboy  

Hello Vladislav,

i rent your EA for 1 month and i would like to use it with an arrow indicator. Could you pm me how to set up the EA to make it trade following the arrow and reverse position when the arrow changes direction.

cheers

Leon Burke  

Hi..  This is a great EA.  When trading using the Pipfinite Trend Pro indicator, how do you change the Period parameters from the default setting?

 
Vladislav Andruschenko  
Leon Burke:

Hi..  This is a great EA.  When trading using the Pipfinite Trend Pro indicator, how do you change the Period parameters from the default setting?

 
Hello. thanks. you can change the parameters in StrategyInputs. but, unfortunately, string variables of custom indicators are prohibited in MT4. therefore in pipfinite they cannot be changed. But everything works in the MT5 terminal. ....
Vladislav Andruschenko  
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

1

10

777

double xx Be 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"

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 '

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:

Vladislav Andruschenko  
--Global update of The xCustomEA!
In the block for selecting the type of signal / filter SignalTypeIndicator / FilterTypeIndicator:
Added signals and filters for standard indicators from our Expert Advisor The X!
All 20 standard signals and filters have been added as the main signal / Filter / Signal to close positions!
You can use the standard indicator signals and filters from our The X along with your custom indicator signals.
This means that you can filter custom indicator signals from the market or the Internet using our standard filters.
And also use our standard strategies from The X as the main signal and apply a custom indicator as a filter!
A description of each signal and filter can be found in the user manual for The X: https://www.mql5.com/en/blogs/post/677148
Attention: when you select Standard Indicators, the SignalNameIndicator / SIGNALStrategyInputs / SignalBuferforBUY / SignalBuferforSELL fields do not work!
Attention: when you select Standard Indicators, the FilterNameIndicator / FilterStrategyInputs / FilterBuferforBUY / FilterBuferforSELL fields do not work!

- Added the TrailingStart = Starting point of reference for the start of the Trailing function to the Trailingstop block.
The Expert Advisor will turn on the TrailingStop function when the position gains TrailingStart profit points.
If TrailingStart = 0 then TrailingStart = TrailingStop !!!

Vladislav Andruschenko  

VoltyChannel

Let's analyze an example of trading using the VoltyChannel_Stop_v2.1_TRO_MODIFIED_VERSION indicator.


In order to find out the numbers of buffers for signals, we need to load the indicator on the real chart of the terminal:



Let's look at the chart and hover the mouse cursor over the opening point of the signal on SELL
(We learn that the number of the signal buffer for SELL = 3):



Let's look at the chart and hover the mouse cursor over the opening point of the signal on BUY
(We learn that the number of the signal buffer for BUY = 2):



In order for the advisor to work according to this indicator, it needs to be configured and filled in only 3 parameters:

SignalNameIndicator=VoltyChannel_Stop_v2.1_TRO_MODIFIED_VERSION
SignalBuferforBUY=2
SignalBuferforSELL=3


In order to check the operation of the advisor on this indicator, we will open the strategy tester and configure it to work with the advisor.



We checked that the advisor opens clearly and correctly according to the signals of your indicator:

You can change the other parameters of the advisor at your discretion, experiment with different functions to improve the result of trading by the indicator!
baderbader  

Hi

i follow the instructions but no trade at all i dont know if i mess something could you pls make a you- tube guide showing the instructions and how u installed 


thanks

Vladislav Andruschenko  
baderbader #:

Hi

i follow the instructions but no trade at all i dont know if i mess something could you pls make a you- tube guide showing the instructions and how u installed 


thanks

Hello. What indicator you use ? 
Please provide all information. 


⚠️⚠️⚠️ FULL INFO about your problem: How to make Files https://www.mql5.com/en/blogs/post/732566 ⚠️⚠️⚠️
================================================
baderbader  

Ind_-_The_xCustomEA_PipFinite_Trend_PRO_NEW1

and  PipFinite Trend PRO


and i put it in market folder it show green but no trade 

Vladislav Andruschenko  
baderbader #:

Ind_-_The_xCustomEA_PipFinite_Trend_PRO_NEW1

and  PipFinite Trend PRO


and i put it in market folder it show green but no trade 

Ok. 
Give me please set file and first indicator 
Solo gli utenti che hanno acquistato o noleggiato il prodotto possono lasciare commenti