Experts: Coensio Swing Trader EA CSTV06

 

Coensio Swing Trader EA CSTV06:

This EA makes it possible to trade semi-automatically using manually pre-defined support/resistance or breakout levels.

Coensio Swing Trader V04

Author: Krzysztof Szymczyk

 

wow, now that is one hell of an EA! 

 

It ain't work! :( Am I doing something wrong?

Should the name be "gs" "gl" or simply gs gl?

Thank you!

 

hello Krzysztof Szymczyk

nice idea, but i think there is something wrong with the formula

it doesn't work on my mt4

can u tell me what is GL and GS ?

i think there is something wrong on formula below


   //Find TL break signals         
   if(ObjectFind("gl")==0)
   {
      GL = NormalizeDouble(ObjectGetValueByTime(0,"gl",Time[0],OBJ_TREND),Digits);
      if(Ask>GL+EntryThreshold*Pip)
      {
         BuySig=true;
         SellSig=false;
      }
   }
   else
      GL=1000;    
   
   if(ObjectFind("gs")==0)
   {  
      GS = NormalizeDouble(ObjectGetValueByTime(0,"gs",Time[0],OBJ_TREND),Digits);
      if(Bid<GS-EntryThreshold*Pip)
      {
         BuySig=false;
         SellSig=true;
      }
   }
   else

      GS=-1000; 

thank you

From Moderator: Please use SRC button when posting code. I've fixed it for you this time

 

An interesting idea !

But how can I make it work on my MT4 ?

I drew trend lines close to the price and did name those "gl" and "gs", just no trades are opening even though the lines are passed by price.

 

Need some help from Krzysztof.

 
It does not work.