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.
Regarding the Stoch crossing at 0 of AC, you can do the following:
Calculate the maximum and minimum values of the AC indicator for a determined number of bars (this number of bars can be an external variable parameter). Now having the min and max value, you can then calculate the % of shift you have on the indicator window by doing:
x%=(100*Max)/(Max+Min)
This tells you the space % used by the the positive AC value in the indicator window. Now take 50% - x% and this gives you by how much you must move the stoch crossing value. It simulates the visual reading ! If the x% value is below 50, the stoch cross line will be above 50% and if the x% value is above 50, the stoch cross line will be below 50% which is what we see in visual mode !! The only problem is to have the good number of bars i.e. what is the zooming of the chart that is optimal for a good stoch signal. Maybe an optimization in the strategy tester could help
Hope it is clear and maybe you can code this also in the new version, just to see if it helps with the results.
Cheers!
pegasus,
am i right? Sorry for my English .
ACspace = vertical space for AC in the indicator window
we have (maybe) 62 bars from ozfx.tpl after F11
algorithm:
if ACmin<0, ACmax>0 then ACspace=abs(ACmin)+ACmax
if ACmin<0, ACmax<0 then ACspace=abs(ACmax)-abs(ACmin)
if ACmin>0, ACmax>0 then ACspace=ACmax-ACmin
x% = 100*abs(ACmax)/ACspace
stochzero = 100% - x%
if stoch>stochzero then BUY
if stoch<stochzero then SELL
Is it better than "stochzero"=50? Can you, Azmel, code it?
If you manually backtest this system over the course of a few years, it does not turn a profit. The trending periods don't make up for the drawdowns you will encounter during choppy periods.
Anyone trading this strategy should keep that in mind.
hi,
are you still trading the same method that you sent me the statements of?
How is the update going on this ea? Thank you for your hard work on this.
Jeff
Quote:
Originally Posted by azmel
I notice there is a small bug on v1.4 today.
At 0000 GMT, USDCAD opens a new candle and a valid short signal is received from all three indicators. Five trades were opened as expected. The first trade hit TP 50 pips at 1128 GMT and all remaining four trades have their SL move to BE.
Unfortunately, the market reverses and the four trades hit SLs at 2135 GMT.
However, because of all this happens in a period of one day, the EA opens another five trades at 2135 GMT. The signal is late and therefore it should have stayed idle until the next candle at 0000 GMT.
I will fix this bug, but give me until the end of the week as I am currently involved with another project.