Experiments ... - page 63

 
mladen:

bayuveneo

Posted the mt4 version here : https://www.mql5.com/en/forum/173720/page4


Mr Mladen
Thanks so much for this pretty experiment, working well :)
 

Dear Mr.Mladen Sir,

Greetings and Have a nice day...

Previous post sent by me were seems to be awkward because of my seeking for a best supporting person failed all the time.

After that also I moved throughout forex-TSD which tell me that Mladen is simply best and I do not want to miss such an expert.

Anyhow, I comeup with a MT4 strategy tester which gives lot of wrong signals

https://www.youtube.com/attribution_link?a=_z_amyVq_Hk&u=/watch%3Fv%3D_vxlcgLaEgY%26feature%3Dem-upload_owner

I attached the EA and indicator also.

Please, kindly I request you to correct my EA code and I will be verymuch thankful for you.

Thanking you,

Mohamed Maideen.M, India

babumsj2@gmail.com

Files:
ST.mq4  6 kb
 
babumsj2gmailcom:

Dear Mr.Mladen Sir,

Greetings and Have a nice day...

Previous post sent by me were seems to be awkward because of my seeking for a best supporting person failed all the time.

After that also I moved throughout forex-TSD which tell me that Mladen is simply best and I do not want to miss such an expert.

Anyhow, I comeup with a MT4 strategy tester which gives lot of wrong signals

https://www.youtube.com/attribution_link?a=_z_amyVq_Hk&u=/watch%3Fv%3D_vxlcgLaEgY%26feature%3Dem-upload_owner

I attached the EA and indicator also.

Please, kindly I request you to correct my EA code and I will be verymuch thankful for you.

Thanking you,

Mohamed Maideen.M, India

babumsj2@gmail.com

Mohamed

Correcting the EA code  can be done if something is wrong with the code. What you actually are asking is that someone takes your EA and makes it profitable. Sorry, but that does mean anything since nobody can know what is your idea how it should work.

On the other hand, for EAs with different ideas, you have to use different EAs, so, in the end, without exactly knowing (ie : you telling exactly to the letter) what is what you want to be changed, nothing can be done on such a request


PS: since that indicator is super trend indicator, there are already quite a few EAs using it. Did you try any of the available EAs using super trend?
 
mladen:

Mohamed

Correcting the EA code  can be done if something is wrong with the code. What you actually are asking is that someone takes your EA and makes it profitable. Sorry, but that does mean anything since nobody can know what is your idea how it should work.

On the other hand, for EAs with different ideas, you have to use different EAs, so, in the end, without exactly knowing (ie : you telling exactly to the letter) what is what you want to be changed, nothing can be done on such a request


PS: since that indicator is super trend indicator, there are already quite a few EAs using it. Did you try any of the available EAs using super trend?

Dear Mladen Sir,

Very kind of you for your reply.

Sorry for my bad english.

In the following private video, (mladen@forex-tsd.com)

https://www.youtube.com/attribution_link?a=_z_amyVq_Hk&u=/watch%3Fv%3D_vxlcgLaEgY%26feature%3Dem-upload_owner

from 5:15 we can clearly see the working of same indicator MaidTraderMain differently.


I think this may be because of repainting effect.

I planned for generating buy signal on pullback of uptrend (Trend:determined by SuperTrend (10,3)Indicator)

and stochastic(4,1,1) crosses above 20 from below. Reverse for sell.


In the above picture Green UP-arrow appears multiple times (and also ea generate multiple signals)

but the blue arrow appers only once as it is my actual requirement.

I need EA to generate signals as per the Blue arrow only.


I think in your Genious mind you captured what I am coming to mention.

I included both the EA and SuperTrend Indicators i'm using.

Kindly, please give me a corrected EA which works like Blue Arrow and

I will be verymuch Thankful to you.

Mohamed Maideen.M, India

babumsj2@gmail.com

Files:
ST.mq4  6 kb
 
babumsj2gmailcom:

Dear Mladen Sir,

Very kind of you for your reply.

Sorry for my bad english.

In the following private video, (mladen@forex-tsd.com)

https://www.youtube.com/attribution_link?a=_z_amyVq_Hk&u=/watch%3Fv%3D_vxlcgLaEgY%26feature%3Dem-upload_owner

from 5:15 we can clearly see the working of same indicator MaidTraderMain differently.


I think this may be because of repainting effect.

I planned for generating buy signal on pullback of uptrend (Trend:determined by SuperTrend (10,3)Indicator)

and stochastic(4,1,1) crosses above 20 from below. Reverse for sell.


In the above picture Green UP-arrow appears multiple times (and also ea generate multiple signals)

but the blue arrow appers only once as it is my actual requirement.

I need EA to generate signals as per the Blue arrow only.


I think in your Genious mind you captured what I am coming to mention.

I included both the EA and SuperTrend Indicators i'm using.

Kindly, please give me a corrected EA which works like Blue Arrow and

I will be verymuch Thankful to you.

Mohamed Maideen.M, India

babumsj2@gmail.com

Sorry, but what is the criteria for that blue arrow?
 
mladen:
Sorry, but what is the criteria for that blue arrow?

Dear Mladen Sir,

I am very very sorry, I forget to attach that indicator. It is Maidsig.mq4

================

