Basic MetaTrader programming question

forexsniper

Active member
Messages
166
Likes
2
Hi,

I'm a programmer but am new to the world of MT4 programming.

Just wanted to know if:

1. I currently own a commercial manual trading system which runs on MT4.
2. I want to try my hand at coming up with an EA to automate the system.
3. The manual system is based around alignment of multiple indicators. When all the indicators line up, I take the trade.

Question is, programming in MT4, would it be possible to automate this system, or would I need the source code for the indicators first?

Many thanks.
 
You dont actually need the source code for the indicators. MQL provides a function named iCustom that allows you to determine values from a custom indicator, it can often help determine the parameters you need to pass to that function if source code is available, but if not, you can generally work it out though trial and error.
 
Top