EA opens only Buy Orders - page 2

 

And what is your trade logic with this? Buy and sell conditions?

you can write your logic in private message if you want

 
Ahmet Metin Yilmaz:

And what is your trade logic with this? Buy and sell conditions?

you can write your logic in private message if you want

I wrote u a PM
 

Your indicator has only 1 buffer ( one of your copybuffer trying to find second one )

and your logic should be like this as I wrote before

  //BUY Signal
   if (KV4Value0 > 0.0 &&                        //Uptrend confirmation
   KV1Value0 > 0.0 &&
   KV1Value1 < 0.0)                        //Indicator closes above 0
      {
      signal = "Buy";
      }

Your strategy wants only takeprofit I mean doesnt have stoploss or exit strategy if trend turns opposite.

Needs some improvement

Reason: