• Welcome back! Thank you for being a part of this Traders Community. Let's discuss and share :)
    Selamat datang kembali! Trimakasih telah menjadi bagian dari Komunitas Trader ini. Mari berdiskusi dan berbagi :)

Suggestion I will make a Free EA with your Indicator

Hemmy, we hope you post here profitable set


Sent from my iPhone using Tapatalk
ea was going well but this trade make it worst

i was testimg 1mnt chart 50sl and 5 pips profit..
 

Attachments

  • Untitled.png
    Untitled.png
    198.1 KB · Views: 252
Hi Tanaka. can you please help me to add one indicator (superTrend) to Moving Average EA?the indicator please make a option (open/Close)
When supertrend are up trend, when touch Ma only open Buy , when supertrend is Down trend only open Sell .
please make ea with option
1.trailing stop
2. protection SL ( example when profit 10pip SL will auto go to the price protec )
3.at the EA Maximum Risk change like that( first Lot 0.01 if Buy when Sl next order will be Sell 0.02 /Buy 0.03 / Sell 0.04....or can Lots Exponent )
the Sl are use Ma to decide.
4. comment

all the ori option of the Ea no need to change,
thanks for your help !
tanaka bro can u help me for this ea with this indicator?
 
Hemmy, I coded.
Entry logic is as you explained.
1. Please optimize indicator parameters. You need to find the best TF and parameters. You can change them in EA parameter menu.
2. "Signal_Bars_Executive_v1 indicator" has no buffer signals, so I modified the code, so please replace to the attached file. (remove prefix, SOEHOE_)
3. All in pack is attached. It includes all indicators and EA.
:cool::ok:
can u modifie it.. no stop loose no sl.. let it run.. when out trade in profit then close
 
upload_2018-10-2_14-31-59.png

upload_2018-10-2_14-33-33.png

one with indicators attached .. one doesnt..but both also dont open trades
 

Attachments

  • upload_2018-10-2_14-31-59.png
    upload_2018-10-2_14-31-59.png
    193.8 KB · Views: 835
  • upload_2018-10-2_14-33-33.png
    upload_2018-10-2_14-33-33.png
    332.1 KB · Views: 819
OK, I can code. MA logic is simple.
I will add Super-Trend.

Code:
 if(Open[1]>ma && Close[1]<ma)
     {
      res=OrderSend(Symbol(),OP_SELL,LotsOptimized(),Bid,3,0,0,"",MAGICMA,0,Red);
      return;
     }
//--- buy conditions
   if(Open[1]<ma && Close[1]>ma)
     {
      res=OrderSend(Symbol(),OP_BUY,LotsOptimized(),Ask,3,0,0,"",MAGICMA,0,Blue);
      return;
     }
 
Last edited:
Hi Tanaka. can you please help me to add one indicator (superTrend) to Moving Average EA?the indicator please make a option (open/Close)
When supertrend are up trend, when touch Ma only open Buy , when supertrend is Down trend only open Sell .
please make ea with option
1.trailing stop
2. protection SL ( example when profit 10pip SL will auto go to the price protec )
3.at the EA Maximum Risk change like that( first Lot 0.01 if Buy when Sl next order will be Sell 0.02 /Buy 0.03 / Sell 0.04....or can Lots Exponent )
the Sl are use Ma to decide.
4. comment

all the ori option of the Ea no need to change,
thanks for your help !
ST, I coded. It looks very simple but it has potential.
I tested with EURUSD TFM5 and SL=0. TP=0 with trailing stop.
Also you can test with martingale option, risk percentage etc...
This EA has many entry signal, so you can change maxmum orders. :ok:;)
 

Attachments

Last edited:
ST, I coded. It looks very simple but it has potential.anks
I tested with EURUSD TFM5 and SL=0. TP=0 with trailing stop.
Also you can test with martingale option, risk percentage etc...
This EA has many entry signal, so you can change maxmum orders. :ok:;)
bro tanaka , thanks for your help!
 
Back
Top