• 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

Hello Stadevata: I apologize, but I have an automatic language converter, and I forgot to disconnect it, the momentum indicator, you put it in mt4, it puts arrows very well, but in demo it does not work, you reload it and put the missing arrows, If you could fix it ???, I would like to do an ea with it, plus another indicator that I have, I use M1, thanks for your time, a hug. page,1111
 
sorry i already open it ..
but i don't know what u mean :rofl::rofl::rofl::rofl:
i can only speak indonesian and english language :D
Hello Stadevata: I apologize, but I have an automatic language converter, and I forgot to disconnect it, the momentum indicator, you put it in mt4, it puts arrows very well, but in demo it does not work, you reload it and put the missing arrows, If you could fix it ???, I would like to do an ea with it, plus another indicator that I have, I use M1, thanks for your time, a hug.
 
Hello Stadevata: I apologize, but I have an automatic language converter, and I forgot to disconnect it, the momentum indicator, you put it in mt4, it puts arrows very well, but in demo it does not work, you reload it and put the missing arrows, If you could fix it ???, I would like to do an ea with it, plus another indicator that I have, I use M1, thanks for your time, a hug.

i already check the indicator code ... and the code have an error "zero divided"
error code :

double signalVal = (momVal / (atrVal + adxVal)) - subtractFromSignalVal; // -2
double indiVal = ((atrVal + cciVal + rsiVal) / adxVal) - subtractFromIndiVal; // -1


code with red color should not be the same as zero
when you put the indicator on chart it will look good coz there is no zero divided
but if u run it on chart there is zero value coz mt4 calculate it.
its done when those 2 line change with this ..

double signalVal = (atrVal + adxVal)!= 0 ? (momVal / (atrVal + adxVal)) - subtractFromSignalVal : 0; // -2
double indiVal = (adxVal) != 0 ? ((atrVal + cciVal + rsiVal) / adxVal) - subtractFromIndiVal : 0; // -1


But this indicator badly repaint
just test it with strategy tester and compare it with when you drop this indicator directly on chart , not just late arrow but it give super badly repaint arrow


 

Attachments

Hello Stadevata: thank you very much for having looked at the indicator, but it does not work, in demo if you program it with other values, it puts the arrows, but later no, if you leave it with the values that come, it puts two arrows together, inverse, it does not What you have to do, anyway thank you very much for your effort and dedication, you will know some indicator that is momentum with arrows, and that moves with different levels, here it is not possible, I am in Spain, and I can access mql5 and not much more, later you can connect with American pages mainly, the entire Asian area, is out of my reach, if at any time I can do something for you do not hesitate to contact me, happy to help you, how do they take the covi 19? here we are in quarantine, 15 days, a greeting, and a hug that is missing.
 
I wish EA_Zaman Martingale Strategy (22-May-Chaos) could have these specifications below:

When the user makes a purchase or sale following a trend and that order does not reach success in relation to the 1st order, the 2nd order and the other orders will be in the opposite direction in relation to the 1st order, that is (1st order purchase) not reached, in that moment, a 2nd order will be reversed the 1st order giving continuity to the inverse orders until the moment when the last order is not successful starting the cycle again,

Please consider my request to redo both requirements.
The mql4 code for this robot is already in this group. Tannaka did it.

Can someone add these parameters for me on this robot please.
 

Attachments

Hi guys

As I see that enough people would like to know how good their indicator is, testing it with an Ea.

I thought the following:

I am going to try to make a Simple Ea for all with the indicator that you share here.
So we can identify how good an indicator is, with respect to another.

The EA will be simple and for all indicators equal:

TP 50

SL 60

The EA will take the H1 signal

Only 1 trade at the same time, until it closes, there will be no other.

The operations will be opened with the first candle in which the signal goes off, 20 minutes later (to try to avoid false signals, indecisions of the indicator)

Remember this:

I am not a programmer, And neither an Expert, I just want to help and discover good indicators.

The indicators have to be in mq4 please.

If I find good indicators on my own, I will also make them EAs, and I will share them here.

I will only share the EAs in ex4, without any limitations in time or anything.

Reason:

I do not want if we are lucky enough to find something good here, someone can sell it, so, anyone will come to soehoe.id, and download the EA.

Free from All to All

I understand that the EA will be very basic, but this helps to make backs of your indicator, also, we have the opion to use:

RoNz_Auto_SL-TS-TP

This EA can control the SL and TP of other EA, with the ability of Trailing Stop and Hide them ...

I will make an backtest for the EA:

EURUSD 6 month
H1
Spread in fxt Dukascopy data, 10
Leverage 100


Nothing else, I hope we get something good from here :):ok:
Hey bro get in touch please as soon as possible +34638838399
 
I dont have .mq4 file, i hope you have stochastic ea file

I need detail strategy
cause stochastic have 2 buffer line .. mode main and signal
and those 2 buffer line mostly not crossing level 20 or 80 at the same time
but u can check this and test it on strategy tester , tell me if any wrong about it
 

Attachments

Last edited:
Please I need help

I just want the buy and sell separately.

Please help me

sorry .. i cant help
i already give u few solution by replying ur PM and recode it
but i think u dont understand it
if u read carefully my solutions on this thread and PM, and knowing how to operate an Expert Advisor ur problem already done

Please dont send me PM anymore :rofl::rofl:
but if u want send love and hug i'll accept it gladly :D:D
 
I need detail strategy
cause stochastic have 2 buffer line .. mode main and signal
and those 2 buffer line mostly not crossing level 20 or 80 at the same time
but u can check this and test it on strategy tester , tell me if any wrong about it
Hai,
Buy and sell are not matching with reference to indicator. No trades in over bought and over sold. I need as per the pic attached.
 

Attachments

  • stoc.PNG
    stoc.PNG
    9.2 KB · Views: 271
Last edited:
Hai,
Buy and sell are not matching with reference to indicator. No trades in over bought and over sold. I need as per the pic attached.
as i say before ..
i need detail strategy not just pic
u just give mark on pict .. but i need the detail
pls zoom ur chart and tell me buy sell when red line cross level 20 or 80, or when blue line cross 80 20, or 2 line should cross at the same time

buy and sell is matching because order execute on shift 0 to avoid false signal
if u want order on shift 1 or 2 it OK

this is my rule :
GBPUSDH1.png
 

Attachments

  • GBPUSDH1.png
    GBPUSDH1.png
    34.2 KB · Views: 1,134
Last edited:
Hai,
Buy and sell are not matching with reference to indicator. No trades in over bought and over sold. I need as per the pic attached.

This version take order without waiting bar close
use MAIN signal buffer (green line) to open order
but sometime fake signal appear

GBPUSDM1.png
 

Attachments

  • GBPUSDM1.png
    GBPUSDM1.png
    32.2 KB · Views: 1,139
  • stoch_ea.ex4
    stoch_ea.ex4
    31.9 KB · Views: 68
stadevata, thank you for ea.
the best results in testing I get on 15 min chart (21,10,14 ), if you go with trend.
EURUSD was in bearish trend Feb/03/2020 to Feb/21/2020
 

Attachments

  • EURUSD15min.PNG
    EURUSD15min.PNG
    18.7 KB · Views: 286
Back
Top