Solo gli utenti che hanno acquistato o noleggiato il prodotto possono lasciare commenti
Vladislav Andruschenko  
fx.traderzh :
Its not calculating with any settings. But this is a super important to me because just in that case, the trades can be successful. 


Good.

I checked there was one mistake in the indicator name.

Corrected, attached a set file.

I checked on the tester - everything is fine, the adviser opens on my indicator and installs TP from your indicator.

\



I also want to remind you that Trailingstop is turned on:


TrailingStopUSE

Enabling the standard trailing stop function.

Note: If the averaging or refilling function is enabled, if you open 2 or more positions, the Expert Advisor turns on the trailing stop function from the middle line, and not from the open position price

TrailingStop Distance trailing stop in points

TrailingStep Step of stop loss at trailing point in points

SaveTPafterTrailingStop When enabled, the takeprofit of the modified positions will remain in place.

For example:

SaveTPafterTrailingStop = false: When executing a trailing stop, the takeprofit of the modified position will be deleted;

SaveTPafterTrailingStop = true: When the trailing stop is executed, the takeprofit of the modified position will be saved.

Vladislav Andruschenko  
fx.traderzh :
Its not calculating with any settings. But this is a super important to me because just in that case, the trades can be successful. 


I also found that the PIPFINITE indicator no longer gives stop-loss and take-profit lines, so the adviser can not read them!




why is this happening?

because your signal comes later than the signal from PipFinite!

And since you take TP from another indicator, on which there is no signal yet, these buffers are not filled.!


Therefore, your option is not good! He is not a work.

Write to the author of the indicator so that he always displays TP and SL lines, and does not remove them from the chart!
Vladislav Andruschenko  
fx.traderzh :
Its not calculating with any settings. But this is a super important to me because just in that case, the trades can be successful. 


For a long time I could not understand what was wrong.

And I realized that you installed a very large trading lot:


DynamicLot Dynamic lot, Autolot for an open position.

Enabling dynamic lot calculation in percent of free margin and other factors.

Calculation of our autolot.

LotBalancePercent Percent for autolot

[Eliminato]  
I followed your directions on how to add Infinite Pro Trend indicator in your Software. I get an error on ML4 saying. "Indicator is not found and to check the indicator name". I have done just that and it's there correctly. How do I fix this.
Vladislav Andruschenko  
josie2124:
I followed your directions on how to add Infinite Pro Trend indicator in your Software. I get an error on ML4 saying. "Indicator is not found and to check the indicator name". I have done just that and it's there correctly. How do I fix this.

Hello. Please attach your set file from my ea with your settings and screen from navigator with your indicator. 
Vladislav Andruschenko  
josie2124:
I followed your directions on how to add Infinite Pro Trend indicator in your Software. I get an error on ML4 saying. "Indicator is not found and to check the indicator name". I have done just that and it's there correctly. How do I fix this.
Vladislav Andruschenko:

Hello. Please attach your set file from my ea with your settings and screen from navigator with your indicator. 


[Eliminato]  
The program processes the information from the indicator, but I always have to use the indicator's factory settings. Is it possible if I want to make changes to the indicator?
Vladislav Andruschenko  
onurkayan:
The program processes the information from the indicator, but I always have to use the indicator's factory settings. Is it possible if I want to make changes to the indicator?
Hello. What changes you want ?
[Eliminato]  
For example, an indicator using a moving average, we need to change the period. In order to get the highest efficiency from the indicator, we need to enter the optimum operating conditions. In such cases, it would be nice if the EA does not load the indicator itself, but uses the indicator settings that we open and optimize.
Vladislav Andruschenko  
onurkayan :
For example, an indicator using a moving average, we need to change the period. In order to get the highest efficiency from the indicator, we need to enter the optimum operating conditions. In such cases, it would be nice if the EA does not load the indicator itself, but uses the indicator settings that we open and optimize.

No problems.

You can specify the input parameters of indicators

here is the instruction: 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


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

[Eliminato]  

Here is my indicator defaults.

How can i write these on 1 code?

Important constants are MinRange, MaxRange and HighLowFilter


St_Ex=------- Indicator Settings

Verbose=0

Verbose,F=0

Verbose,1=0

Verbose,2=0

Verbose,3=0

MinRange=5

MinRange,F=0

MinRange,1=5

MinRange,2=0

MinRange,3=0

MaxRange=30

MaxRange,F=0

MaxRange,1=30

MaxRange,2=0

MaxRange,3=0

HighLowFilter=10

HighLowFilter,F=0

HighLowFilter,1=10

HighLowFilter,2=0

HighLowFilter,3=0

MaxHistoryBars=5000

MaxHistoryBars,F=0

MaxHistoryBars,1=5000

MaxHistoryBars,2=0

MaxHistoryBars,3=0

Vladislav Andruschenko  
onurkayan:

Here is my indicator defaults.

How can i write these on 1 code?

Important constants are MinRange, MaxRange and HighLowFilter


St_Ex=------- Indicator Settings

Verbose=0

