[WARNING CLOSED!] Any newbie question, so as not to clutter up the forum. Professionals, don't go by. Can't go anywhere without you. - page 1012

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
THANK YOU
Hello!
Can you please advise how to implement a comparison of indicator values with the price of different time intervals (timeframe???????) in an EA. I am pasting the code. Search did not give anything, as much as I could read this thread (with 940). Thanks in advance!!!
I have an EA that trades by the wagons. The problem is that it does not always open and close positions correctly, I think because of slippage. Please add the Slippage parameter to the EA. Thank you
Hi all!
Can you please tell me how to set up this EA? https://www.mql5.com/ru/code/9434
I want it to open hedging position or close position with profit if it reaches certain minus or plus.
I don't know where to change parameters.
There are parameters there: profitplus 1.0
profitminus -1.0
profit 1.0
I do not know where to change it.
I do not know where to change the parameters.
Can you tell me where to find an EA that opens a position at the opening of a daily candle?
cp.
Hello, respected programmers!
I have an EA that trades by the wagons. The problem is that it does not always open and close positions correctly, I think because of slippage. Please add the Slippage parameter to the EA. Thank you
Hello!
Can you please advise how to implement a comparison of indicator values with the price of different time intervals (timeframe???????) in the Expert Advisor. I am pasting the code. Search did not give anything, as much as I could read this thread (with 940). Thanks in advance!
As far as I understand this is where it is compared. If I am mistaken, let them correct me.
if(
(sar10>Open[0])&& // SAR 1 // compare with opening price
(sar11>Close[0+1])&& // compare with closing price
(sar50>Open[0])&& // SAR 5
(sar51>Close[0+1])&& // minutes
(sar150>Open[0])&& // SAR 15
(sar151>Close[0+1])&& // minutes
(sar152<Close[0+2]) // trend start
)
1. how the programme is coordinated in different timeframes on a real or a tester.
Example: on the hour, we watch and look for a trend, on the half-hour and below the (.) entry/exit.
Thank you.
Hello, guys, can you tell me how to make this EMA crossover signal indicator so that at each crossover it emits not one beep but as many beeps as I want?
I didn't look at the code, but the first thing that came to my mind: in the part of the code where one beep is generated, make a loop and output the number of its iterations to the external. The signal will be output as many times as you set in the settings...
Although... It will be a pause in the work of the indicator with the duration of the signal *number of iterations of the cycle.