- Mql4 Trailing stop problem
- Open Trade on New Bar
- How to get open prices for the buy and sell trades seperately?
Add all the entry prices together.
Divide by 10.
double total=0; for(int x=OrdersTotal()-1; x>=0; x--) { if(OrderSelect(x,SELECT_BY_POS)) total+=OrderOpenPrice(); }
Thank you so much i will try this :)
You're welcome.
Please note that if your orders have different volumes (lots) and you are trying to calculate the net open price (that will be equivalent to a single order for the entire batch), then you have to apply the following calculations:
Forum on trading, automated trading systems and testing trading strategies
Any great idea about HEDGING positions welcome here
Fernando Carreiro, 2018.09.17 21:17
For those of you that want to learn to see the "light" and not fall into the trap of "hedging" and Grid strategies, here is the basic math:
:
Learn to do your research properly! Do not be blinded by false promises. Do the math!
Please note that if your orders have different volumes (lots) and you are trying to calculate the net open price (that will be equivalent to a single order for the entire batch), then you have to apply the following calculations:
Well, it does require that you have some understanding of mathematics and its notation, in order to understand it. In essence:
- You first sum the volume of all open positions (That is the first calculation for "Net Total Volume").
- Then you sum the product of the open price and the volume of each position (that is to multiply the open price and volume for each position, and then sum it all up)
- You then take the sum in step 2 and divide it by the sum of step one. That will give you the "Net Mean Opening Price".
You can apply the same logic in the calculation of the "Net Mean Closing Price" (or the S/L or the T/P).
For the "Net Mean Profit or Loss", subtract the "Net Mean Opening Price" (step 3) from the "Net Mean Closing Price", then multiple by the "Net Total Volume" (step 1).
Well, it does require that you have some understanding of mathematics and its notation, in order to understand it. In essence:
- You first sum the volume of all open positions (That is the first calculation for "Net Total Volume").
- Then you sum the product of the open price and the volume of each position (that is to multiply the open price and volume for each position, and then sum it all up)
- You then take the sum in step 2 and divide it by the sum of step one. That will give you the "Net Mean Opening Price".
You can apply the same logic in the calculation of the "Net Mean Closing Price" (or the S/L or the T/P).
For the "Net Mean Profit or Loss", subtract the "Net Mean Opening Price" (step 3) from the "Net Mean Closing Price", then multiple by the "Net Total Volume" (step 1).
Sir Fernando is this what you mean volume? is that the lotsize?
im not good in english sorry
Yes! Order "Volume" is measured it "Lots"!
The word "Mean" is equivalent to "Average"!
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use