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.
Not really happy cause i reach my SL about a few minutes.
Whan i will be at home i will try to see if i must change my settings.
These are my detailed statements since the beguinning of TFX try(i just avoid my name and the number of my real account).
Cijas this EA is a work-in-progress. Please test it with a demo account first and not real money, at least for a small time so that you understand more how it works.
One of the things I've noticed is that we get further and further away from the goal as more positions are opened as each adds another "spread" to the floating loss which makes the job of catching up progressively harder as price then needs to move much further in a given direction without a reversed entry to have any hope of closing the series.
Not sure how best to overcome this issue but it will blow up the account at some point if left unchecked. This is especially a problem with wide spread pairs like GJ.
I've tried using a very small lot increment and this does help but the account will still blow at some point.
Thinking caps on, guys!
That is exactly the issue I ran into while testing this EA on the GBP/JPY pair. As for how we can deal with this, I am not so sure. Perhaps only low spread pair like the EUR/USD are safe with this EA.
How about setting a TP target for each position. This way this EA would become a bi-directional grid trader. For pair which fluctuate wildly like the GBP/JPY this would make sense, but then again there is the spread to deal with. Also there is the problem of entry too. Maybe combine the Sidus method with a unidirectional grid. This I think would be the only way to trade with style of EA on the yen crosses. Otherwise you would just get thrashed around by the market until your account gets loaded with a straggering negative position, and eventually blow up your account.
I'm gonna run a test on some pairs that are known to range more, like GBP/CHF & EUR/CHF with the default settings (except I'll set the lot size increments to 0) and report on what I find.
So far I'm running the EA on eur/usd 5m.
- Update -
I just updated to 1.5. I like the Start Long & Short feature I can use this with my other trend guessing indicators to start the EA in a hopefully winning direction.
latest update on my testin of this EA on the EUR/USD
Hi folks. Here is my statement for the past two days while trading the EUR/USD on the 5m chart.
Can anyone tell me why the EA jumped to trading with 5 lots from 0.10?! Is it due to the Risk Percent being set to 1 and max lots set to 5? That would make sense to me. Or is it because I set the Lot_Size_Increment to 0? Which is a good setting?
hmm wth, my last post did not get listed..anyways...
Here is my statement for two days worth of trading on North Finance. If you looks at the trades you'll see that it jumped to using the max lot size of 5.0. Is this normal behaviour when setting lot increments to 0?
dammit, sorry for the double posts..for some reason I could not see the new posts I was making even though I was logged in. I am fairly new to this forum, so are there any bugs or quirks that I should be aware of?
dammit, sorry for the double posts..for some reason I could not see the new posts I was making even though I was logged in. I am fairly new to this forum, so are there any bugs or quirks that I should be aware of?
Thanks for testing allinvain.
I just posted v1_5 less than 24hrs ago. I'm not sure of any potential bugs in it yet, as I haven't been able to thoroughly test it yet. The money management feature is a new process in coding for me. I studied three different EA's to try to learn and replicate the feature. I'm not entirely confident that this feature works as desired yet. So, as of right now I don't exactly know why your lot size jumped the way it did. With lot increment set to 0, you should be fine, that is not the problem.
Maybe someone could look at the MM chunk of code, and determine if it was coded properly.
PHP Code:
if (Money_Management==true)
{
Start_Lot_Size = NormalizeDouble(MathFloor(AccountFreeMargin()*Risk_Percent/100)/100,1);
if (Start_Lot_Size > Max_Lots)
Start_Lot_Size = Max_Lots;
if (Start_Lot_Size < Min_Lots)
return(0);
}