Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.
From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.
Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
Elite Section
Get access to private discussions, specialized support, indicators and trading systems reported every week.
Advanced Elite Section
For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
I am running a demo of Derk's SynergyEA and I have noticed that split orders ie. 2 single lots, are sometimes not executed. Only one order (lot) is sent to the server.
I am running a demo of Derk's SynergyEA and I have noticed that split orders ie. 2 single lots, are sometimes not executed. Only one order (lot) is sent to the server.
Has anyone else encountered this problem?
Thanks
Spy
Do you have errors message in "journal" or "expert" tabs? Like "trade context is busy" for example?
FerruFx
__________________ FerruFx / www.ervent.net - Professional Coding Services (EAs/Indicators/Alerts)
"129:invalid price" basically means the EA tried to make a buy at 1.2424 when the price was not anywhere near. Since I use simply the actual Ask (Bid) price here, the price must have jumped considerably there ... . The EA still tries to open the order, but will eventually "get late" (1.2446)
This can happen depending on daytime of a trade, quality of broker connection and price movement speed. You fix that by increasing the slipage in the parameters of the EA.
"129:invalid price" basically means the EA tried to make a buy at 1.2424 when the price was not anywhere near. Since I use simply the actual Ask (Bid) price here, the price must have jumped considerably there ... . The EA still tries to open the order, but will eventually "get late" (1.2446)
This can happen depending on daytime of a trade, quality of broker connection and price movement speed. You fix that by increasing the slipage in the parameters of the EA.
Cheers
Spy
Glad to see that you've found the solution to your issue.
FerruFx
__________________ FerruFx / www.ervent.net - Professional Coding Services (EAs/Indicators/Alerts)
The descriptions below are of free and open indicators which seem to be identical to the Advanced Synergy indicators. Note that this is for Advanced Synergy and not Advanced Synergy 2.0. With version 2.0 they seem to have gone to a client/server model and drive some of the indicators from their servers to your terminal.
I've been doing some analysis of the Advanced Synergy system indicators and can tell you for a certainty that they are the same as freely available indicators with a few changes to the parameters. While these equivalent indicators don't always display the threshold lines from the DM_ series those level lines are easily added from the parameter screen or through modification of the indicator source.
DM_Volatility:
Based on Bollinger Bands. Put up a Bollinger Band with the following parameters (Period=7, Shift=0, Deviations=1, ApplyTo=Close). Then measure the distance between the upper Bollinger Band and the Middle line - this is the value of the DM_Volatility indicator.
DM_RangeFactor:
Based on an indicator called "RAVI FX Fisher". This is a RAVI incdicator with a Fisher transform. The indicator is here: Forex TSD| Metatrader Indicators and Experts Advisors. Use the following parameters (MAfast=3, MAslow=34) and edit the code to make the iMA statements use PRICE_CLOSE instead of PRICE_MEDIAN. The indicator will plot values identical to DM_RangeFactor.
DM_Continuation:
According to Dean's webinar this is merely a moving average of the HA bars. The MA period is 2. This should be a simple programming exercise. However, I find that the Trend Continuation Factor gives a far, far better reading on trend exhaustion. Use this one: http://www.aptrafx.com/FreeExperts-I...ntinuation.mq4 although the programming of it is a bit confusing. When the Blue and Red lines begin to move closer you should expect the trend to end. This indicator is useless to identify the start of a trend. Do not use it for that only for looking for trend exhaustion.
DM_DSR:
Based on DyamicRS. Note that there are several differing versions of this indicator on the web. Only one is the equivalent of the DM_DSR. Use this one: http://www.aptrafx.com/FreeExperts-I.../DynamicRS.mq4. Use the following parameters (ShortPeriod=3, LongPeriod=25).
There you have it. All of them are based off of freely available and open soure indicators.