Questions from Beginners MQL5 MT5 MetaTrader 5 - page 1448

 
klycko #:

The description says it won't work on another computer (see attached picture).

That's why I have a question about the possibility of simultaneous operation on two computers (using two activations).

This copy will not work on another computer. BUT!!! If you connect to the market on another computer and download one more copy, using one more activation, then all copies will work simultaneously. The main thing is not to change these copies, otherwise none of them will work....

At the same time, if you downloaded the product to one terminal, then if you put a second copy of the terminal on the same computer, the downloaded Expert Advisor will work in the second terminal.

 
Thank you so much for the clarification!
 

Good afternoon

Can you tell me if it is possible to implement a notification in the form of a pop-up window or a log entry?

What is the point, there is an algorithm for trading. I don't want to trade automatically.

I want MT5 to notify me about the occurrence of an event, in any form, and I have already made a decision.


I tried to create an EA without opening positions, when an event occurs, I used the command print, printf to write to the log.

In the test the log is filled in, online it is not.

 
Михаил Соколов create an Expert Advisor without opening positions, when an event occurs, I used the print, printf command to write to the log.

In the test the log is filled in, online it is not.

Hello, Mikhail, try to use common functions. For example, Alert or MessageBox.

Regards, Vladimir.

 
2023.03.03_03:54 GMT+3. Hello, I tried to write to Service Desk, the bot answers only to prepared questions. If the Expert Advisor works on a weekly chart, it gets data for the Stochastic indicator from the monthly chart, -- this function works. But for the Ichimoku indicator I cannot get data from the monthly chart: I get an error: "CopyBuffer from iIchimoku failed, no data". This is a question for MetaQuotes programmers. I doubt that the forum will answer this question for me. Who can tell me what to do?
 
Михаил Соколов #:

In the test the log is populated, online it is not.

Maybe you are looking for your prints in the wrong tab of the terminal?

Everything that the Expert Advisor prints in the terminal should be viewed in the "Experts" tab.

 
Николай Никитюк Stochastic indicator from the monthly chart, -- this function works. But for the Ichimoku indicator I cannot get data from the monthly chart: I get an error: "CopyBuffer from iIchimoku failed, no data". This is a question for MetaQuotes programmers. I doubt that the forum will answer this question for me. Who can tell me what to do?

If there are less candles on the monthly chart than any of the indicator parameters, Tenkan-sen, Kijun-sen, Senkou Span B, then the indicator will not work.

 

hi i need auto stop loos fixed not trailing script/advisor when you make an order it put your stop loos on the previous candle ( The High on sell order/ The low On buy order)

Work On All frame

And But TP 1:2

I hope someone Help Me.

 
Fater Alkozey #: hi i need auto stop loos fixed not trailing script/advisor when you make an order it put your stop loos on the previous candle ( The High on sell order/ The low On buy order) Work On All frame And But TP 1:2 I hope someone Help Me.

Yes, I am sure someone you hire in the Freelance section will be able to help you.

Trading applications for MetaTrader 5 to order
Trading applications for MetaTrader 5 to order
  • 2023.03.03
  • www.mql5.com
The largest freelance service with MQL5 application developers
 

I want to take the open, close, high, low values of the EURUSD parity to write ea in MQL5 and examine them.
Of course, ea did not work. When I printed and checked the values with the Alert command, I saw that they were all the same.

CopyOpen(Parity, PERIOD_H1, 0, 1, Buffer_OPEN);
CopyClose(Parity, PERIOD_H1, 0, 1, Buffer_CLOSE);
CopyHigh(Parity, PERIOD_H1, 0, 1, Buffer_HIGH);
CopyLow(Parity, PERIOD_H1, 0, 1, Buffer_LOW);

Alert(Buffer_OPEN[0], " ", Buffer_CLOSE[0], " ", Buffer_MA[0], " ", Buffer_HIGH[0], " ", Buffer_LOW[0]);

.
:
:
2023.03.02 19:00:00 Alert: 1.05943 1.05943 1.0620066666666659 1.05943 1.05943 1.05943
2023.03.02 20:00:00 Alert: 1.05799 1.05799 1.0614719999999993 1.05799 1.05799
2023.03.02 21:00:00 Alert: 1.0593 1.0593 1.0611919999999992 1.0593 1.0593
2023.03.02 22:00:00 Alert: 1.05903 1.05903 1.0608339999999992 1.05903 1.05903 1.05903
2023.03.02 23:00:00 Alert: 1.06005 1.06005 1.0606413333333324 1.06005 1.06005 1.06005

When I examine it, I see that the OPEN value is correct and the others are wrong.
Does anyone have an idea?

Reason: