- Search Energy EXCH
-
jeanlouie replied Jul 18, 2023It may be easier to have an open trades list on the chart for the user to see, and not place a manual trade in the first place. Closing a trade right after it is opened, for whatever reason, still incurs the spread+commission. Names don't come to ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Jul 16, 2023- global variables are automatically deleted by the terminal after 4 weeks from the last date of their access - the mt4 terminal does not make them, they are made by indicators/scripts/ea's - if you delete them, the functionality of whatever ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Jul 12, 2023Thank you for bringing this up, it seems addressed now. VLine_Daily_wLabel - repeating vline once a day, hour:min - label to read time or text - tf visibility under daily
I will code your EAs and Indicators for no charge
-
jeanlouie replied Jul 11, 2023No, unless you trade a centralized instrument. Haven't looked at the indicator but it's unlikely it cares about which broker you're using. I presume you're on some forex symbols? No 2 fx brokers will provide the exact same price feed for any ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Jul 9, 2023Stopwatch_Candle_to_Live - duration of time from selected candle to last server time, days/min/sec - option to include missing time like weekends - draggable line gif image edit - small bug with the draggable line sticking to live time
I will code your EAs and Indicators for no charge
-
jeanlouie replied Jul 7, 2023url If you positively need a source file then search ff, there's probably several.
I will code your EAs and Indicators for no charge
-
jeanlouie replied Jul 6, 2023You can see the object listed in the mql4 object list documentation. The object is called obj_arrow_right_price, arrow type object, and it's use can be seen in the link below. url eg below will make it once on loading and then update to the live ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Jul 6, 2023If the show/hide effect is done by: - not showing buffers and/or changing colors/visibility of objects, then it probably wouldn't be noticeable, ie stuff just isn't being drawn/rendered onto the chart but the indicator is still working - clearing ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Jul 5, 2023Run it in the tester, and add another instance of itself (like 2 separate rsi windows), run it for while to get some history up, and then reload/refresh the 2nd instance, it'll load as new and you'll see differences in a fresh load and the live ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Jul 1, 2023There are many tester artifacts that can result in super-profitable equity curves that are not achievable or representative of live trading, eg especially with trades opening/closing on the same live candle with control points. With this is mind, ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Jul 1, 2023Change the input of limiterTriangles, that doesn't limit the count of triangles, but the max height in points of the triangles drawn. Pic below has triangles with the limiterTriangles set to 100,000. When limiterTriangles is set to 0, then a value ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Jun 30, 2023Yes, though a more useful alternative for trade operations, would be to not open a new trade, if an existing trade of that type is open. This is to prevent multiple trades being opened on each new candle that have indicator conditions still ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Jun 29, 2023In the same way you make the horizontal line, you can make a text object. Look at the documentation for obj_text, give it time and price coords, and a text, when you make the hline.
Help needed trying to learn the MQ4 language
-
jeanlouie replied Jun 29, 2023You're trying to limit something to once per candle, so simplest way is to save the current candle time of the buy or sell trade, and only take new trades if the current candle time is not equal to the last time a buy or sell trade was made, don't ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Jun 29, 2023Find the line where objects are being deleted, the line/function will probably include those words, and look up the documentation for that function and to see how to delete only certain objects you want to delete. Also when posting long bits of ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Jun 24, 2023That would be a good place to put it. Replace that with the time you want to show.
Display comments mql in corner
-
jeanlouie replied Jun 24, 2023Read the documentation, in metaeditor you can highlight the word and press f1 to bring up the doc. ihighest gives you an index value. url
Help needed trying to learn the MQ4 language