There is an interesting trading idea. Help me find errors in the code (mql4). - page 14
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
I am not familiar with the fund yet, if you could explain what these reopenings are for in more detail. I see from the history that the positions reopen on their own during clearing
If it's simple, the price calculation before and after the clearing is based on their index calculation in dollars, yen, and some other shit! The fact is if you don't get out you can become a millionaire overnight, or you can give your flat to bailiffs.)
If you just pay the price before and after clearing, it's based on their index calculation in dollars, yen, or some other shit! But the fact is that you can become a millionaire overnight, or you can give your flat to bailiffs.)
In principle, it is not difficult to add these parameters.
In principle adding these parameters is not difficult, I will try at the weekend
I have it sort of built my own, but a quick look at the guys work on the timer ! this is the first https://www.mql5.com/ru/users/c-4 I've read and still do not understand how it works ,,,,,,,,
although i don't understand your code either, i'm no librarian !
and i also saw a timer somewhere ,,,, i need to remember
I kinda have it built my way, but kinda have a quick look at the guys work on the timer ! this is the first https://www.mql5.com/ru/users/c-4 I've read and haven't figured out how it works yet ,,,,,,,,
although i don't understand your code either, i'm no librarian !
and i also saw a timer somewhere ,,,, i need to remember
I have a timer of my own design, I'll look into it
The glitch can be divided into two eyes, one is trending and the other one is getting a better idea of where the stops have moved away from the tops and then we work on the flat,
We're going to work on the small frames, not like goo's doing on 4, .......................... we dont go above the m5 frame ,,.......... why is that!
Because the signal formation from the flat to the trend goes on the small frames of m1-ticks, etc. I should catch the extreme entry there
I also realized that if the EA can resist the last one in the test, it will also be stable on medium term.
now about manipulation triggers, i.e. how to change the trend / flat!
1stop loss
2 flat
3 trend target
4 exit by trawl
here's a good trigger for the fantasy.................
that's what spurred me on and i'm gonna try it out
here are my ideas to work on as much as possible
The glitch can be divided into two eyes, one is trending and the other one is getting a better idea of where the stops have moved away from the tops and then we work on the flat,
We're going to work on the small frames, not like goo's doing on 4, .......................... we dont go above the m5 frame ,,.......... why is that!
Because the signal formation from the flat to the trend goes on the small frames of m1-ticks, etc. I should catch the extreme entry there
I also realized that if the EA can resist the last one in the test, it will also be stable on medium term.
now about manipulation triggers, i.e. how to change the trend / flat!
1stop loss
2 flat
3 trend target
4 exit by trawl
here's a good trigger for the fantasy.................
that's what spurred me on and i'm gonna try it out
here are my ideas to work on as much as possible
on history the result is positive... in trade so far... -1940... not bad for a cartoon...
Please advise how to fix unidentified variable error, I'm not very good at MQL4
// lot calculation
if(MarketInfo(Symbol(),MODE_LOTSTEP)==0.01) int digit=2;
if(MarketInfo(Symbol(),MODE_LOTSTEP)==0.10) int digit=1;
if(MarketInfo(Symbol(),MODE_LOTSTEP)==1.00) int digit=0;
double _lot =NormalizeDouble(lot* MathPow(koef,totalO(-1,key)),digit);Here, it does not see the entry of this variable before (
double min=MarketInfo(Symbol(),MODE_MINLOT);
if(_lot<min)_lot=min;