stochcurrent =iStochastic(NULL,0,4,1,1,MODE_SMA,1,MODE_MAIN,i+0);             stochprevious=iStochastic(NULL,0,4,1,1,MODE_SMA,1,MODE_MAIN,i+1);  

         st0=iCustom(NULL,0,"ST",10,3.0,0,i+0);
         st1=iCustom(NULL,0,"ST",10,3.0,1,i+0);
         supertrend=(st1 != EMPTY_VALUE && st1==st0) ? 2 : 1;  // 1 buy 2 sell        

      if(supertrend==1 && stochprevious<=20 && stochcurrent>20 && ((Tradeinsidebar==false && NewBarBuy(i))||(Tradeinsidebar)) ) //BUY        
         {       

============================

Sir the criteria is:

Buy: Blue-up-arrow: when Supertrend=Buy and Stochastic moves up above 20 from the bottom.

Sell : Red-Down-arrow: when Supertrend=Sell and Stochastic moves down below 80 from the Top.

==============================

EA also the same:

 stochcurrent =iStochastic(NULL,0,4,1,1,MODE_SMA,1,MODE_MAIN,0);
   stochprevious=iStochastic(NULL,0,4,1,1,MODE_SMA,1,MODE_MAIN,1);  
   st0=iCustom(NULL,0,"ST",10,3.0,0,0);
   st1=iCustom(NULL,0,"ST",10,3.0,1,0);
   supertrend=(st1 != EMPTY_VALUE && st1==st0) ? 2 : 1;  // 1 buy 2 sell
   mmbuy=(iCustom(NULL,0,"Maidsig",4,0)==-1);
   mmsell=(iCustom(NULL,0,"Maidsig",3,0)==1);

  if(mmbuy && ((Tradeinsidebar==false && NewBarBuy())||(Tradeinsidebar)) ) // BUY  

        {
         ticket=OrderSend(Symbol(),OP_BUY,Lots,Ask,3,0,Ask+TakeProfit*Point,"stoch sample",16384,0,Green);

  ==============

Sir the error is not identifiable by me? Please guide me.

Thanking you

Mohamed Maideen.M, India

babumsj2@gmail.com

Files:
MaidSig.mq4  5 kb
ST.mq4  6 kb
 
babumsj2gmailcom:

Dear Mladen Sir,

I am very very sorry, I forget to attach that indicator. It is Maidsig.mq4

================

stochcurrent =iStochastic(NULL,0,4,1,1,MODE_SMA,1,MODE_MAIN,i+0);             stochprevious=iStochastic(NULL,0,4,1,1,MODE_SMA,1,MODE_MAIN,i+1);  

         st0=iCustom(NULL,0,"ST",10,3.0,0,i+0);
         st1=iCustom(NULL,0,"ST",10,3.0,1,i+0);
         supertrend=(st1 != EMPTY_VALUE && st1==st0) ? 2 : 1;  // 1 buy 2 sell        

      if(supertrend==1 && stochprevious<=20 && stochcurrent>20 && ((Tradeinsidebar==false && NewBarBuy(i))||(Tradeinsidebar)) ) //BUY        
         {       

============================

Sir the criteria is:

Buy: Blue-up-arrow: when Supertrend=Buy and Stochastic moves up above 20 from the bottom.

Sell : Red-Down-arrow: when Supertrend=Sell and Stochastic moves down below 80 from the Top.

==============================

EA also the same:

 stochcurrent =iStochastic(NULL,0,4,1,1,MODE_SMA,1,MODE_MAIN,0);
   stochprevious=iStochastic(NULL,0,4,1,1,MODE_SMA,1,MODE_MAIN,1);  
   st0=iCustom(NULL,0,"ST",10,3.0,0,0);
   st1=iCustom(NULL,0,"ST",10,3.0,1,0);
   supertrend=(st1 != EMPTY_VALUE && st1==st0) ? 2 : 1;  // 1 buy 2 sell
   mmbuy=(iCustom(NULL,0,"Maidsig",4,0)==-1);
   mmsell=(iCustom(NULL,0,"Maidsig",3,0)==1);

  if(mmbuy && ((Tradeinsidebar==false && NewBarBuy())||(Tradeinsidebar)) ) // BUY  

        {
         ticket=OrderSend(Symbol(),OP_BUY,Lots,Ask,3,0,Ask+TakeProfit*Point,"stoch sample",16384,0,Green);

  ==============

Sir the error is not identifiable by me? Please guide me.

Thanking you

Mohamed Maideen.M, India

babumsj2@gmail.com

I am afraid I do not understand the question. The EA works based on the conditions you gave it. There is no coding error
 
babumsj2gmailcom:

Dear Mladen Sir,

I am very very sorry, I forget to attach that indicator. It is Maidsig.mq4

...

Thanking you

Mohamed Maideen.M, India

babumsj2@gmail.com

Coding help please here go : https://www.mql5.com/en/forum/174385

or here (Simple experts) : https://www.mql5.com/en/forum/186208 


 By the way, how to post code on tsd . . .please use the SRC button

 

 
Anyway:

Coding help please here go : https://www.mql5.com/en/forum/174385

or here (Simple experts) : https://www.mql5.com/en/forum/186208 


 By the way, how to post code on tsd . . .please use the SRC button

 

Anyway

Thanks to help guide users manage themselves in a proper way :)

 
mntiwana:

Anyway

Thanks to help guide users manage themselves in a proper way :)

It is the duty of all members to keep the pages layout clean

anyway, Anyway thinks so :)

Reason: