
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
Igor, could you please tell me if there is a function that determines the minimum value in pips to place a pending order?
Thank you!
Igor, could you please tell me if there is a function that defines the minimum value in pips to place a pending order?
Hello Igor! Could you write a function that will stop the EA from replaying the signal? It means that the state, after adding this block of code should look like this: buy, sell, buy, sell, buy, sell.... etc...
Hello Igor! Could you please write a function that will stop the EA from re-triggering the signal? ... That is, the state, after adding this block of code should look like this... buy,sell,buy,sell,buy,sell.... etc...
swings...
ExistPositions()
ClosePositions()
The NormalizePrice() function.
This function returns the normalized price value. The normalization is performed using the values of the MarketInfo(MODE_TICKSIZE || MODE_DIGITS) function. The NormalizePrice() function takes the following parameters:
SZZ. Attached is a script to test NormalizePrice() function.
(Newbie question).
Dear KimIV I've written a function:
GetExtremumZZPrice().
What kind of code should be used to store the prices of the last minimum and maximum in 2 variables ? ( my mind is fried ;((())
What kind of code should be used to store the prices of the last minimum and maximum in 2 variables ?
KimIV
Thank you!
The script's task is to facilitate placing pending orders (mainly Buy stop and Sell stop).
I.e., the script parameters are set as follows:
1. Level from which the orders are placed (for example, EUR / USD Buy Stop from 1.3000)
2. The size of each order (for example, 0.01).
Step of placing orders (e.g. 1 pip)
4. TP of each order (e.g. 3 pips)
5. The number of pending orders (e.g. 70) or the level up to which the pending orders should be placed (e.g. up to 1.3070).
Thanks in advance for the expert answer!