Hi, I'm not sure what indicator this is this might help me getting the information you need.
Latest posts made by kriespy
-
RE: How do I get buffers for this indicator?posted in Questions & Answers
-
RE: Tp multiplierposted in Questions & Answers
You can add blocks on On trade and check for what type of trade either buy or sell was most recently closed. Then you can add the martingale risk method in your buy or sell block. It seems like to me that you are using the martingale method.
Cheers.
-
Incorrect lotsize calculationsposted in Questions & Answers
Hi, I'm using the "1% of current balance --> lotsize" risk method and I noticed that sometimes the risk is way more than it should be.

Right side is balance and 1 to the left is how much I lost on that trade.
-
RE: Close trades under condition once certain profit reachedposted in Questions & Answers
Hi, I just put something together not sure if it works but it should work. I used a variable called "trailingactive" which becomes true if price was 200% pips away from current trade. Then I used this variable as starting condition for the price is below 50 ma for buys or above the 50 ma for sells.
https://fxdreema.com/shared/i6Qs3nyLc
Let me know if this worked. I couldn't test it myself because I didn't get the code and I'm too busy to put one together myself right now.
Cheers.
-
RE: telegram eaposted in Questions & Answers
Hi, there are multiple telegram EA's on MQL5 marketplace itself. I noticed that most of them are free, I suggest you to try this out. Most of the time EA's like that only requires 1 chart to be active on and all the trades will be signaled to a telegram group.
Cheers.
-
RE: Open prices onlyposted in Questions & Answers
Can you share the project. Because most of the time an EA is build on the [On tick] tab but if you add a "Once per bar" the On Tick changes to Once a bar closes.
-
RE: Closing trade when one of my confirmation indicators gives opposite entry signalposted in Questions & Answers
Also in the second screenshot you see that there was a trade opened an closed right after. The second trade closed on break-even but should close on the pointed arrow candle.
I've no idea why the first trade closed right after and why the second trade didn't close on the pointed candle. -
RE: Closing trade when one of my confirmation indicators gives opposite entry signalposted in Questions & Answers
This is what I have now, but it doesn't meet my satisfaction.
https://fxdreema.com/shared/QQ7bEuzue -
RE: Closing trade when one of my confirmation indicators gives opposite entry signalposted in Questions & Answers
This shared project is without the "Close trades" function, I just have no idea where to put the function.
Buy trades should close if block 395 or block 611 is true for the buys.
Sell trades should close if block 339 or block 302 is true for the sells.
-
Closing trade when one of my confirmation indicators gives opposite entry signalposted in Questions & Answers
Hi, I've been trying to figure out how to close a trade when one of my confirmation indicators is giving me an opposite entry signal. I tried it with "Close trades" function but it immediately closes all trade. I can't put it after my "Buy" function because it requires more confirmations.
Example:

This is closing instantly.Without the "Close trade" function:

It should close on the candle that is pointed by the arrow.Project: https://fxdreema.com/shared/2EsCzU6P (It's a mess)
Thanks