- Search Energy EXCH
-
jeanlouie replied Feb 8, 2023It's correct and there's nothing to fix. The higher mtf zz knee is located on the higher tf candle that made that knee, as seen on a lower tf as a horizontal section covering that higher tf period. What you're seeing is the same effect as a mtf ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Feb 8, 2023That too is decompiled, no one will work with it. You can see for yourself when you open the source file in metaeditor, by pressing enter on the indicator in the terminal and not double clicking to add it to a chart, the code will have a lot of ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Feb 7, 2023I understand that a non-coder wouldn't know if a source file is illegally opened (decompiled) or not. If the author did not provide a source file then the file is not intended to be modified by others. Because the ex4 is decompiled, you don't know ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Feb 7, 2023It's a decompiled mq4 file, nothing can be done with it.
I will code your EAs and Indicators for no charge
-
jeanlouie replied Feb 6, 2023Yes right you are, thanks for letting me know. MTF_OHLC_Levels - prints last input n price levels of different timeframes - open/high/low/close - optional texts to current tf periods Wrong file uploaded previously at url
I will code your EAs and Indicators for no charge
-
jeanlouie replied Feb 4, 2023Objects_Select_Deselect - will select or deselect all objects on the chart - can affect objects with a certain tag in their name like all bob for UPbobArrow, bobLine, 123dotbob - can affect all types of objects or only a single type - *is a script
I will code your EAs and Indicators for no charge
-
jeanlouie replied Feb 4, 2023TF_OHLC_Levels - bug update - optional texts to current tf periods
I will code your EAs and Indicators for no charge
-
jeanlouie replied Feb 2, 2023Keep going, how would you determine round numbers from 0-100, in rounds of 5/10/20/2/50? You would check that the round number is an even divisor to the number being checked, ie no remainder, 86/10 gives a 6 remainder, not round, but 80 and 90 give ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Feb 2, 2023- you should just state the problem to get a more useful answer - google mql4 ea example, browse what comes up - browse mql5.com codebase for mt4 eas, find some simple ea like a ma crossover to see how it does things - from the online mql4 doc or ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Feb 2, 2023I don't think this will get the lower tf price, if the target highest/lowest price occurs on the same candle time as the higher tf, or it occurs on lower candle times after the candle time of the highest tf if the higher tf end candle is included.
I will code your EAs and Indicators for no charge
-
jeanlouie replied Feb 2, 2023You can't delete a comment like you can an object. You can have another indicator make an empty comment ie Comment("") that will print over any previous comment. If the ea constantly prints a comment every tick, then you will have to clear it every ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Feb 2, 2023If the information you're getting is a buffer drawing, then use icustom, if it is from an object made, then you'll have to check for the existence of that object on the target window with objectfind(). For icustom() and indicator buffers, pic below, ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Feb 1, 2023Nothing seems wrong with it, maybe the arrows are way too close though. If you see something strange then probably the mtf data doesnt exist at the time you loaded the indicator, just right-click and refresh.
I will code your EAs and Indicators for no charge
-
jeanlouie replied Feb 1, 2023Look at the object list on mql4 docs, there 2 ways to display words, via text and label objects. They are placed with different coordinates and so will behave differently when the chart changes size, scrolls history, or rescales.
I will code your EAs and Indicators for no charge
-
jeanlouie replied Feb 1, 2023An option is this old thing. url
I will code your EAs and Indicators for no charge
-
jeanlouie replied Feb 1, 2023- get the start and end times, decide if you're including/excluding the candles on the start/end times, ie end time is Tuesday, do you mean Monday 11:59pm inclusive of the last minute or Tuesday 11.59pm inclusive of the last minute. - get the candle ...
I will code your EAs and Indicators for no charge
-
jeanlouie replied Jan 30, 2023Glad you have some use for it, I dont have it for mt5 and I wont get around for the time being.
I will code your EAs and Indicators for no charge
-
jeanlouie replied Jan 29, 2023- drawing buffers are useful for drawing stuff over the whole chart history, objects are better for drawing a small number of things - the issue isn't the ibarshift() for the starting candle of the day, it's that the drawing buffer keeps those ...
I will code your EAs and Indicators for no charge