Verbose,F=0

Verbose,1=0

Verbose,2=0

Verbose,3=0

MinRange=5

MinRange,F=0

MinRange,1=5

MinRange,2=0

MinRange,3=0

MaxRange=30

MaxRange,F=0

MaxRange,1=30

MaxRange,2=0

MaxRange,3=0

HighLowFilter=10

HighLowFilter,F=0

HighLowFilter,1=10

HighLowFilter,2=0

HighLowFilter,3=0

MaxHistoryBars=5000

MaxHistoryBars,F=0

MaxHistoryBars,1=5000

MaxHistoryBars,2=0

MaxHistoryBars,3=0

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



unfortunately in MT4 it is forbidden to transmit string parameters through the parser. therefore, at the moment it is impossible.
[Eliminato]  

You said: You can specify the input parameters of indicators

This is my input parameters of indicators.

Vladislav Andruschenko  
onurkayan:

You said: You can specify the input parameters of indicators

This is my input parameters of indicators.

Yes but please read my message. 
Hanxyork  

Hi Vladislav,

I purchased your xCustomEA Universal for MT4 and I have been reading the information provided by you and I have been running tests since I bought it the past week, I also purchased Pipfinite since you use it in your example, I do see a lot of potential between the both of them, I have been watching your videos again and again trying to learn as much as I can but unfortunately I do not speak Russian. I do not know how to program for MT4 but I would learn if this is necessary.

The results obtained until this moment are not good enough on my end in order to let the robot to trade real money, in my believe it need an extra filter to improve the results, I only want to trade few major currency pairs where I can let this robot do the job without worries having consistency in a weekly basis, I have a VPS up and running already also. I think like many of your customers already expressed, that an extra filter could be added for improvement in order to get better results based on your example and this could be the game changing to succeed in this project and I do not feel that we are that far. It may be as simple like adding a Keltner Channel or Alligator, Heiken Ashi, Renko or 3 MA lines to help to determine the trend, it could be even the factor number obtained between the strong - weak currency pairs,  (if the difference is big then the trade have a green light to proceed but if the difference is not big enough the trade is not allowed)

So please can you suggest the name of this additional indicator that can act as the filter that this project need?  Can you sell us this additional indicator with few settings so we can just plug it in easily in one of the slots of your xCustomEA so we can get this final filter to do the job with xCustomEA at a top performance, please?

Vladislav you sold as a great tool!! Now we just need the final accessory.

Respectfully,

Rafael

Vladislav Andruschenko  
Hanxyork :

Vladislav,


I am getting an error when I use the tester, the tester stop about 4 seconds after it started. Here the files:


Hello.

I checked the log file.

And what mistake do you see here?

I do not see a mistake.

You entered a test date of 3 days.

The adviser completed the test 3 days.

Vladislav Andruschenko  
Hanxyork:

Hi Vladislav,

I purchased your xCustomEA Universal for MT4 and I have been reading the information provided by you and I have been running tests since I bought it the past week, I also purchased Pipfinite since you use it in your example, I do see a lot of potential between the both of them, I have been watching your videos again and again trying to learn as much as I can but unfortunately I do not speak Russian. I do not know how to program for MT4 but I would learn if this is necessary.

The results obtained until this moment are not good enough on my end in order to let the robot to trade real money, in my believe it need an extra filter to improve the results, I only want to trade few major currency pairs where I can let this robot do the job without worries having consistency in a weekly basis, I have a VPS up and running already also. I think like many of your customers already expressed, that an extra filter could be added for improvement in order to get better results based on your example and this could be the game changing to succeed in this project and I do not feel that we are that far. It may be as simple like adding a Keltner Channel or Alligator, Heiken Ashi, Renko or 3 MA lines to help to determine the trend, it could be even the factor number obtained between the strong - weak currency pairs,  (if the difference is big then the trade have a green light to proceed but if the difference is not big enough the trade is not allowed)

So please can you suggest the name of this additional indicator that can act as the filter that this project need?  Can you sell us this additional indicator with few settings so we can just plug it in easily in one of the slots of your xCustomEA so we can get this final filter to do the job with xCustomEA at a top performance, please?

Vladislav you sold as a great tool!! Now we just need the final accessory.

Respectfully,

Rafael

Hello. 

I will try to respond to your comment in more detail:


12 years ago I started doing custom programming. Customers sent me a terms of reference and I programmed an Expert Advisor for this job . 

I have carried out a lot of programming orders.  

A lot of orders were similar to each other. 

With the same work functions. 

And then I was tired of programming because each task is similar to the previous one. 

So I made this xCustomEA Expert Advisor so that users could customize it themselves.

And the most important rule here is that the EA has no trading strategy. It is pure. 

And its main function is to trade on your indicators. It trades on your strategy. 


I do not have any specific indicators-filters, which will filter "all indicators from the market". 

Why do I say "ALL"? 

Because it is a universal Expert Advisor. It has no strategy. It trades on the signals of your indicator, the one you will write in its settings. 


