silverfall / Publications
Forum
indexing difference between mql4 and mql5.
Hi I noticed that in MT4 the index [0] is the current bar( on the extreme RIGHT position). But in MT5, the index [0] is the FIRST bar( on the extreme LEFT position). When I tried to convert indicator from MT4 to MT5 the indexing made the converted indicator plots differently. Is there any way to use
Does anyone know how to plot dash line like this?
Does anyone know how to plot dash line like this? I don't want drawing object, I need indicator_plots. Thanks
Is it possible to use WebRequest post HTML content to a website?
What I'm trying to do is submit HTML content from EA to my joomla website, I did some search but couldn't find if it's possible to use WebRequest to do it. Any help is great. Thanks
How to convert this recursive define to mq4 ?
Hi I'm new to mq4, I'm trying to convert this line of code(from TOS) to mq4. int l = 20; def lowbar = low == Lowest(low, l); def h1= if lowbar then high else h1[1]; lowbar is just a bool value to check if current low equal to lowest low in given length. I just don't know how to code the h1 part in