Listing EA in Market and submitting code in CodeBase

 

I failed most of the time submitting my code in CodeBase and listing my EA in Market while those EA and code are working fine on my terminals.

Can anyone guide me to do this successfully every time?

 
Sopheak Khlot:

I failed most of the time submitting my code in CodeBase and listing my EA in Market while those EA and code are working fine on my terminals.

Can anyone guide me to do this successfully every time?

Unfortunately, submission and rejection issues can’t be resolved via forum.

Please contact Service Desk directly - they are the only official channel that can access and review the specific details of your case.
 
Sopheak Khlot:

I failed most of the time submitting my code in CodeBase and listing my EA in Market while those EA and code are working fine on my terminals.

Can anyone guide me to do this successfully every time?

You should provide more details - what's the code/product, properties, error reports from site, etc.

 
Sopheak Khlot:

I failed most of the time submitting my code in CodeBase and listing my EA in Market while those EA and code are working fine on my terminals.

Can anyone guide me to do this successfully every time?

I also had many problems with publication, even though everything worked fine in backtesting and live trading, but not during the Market validation process. If you still need help, send me a private message and I’ll assist you

 

This happens because very probably you have not done any kind of best practice and error handling like:

  • Normalizing lots and prices correctly
  • Not checking for min/max/step/limit lots
  • Not checking if your balance is enough to cover the margin required by the trade you are willing to open
Generally, if you care about there 3 factors, you will have no problems. Sometimes you may need to upload the file multiple times to have success.
 
Fabio Cavalloni #:

This happens because very probably you have not done any kind of best practice and error handling like:

  • Normalizing lots and prices correctly
  • Not checking for min/max/step/limit lots
  • Not checking if your balance is enough to cover the margin required by the trade you are willing to open
Generally, if you care about there 3 factors, you will have no problems. Sometimes you may need to try multiple times to upload the file before the success.

Thanks for the guidance. I believe this will apply for EA uploading but I also failed in uploading my indicator source code into codebase. Do you have any advices for me to overcome this? 

 
Sopheak Khlot #:

Thanks for the guidance. I believe this will apply for EA uploading but I also failed in uploading my indicator source code into codebase. Do you have any advices for me to overcome this? 

We need more information about the failure to understand why it happens...

 
Fabio Cavalloni #:

We need more information about the failure to understand why it happens...

It said testing take too long. The indicator doesn't do multi-timeframe calculation. the indicator works fine on my terminal.

 
Sopheak Khlot #:

It said testing take too long. The indicator doesn't do multi-timeframe calculation. the indicator works fine on my terminal.

Have you ever tried to run your indicator into the strategy tester? Which are results? I don't have much experience with indicators validation, but I suppose that if the indicator is too slow (multiple bar recalculation for each tick, for example) the validation may not pass...

 
Fabio Cavalloni #:

Have you ever tried to run your indicator into the strategy tester? Which are results? I don't have much experience with indicators validation, but I suppose that if the indicator is too slow (multiple bar recalculation for each tick, for example) the validation may not pass...

I haven't tried on strategy tester, I will do that. I just loaded it on the chart.

 
Fabio Cavalloni #:

Have you ever tried to run your indicator into the strategy tester? Which are results? I don't have much experience with indicators validation, but I suppose that if the indicator is too slow (multiple bar recalculation for each tick, for example) the validation may not pass...

I don't have problem running it on Strategy Tester. However, I use iBars() to count total bar count on the chart to loop from. Could it be a problem of taking to long test? MQL server may have more than 10 years of data, i guess.