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 have made notes as I have learned the hows on coding. I am sharing them with the forum. Please add additional examples to programming different things in a indicator or EA to this thread. To view the different modules, you will have to have Microsoft Word after you unzip the file. I hope these notes and examples will help someone trying to code this language.
I do not look like this yet, but my alter ego is Einstein (Like Einstein and Thomas Edison, I can tell you of at least 2,000 things that do not work that relate to EA's!).
I do not look like this yet, but my alter ego is Einstein (Like Einstein and Thomas Edison, I can tell you of at least 2,000 things that do not work that relate to EA's!).
It makes no difference what you look like...you look fine. I'm older yet, but you wouldn't know it by my Avatar! HA!
Anyway, it sounds like a fine work you're doing! Keep up the good work for the Kingdom of God!
Jesus is the only one who can bring prosperity into your life, if He wills...even in the FOREX market. I give Him credit when I succeed and when I fail.
And I work hard at it. I think I've got a profitable EA through forwardtesting. Most of the ideas in it are kind of a gift from God, but you still have to work.
__________________ Success is more perspiration than inspiration . . .
Hi!! I'm learning mq4. I've coded a littel EA and I'd like to add a "RSI protect", something like: If RSI>90 and odertype=op_BUY and orderprofit>=X pips move SL to +X". I've been trying but I don't get that I want. Any help?
While coding my own experts, I realized that the process for opening/closing orders, etc. is pretty much the same every time, and I kept reusing the same code every time I wanted to try a new strategy.
Instead of having to write new code each time to open and close orders, I decided to write an include file with functions that will do it automatically, and keep track of the state of opened/closed orders, trailing stops, adding to profitable positions and hedging.
The end result is that it takes minutes to code an EA to try out a new strategy using different indicators. That way, the programmer can concentrate on coding buy/sell logic instead of dealing with routine actions.
Try it out, modify it and let me know if you like it or have any suggestions.
Nice work fuzzbomb! I also use an include file for coding, it cuts down on a lot of redundant coding. It's the only way to go! Especially when testing new ideas. Thanks for sharing, this will help a lot of people if they use it.