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.
Request: EA code to double up lot size after a losing trade.
I want to know if there's any way to tell an EA to increase the lot size if the last trade closed in loss (martingale system), and use the normal lot size if the last trade closed in profit. It needs to be able to use micro lots. Is there any way to do this?
I have a portion of code for a Moving Stop, but have no programming experience to make an EA out of it. Will somebody with EA creation ability kindly produce an EA with the code below?!?
I have a portion of code for a Moving Stop, but have no programming experience to make an EA out of it. Will somebody with EA creation ability kindly produce an EA with the code below?!?
I will enter my system manually, I do not trust EA entry yet. I want to use EA ONLY for exit now. I feel EXIT strategy is equally (if not more) important than entry strategy. I do not like Trailing Stops, I have had much more success with STEPPED MOVING STOPS. I would love to have EA to do this for me because I have time to place trade but no time to monitor for exit. I like to backtest VISUALLY,, which is very slow but I have very specific entry criteria so it works well for me. I am currently reading Codergurus AWESOME lesson for BEGINNERS to programming MQ4: http://www.metatrader.info/node/59
Codersguru, if you are reading this thread, let me tell you man: You are a genius!
I've seen a few of his free videos he sends out as I'm on his mailing list. Nearly all of these strategies include Moving averages, basic Fibonacci retracements etc.
I don't have access to his video site though, so don't know if they are any better. I deleted the free ones I got as they were useless hindsight cherry picked trades, but if I had access to his video site I would share it.
Maybe someone here has access?
i'm looking for code to make my EA trade at half volume if it trades the same direction in a pair twice in a row, i.e
if i enter GBPUSD at full volume long at 1.7500, and the next signal I see is also a GBPUSD long say at 1.7530, the second trade should be half volume, as it is rejoining a move which has already been going for a while, so the risk should be lowered.
so basically i need my EA to access the record of the last closed trade on the current pair and get it's open price and whether it was a short or long position.
could the above code be modified to do something like that? i've tried to do it myself but it's all a bit advanced for me