bro you are like rocket too fast... great
Hemmy, we hope you post here profitable set
Sent from my iPhone using Tapatalk
bro you are like rocket too fast... great
plz you also test and share.. i try to check with different time fram and see which one is goodHemmy, we hope you post here profitable set
Sent from my iPhone using Tapatalk
ea was going well but this trade make it worstHemmy, we hope you post here profitable set
Sent from my iPhone using Tapatalk
hemmy.. all the indicators need to be attached into the file first? cuz my one doesnt open trades at allea was going well but this trade make it worst
i was testimg 1mnt chart 50sl and 5 pips profit..
no need to attach just copy past on your indicator folder..hemmy.. all the indicators need to be attached into the file first? cuz my one doesnt open trades at all
tanaka bro can u help me for this ea with this indicator?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 !
can u modifie it.. no stop loose no sl.. let it run.. when out trade in profit then closeHemmy, 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.
![]()
copied and pasted.. but no trades opened even on m1no need to attach just copy past on your indicator folder..
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;
}
If BUY arrow, then SELL order.the reverse mode means wat , tanaka?
ST, I coded. It looks very simple but it has potential.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 !
bro tanaka , thanks for your help!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.![]()