I gave up programming because I don't have any more power to program to order. Now I only program my tools and make my own programs for trading. 


If your indicator, which gives signals, is not profitable enough? So, you need to look for those indicators, which will be profitable and will give your profit, which will please you.  

I do not have such indicators. 


This advisor is a universal trading advisor, which trades on your indicators. This is a template for a robot. In the Video I tried to explain the most important thing, why I created this program. 



I will answer your questions and try to help you in programming your indicators. 

For this purpose, I have created a section on my forum: https://www.expforex.com/forum/69.

In which I create a strategy based on interesting indicators that users have offered. 


But, please, do not ask me a question about which filter indicator to use for your signal. 

I don't know what filter to use for your signal.  These are your signals. I can tell you about the functions of my Expert Advisor. (Full description can be found in the blog).

I can try to help you program your strategy. 

But if you want to know my signals, it is better to use my strategy TickSniper - Fully Automatic trading robot. 

BEST Automatic scalper, Smart Robot:
💰 TICKSNIPER: MT4: https://www.mql5.com/en/market/product/1287
💰 TICKSNIPER: MT5: https://www.mql5.com/en/market/product/3493

Hanxyork  
Vladislav Andruschenko:

Hello. 

I will try to respond to your comment in more detail:


12 years ago I started doing custom programming. Customers sent me a terms of reference and I programmed an Expert Advisor for this job . 

I have carried out a lot of programming orders.  

A lot of orders were similar to each other. 

With the same work functions. 

And then I was tired of programming because each task is similar to the previous one. 

So I made this xCustomEA Expert Advisor so that users could customize it themselves.

And the most important rule here is that the EA has no trading strategy. It is pure. 

And its main function is to trade on your indicators. It trades on your strategy. 


I do not have any specific indicators-filters, which will filter "all indicators from the market". 

Why do I say "ALL"? 

Because it is a universal Expert Advisor. It has no strategy. It trades on the signals of your indicator, the one you will write in its settings. 


I gave up programming because I don't have any more power to program to order. Now I only program my tools and make my own programs for trading. 


If your indicator, which gives signals, is not profitable enough? So, you need to look for those indicators, which will be profitable and will give your profit, which will please you.  

I do not have such indicators. 


This advisor is a universal trading advisor, which trades on your indicators. This is a template for a robot. In the Video I tried to explain the most important thing, why I created this program. 



I will answer your questions and try to help you in programming your indicators. 

For this purpose, I have created a section on my forum: https://www.expforex.com/forum/69.

In which I create a strategy based on interesting indicators that users have offered. 


But, please, do not ask me a question about which filter indicator to use for your signal. 

I don't know what filter to use for your signal.  These are your signals. I can tell you about the functions of my Expert Advisor. (Full description can be found in the blog).

I can try to help you program your strategy. 

But if you want to know my signals, it is better to use my strategy TickSniper - Fully Automatic trading robot. 

BEST Automatic scalper, Smart Robot:
💰 TICKSNIPER: MT4: https://www.mql5.com/en/market/product/1287
💰 TICKSNIPER: MT5: https://www.mql5.com/en/market/product/3493

Vladislav,


Thank you for your reply and the time that you took to answer my questions. I am taking your offer of help me programming my indicators.

I will try TICKSNIPER also.

May I use TICKSNIPER successfully in a Forex account with 1:50 leverage?

Thank you very much Vladislav

Vladislav Andruschenko  
Hanxyork:

Vladislav,


Thank you for your reply and the time that you took to answer my questions. I am taking your offer of help me programming my indicators.

I will try TICKSNIPER also.

May I use TICKSNIPER successfully in a Forex account with 1:50 leverage?

Thank you very much Vladislav

What does the leverage affect?

The decrease in leverage affects only the margin at the time of opening. This means that the advisor needs more margin or balance to open averaging. But this does not affect profitability and other parameters. You do not need to change anything.

In other words:

  1. To open a position on EURUSD lot 1.00 on an account with a leverage of 1: 100, you need to have 1171 dollars of free margin!
  2. To open a position for EURUSD lot 0.01 on the account with a leverage of 1: 100, you need to have 11.71 dollars of free margin!
  3. If the averaging distance is 1000 points, and the cost of the item is 0.01 lot = 0.01 USD, then at a loss of 1000 points, the advisor will have a loss of 10 $ + 11.71 $ = 21.71 $
  4. To open one averaging, another $ 11.71 is needed
  5. Total : If the Expert Advisor opens 3 averaging positions + the main position, you must have on the account: 30 $ + 20 $ + 10 $ + 11.71 $ * 4 = 106.84 $ + StopOut (20%) = 128.20 $

128.20 $ It is necessary to have on the account for the normal work of the advisor for 1 currency pair with a lot of 0.01 and a leverage of 1: 100

  1. The less leverage, the less additional positions may be opened. 
  2. The lower leverage, the Margin Call, can be activated quickly. 
  3. Greater the leverage, better.
Solo gli utenti che hanno acquistato o noleggiato il prodotto possono lasciare commenti