Forum

How to add MqlTick data to a custom symbol via CustomTicksUpdate function

I have a custom symbol that I created and I want to add MqlTick data to it using the function CustomTicksUpdate (In the documentation it's called CustomTicksAdd , but this function doesn't exists inside mql5, I think the documentation is outdated). To do that, I have a timer in my EA and every time

Show conditional inputs in EA

Is it possible to have conditional inputs on an EA? For example, let's say I have this three enums enum Condition { Foo, Bar, }; enum FooCondition { Foo1, Foo2, }; enum BarCondition { Bar1, Bar2, Bar3, }; Now, I want to add it as inputs to my EA, so, first I add a input for the

How to create custom symbols and feed it's chart data from a remote server in real time

Hello there, I'm trying to learn how to create a MQL5 library for MT5 (I think it should be a library, but not so sure) to create new symbols and feed these symbols chart data from public exchanges APIs in real time. I tried searching for some tutorial or example of something in these lines, but the