[ARCHIVE] Any rookie question, so as not to clutter up the forum. Professionals, don't pass by. Nowhere without you - 3. - page 64
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
why does the ROC indicator not actually take on a value less than "0", but does graphically?
Which ROC? This one?
Which ROC? This one?
https://www.mql5.com/ru/code/9340
Hi all. Guys I have a condition to find max: but within a corridor.
For (int max=1; max<1000; max++)
if (High[max+1] < High[max] && High[max] > High[max-1] && Low[max+1] < Low[max] &&& Low[max] > Low[max-1] &&
High[max] > low_level_s && High[max] < high_level_s) break;
it does not work.
if I remove corridor All ok:
for (int max=1; max<1000; max++)
if (High[max+1] < High[max] && High[max] > High[max-1] && Low[max+1] < Low[max] && Low[max] > Low[max-1] ) break;
What could be the problem?
I understand that max<1000 should be increased, I tried it but it didn't work.
Here is an example in numbers:
1. 4100<1.4150<1.4200 but 1.4150 must fall
within low_level_s(1.4145), high_level_s(1.4155) . In this example it did.
But if it is not, let's assume that it is 1.4160, we will keep looking. The problem is that this high may be 3 years ago, for example. The program can not find it.
What to do? Maybe it is possible to get the quote archive?
https://www.mql5.com/ru/code/9340
Look at my link - it's a basic variant with description of price rate indicator + EA based on it (iCustom() indicator succumbs). If you have other trading conditions for market entry, edit the existing ones and go ahead, everything tests fine, now myself, just finished testing it as a variant of thechanalysis (market entry filter), moreover there is a description and everything else... Edit it to suit your conditions and that's it. The Expert Advisor is here.
Look at my link - it's a basic variant with description of price rate indicator + EA based on it (iCustom() indicator lends itself). If you have other trading conditions for market entry, edit the existing ones and go ahead, everything is tested fine, now myself, just finished testing it as a variant of tehanalysis (market entry filter), moreover, there is a description and everything else... Edit it to suit your conditions and that's it. The Expert Advisor is here.
Thanks
Whew!!! The computer's gone down!!! It reacts with a delay, pops up wrong windows, doesn't delete, freezes... I've rebooted it 20 times, unplugged it.
Thank you.
Maybe it's a virus.
The users folder there is forty-five thousand megabytes, my God! And the sum of the folders it contains, the sum of what it contains, checking by clicking on the properties of the folder, does not give even thirtieth part.
It's not deleted!!! It's just slowing down, no swearing.
Nothing uploaded, nothing deleted, had a hard time deleting pictures and then a Ninja movie, the space added an edge like insignificant, a millimeter of red.
Trailinstop does not work. Please advise how I should have entered it correctly
Trailingstop code.