[ARCHIVE]Any rookie question, so as not to clutter up the forum. Professionals, don't pass it by. Can't go anywhere without you - 5. - page 136
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
People, help me out on how to get a StopLoss in an EA.
DmitriyN
I agree, and yet.
found an EA on codeBase https://www.mql5.com/ru/code/8416
It works perfectly, but there is no stop loss.
I have been working with this tutorial for two weeks now, but I cannot understand anything.
I need help writing a stoploss in it.
DmitriyN
I agree, and yet.
found an EA on codeBase https://www.mql5.com/ru/code/8416
Works perfectly but no stoploss.
I have been working with this tutorial for 2 weeks now, but I still do not understand anything.
Help me write a stoploss in it.
MartingailExpert_v1.0_Stochastic - how do I feel about it?
First of all martingale is the horror of amityville itself.
Secondly - stochastic, i.e. indicator with clearly defined period(s), which in principle will never work. Do you understand? Never!
Third - version 1.0 - as a rule anything with this version, whatever it is, should be avoided.
Last but not least. Understand that stops should not be constant. How can they be constant if the price is non-periodic and non-amplitude? Absurd.
So 2 weeks is not surprising. You will soon agree with me.
Here's what he gave me
Please advise. There is a buffer in the indicator Buf[i] that has different values at different moments. How to sum all of the values of this buffer on the chart?
Suppose Buf[1]=6, Buf[2]=2, Buf[3]=5... and so on, I know how to sum 3 values, but if I don't know how many of these values there are, how can I sum all the values and assign the result to a variable?
int i=0;
double SomeVariable=0:
while( i<Bars ){
ImmobileVariable+=Buf[i];
i++;
}