Any questions from newcomers on MQL4 and MQL5, help and discussion on algorithms and codes - page 1735
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
The key word is HELP!
As I've written before: You'd better tell me at once that this indicator cannot be finalized on this forum!
And that's it...and I'll understand.... why so much slag was poured out???
I wrote it in the first place.
you can't fix it, it's crooked...
That was the first thing I wrote. You didn't see it, didn't realize it, thought it was bullshit.
The fact that you regard my attempt to convey to you as rubbish that you have stirred up here - I am not offended, I have not tried for your sake, someone else will read it and will not make mistakes. As for you, good luck with your indicator, look for other forums if you do not like this one.
I wrote right away.
There's no way to fix it, it's crooked...it can be fixed, but it will redraw the 8 outermost bars.
The key word is HELP!
I helped you - I wrote down what you needed to do - and?)
what did you do?
It can be fixed, but it will redraw the 8 outermost bars.
It was also said that the signal can be applied immediately to the 9th bar and there will be no re-drawing at all.
i have helped you - i have written what you need to do - and?)
what did you do?
by the way, you would get (with some probability) to arbitrage, you need to agree in advance on everything that he needs to do.
It was also mentioned... it was also said that you can send a signal at the 9th bar and there will be no overpricing at all... but the man does not understand
by the way, you would get to arbitrage, you have to negotiate everything in advance... what he needs cannot be done without reservations
everything is possible to do here, the man agrees to the overrides and signals 8 bars back, what's the problem?
ps. divergences and fractals also appear in the past, no big deal.Everything can be done here, the person agrees to the re-rating and the signals 8 bars back, what's the problem?
He needs to "just" remove the extra arrows and that's it. And how to do it, by re-rating or not, is your problem... This is how any arbitration starts :)
It depends on how you formulate the terms of reference, but in any case - I would not take the risk ... Even a successful arbitration is months of stress...
The key word is HELP!
As I've written before: You'd better tell me at once that this indicator cannot be finalized on this forum!
And that's it...and I'll understand.... why so much slag was poured out???
Exactly. If you help do it, it means you do it, and someone helps you as much as you can and as much as you can and as much as you can.
If all you do is ask, without doing anything else, and someone does it for you, then it's a goodwill bureau.
When I created this thread, I meant help, not the production of free wishes.
Hello Dear forum users and experienced programmers! I need help in completing the EA)). Please advise how to add 2 things to the code advisor:
1. Here is the situation: I open an order (1st) with TP and SL and a certain lot (probably 0.01). If this order closes at take profit - cool, nothing changes. But if this (1st) order is closed at SL, the next order immediately after that (2nd) is opened with a 2 times larger lot (0.01*2=0.02). If this 2nd order is closed at Take Profit, then the next order (3rd order) is opened with a regular lot, i.e., 2 times larger lot is needed only for the next order (2nd order) after the previous (1st) was closed at SL. If the 3rd order will be closed in SL for the second time in a row, the lot will remain increased by 2x until there will be no TP close. I hope I have described in detail the logic of what needs to be added;
2. and the second thing we have to add is the SL movement. now let me explain it with an example: let's assume we have an order with basic parameters T.p. + 300, S.l. - 500. The price moves in the required direction and passes +100 pips from the opening price of the order. Once the price reaches +100 from the opening price of the order, SL should move from the base -500 to +90. I.e. when the price reaches +100 pips from the opening price of the order, we transfer the order to Breakeven by setting S,L to +90 pips. After that, if the price moves further in the desired direction and passes by another + 50 pips - S.L. is moved by 50 pips => it should now be at + 140 pips from the opening price of the order. I.e. the S.L. first moves from its base position to + 90 pips from the opening price of the order and then moves if it passes by + 50 pips ( - 500 => + 90 => + 140 => + 190 etc.). And so it goes either until the price reaches T.P. or when the trend reverses and hits the S.L.
I hope I described everything in details, and I really hope for your help, because by adding these missing elements, the Expert Advisor will be ready)) If you have any questions, please ask))) I am pasting a part of the code of the Expert Advisor below:
Catch
Hello.
Sorry for the stupid question... The order is now properly placed, then error 129 - wrong price. It's getting to be a pain in the ass... Help me out... ((
int f = OrderSend(para_2,OP_BUY,0.1,Ask_para_2,3,0,0,"",0,Blue); if(f < 0){Alert("Error setting Buy Stop order: ", GetLastError());}