Re: I'm looking for programmer to fix EA functions that sometimes don't work
For example, there are times when an operation is opened, the TP/SL lines are not created even if the EA is configured to do so. There is also one of the closing methods that sometimes does not respond. The mobile media filter seems to have problems too. The rare thing is that I leave the EA running on the chart, without touching anything, without opening it even, and suddenly some function stops working. As if when opening an operation I no longer draw the TP/SL lines. It is quite strange. I can pay for Paypal. Write me by private if you are interested. The EA is attached to the thread linked above. Thank you.
Re: I'm looking for programmer to fix EA functions that sometimes don't work
It's a pretty complex EA. I took a quick look at the drawing routine and it seems to be fine, but I didn't have enough time to prove it, plus the market is closed right now. Have you changed the MagicNumber for every pair you use the EA? Because the drawing routine needs a different MagicNumber per pair to function properly.
Re: I'm looking for programmer to fix EA functions that sometimes don't work
I only have it running in a couple and in a single timeframe. It works well in most operations, but consistently there are times when you don�t place the TP/SL or run one of the closures, and that without having touched anything from the EA. I didn�t open it, or change settings between it working and stopped doing it. I don�t understand anything, especially about the TP/SL lines, it�s very rare.
Re: I'm looking for programmer to fix EA functions that sometimes don't work
The "draw" routines are only used to mark on the chart the price and opening/closing time of closed operations. The EA does not draw TP/SL lines by itself. The function that sends the commands is divided into two parts (an adaptation for ECN brokers
Re: I'm looking for programmer to fix EA functions that sometimes don't work
It seems that your EA does not manage errors well in the second part of the shipment. Without logs or real-time prints it is like fixing a car without opening the hood.
Re: I'm looking for programmer to fix EA functions that sometimes don't work
I don't want to spend any more time on a code that breaks itself.
Re: I'm looking for programmer to fix EA functions that sometimes don't work
Redoing is the wisest decision. The code is full of patches, and continuing to patch only generates more ghost errors.
Re: I'm looking for programmer to fix EA functions that sometimes don't work
Sounds to me like you're using Sleep somewhere and that's why you skip functions unannounced. Can you upload a fragment of the code?
Re: I'm looking for programmer to fix EA functions that sometimes don't work
The original code is from a Russian forum, I think they translated it half way. I dare not even shake hands without breaking anything else.
Re: I'm looking for programmer to fix EA functions that sometimes don't work
If the original EA is half translated and already has problems, better not touch it. Start clean, with clear logic, and using modern structures.