Failed EA upload

 

Hi, i have a product for sale that i have updated a few times.

Had some errors on update. volume and not enough money errors. Which i fixed.

I have the latest version ready to update. I added EnableTimeframeTrendFilter = true;  // Enable trend filter on H1 and H4 and Trading modes.

Trading modes is causing the failed update. For a moving average bot having trading modes is very cool feature. I know you cant upload a bot that is fixed to a particular symbol time frame etc. I get that.

Trading modes are    

     MODE_BUY_ONLY,    // Buy only
    MODE_SELL_ONLY,   // Sell only
    MODE_BOTH,        // Both directions
    MODE_INVERSE      // Inverse signals.

Any idea what to do. should i forget this feature or is there another way round it .

Imagine a very strong bull run on gold and your running a crossover bot on the m1. you might want to have it as buy only or maybe as inverse on a ranging market.

So trading modes is a very nice feature to have. especially on crossovers.

whats your thoughts. Maybe i can keep trading modes but have to code it differently to get round the error on upload. "no operation" or i just cant sell a product with this feature.

It works flawlessly on mt5 but error product upload.

 
Jason Mark Smith:

Hi, i have a product for sale that i have updated a few times.

Had some errors on update. volume and not enough money errors. Which i fixed.

I have the latest version ready to update. I added EnableTimeframeTrendFilter = true;  // Enable trend filter on H1 and H4 and Trading modes.

Trading modes is causing the failed update. For a moving average bot having trading modes is very cool feature. I know you cant upload a bot that is fixed to a particular symbol time frame etc. I get that.

Trading modes are    

     MODE_BUY_ONLY,    // Buy only
    MODE_SELL_ONLY,   // Sell only
    MODE_BOTH,        // Both directions
    MODE_INVERSE      // Inverse signals.

Any idea what to do. should i forget this feature or is there another way round it .

Imagine a very strong bull run on gold and your running a crossover bot on the m1. you might want to have it as buy only or maybe as inverse on a ranging market.

So trading modes is a very nice feature to have. especially on crossovers.

whats your thoughts. Maybe i can keep trading modes but have to code it differently to get round the error on upload. "no operation" or i just cant sell a product with this feature.

It works flawlessly on mt5 but error product upload.

You got a rejection reason, right? Just focus on fixing that.
 

That was the reason for rejection. failed operation or something

which is because of trading modes.

 

Jason Mark Smith #: That was the reason for rejection. failed operation or something. which is because of trading modes.

When adding options to a Market EA that filter trades, it is best to set those options as disabled by default, because that is what will be used for validation.

If you enable it as a default, the validation process will think that the EA is not trading or not functioning correctly and it will be rejected.

For the "trading mode", set it to full trading by default.

 
thanx