Dear Sir, Thankuo very nuch for your code, I am using It an it's very poewrfull , would be possible exemplain to me the logic
in order to take profit .kindest regard, Fabio
Fabio Carlucci:
Dear Sir, Thankuo very nuch for your code, I am using It an it's very poewrfull , would be possible exemplain to me the logic
in order to take profit .kindest regard, Fabio
The EA only operates when a new bar appears: It compares the tick volumes of the first and the second bar. Block for making decisions:
//--- if(array_volume[1]>array_volume[2]) { ClosePositions(POSITION_TYPE_SELL); OpenBuy(); } if(array_volume[1]<array_volume[2]) { ClosePositions(POSITION_TYPE_BUY); OpenSell(); }

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
Volume trader:
Author: Vladimir Karputov