I always want as an option to be able to turn Buy and Sell orders into stop orders...sometimes you need a delay of execution in the form of stop orders....
I always want as an option to be able to turn Buy and Sell orders into stop orders...sometimes you really need a delay in execution in the form of stop orders....
There are no "orders" in this EA.
There are no "orders" in this EA.
I understand an order is an order to open a position, for example in your code - OpenBuy().... sometimes it is better to be able to set OpenBuyStop() especially now on a hedge...such a switch can probably be invented for each EA....
I understand an order is an order to open a position, for example, in your code - OpenBuy().... sometimes it is better to be able to set OpenBuyStop() especially now on a hedge...such a switch can probably be invented for each EA....
Forum on trading, automated trading systems and testing trading strategies
Expert Advisors: Volume trader
Vladimir Karputov, 2018.06.22 04:30 PM
There are no "orders" in this EA.
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
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(); }
The thinking is good, but it would complement the breakout candles and one more moving media confirmation to 21 for the direction above the media is buy (if the price is below the media it is sell). Just like you did, it's a real failure, it didn't have a positive result in any time frame on EUR USD.
you are a good programmer, but you don't test the result of your robots.
We need good strategies in the robots, but that produce great financial results.
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
Volume trader:
Author: Vladimir Karputov