@shubhankar-kumar AFAIK that is not possible. What you can do is opening a trade with a market execution at a specifoc price level.
Posts made by l'andorrà
-
RE: How to hide pending order from brokerposted in Questions & Answers
-
RE: I Want To Create Grid With Martingaleposted in Questions & Answers
@talalkhan In order to do a complex project like that you will need a separate structure to identify the increasing value of lot size. This is the simplest example I created some time ago. I hope it helps:
-
RE: How do I optimize taking the hours of the day in consideration?posted in Questions & Answers
@pyrziel But have you ever used UNIX time? Have you ever seen how it shows? It is a number like 1636554284, for example. This was a real example (UNIX time when I type this reply right now). You will need to translate that number into component if you want to understand it-
-
RE: MACD High/low or MACD crosses 0posted in Questions & Answers
@andrewfrank The second condition searching dor 0 crossing is easy. You can do this:

Finding the 'highest/lowest' is more difficult. How is a high or low defined? Is it a local high, daily high or something else? Depending on that definition dfferent results can be obtained.
-
RE: unable to load indicator EA errorposted in Questions & Answers
@haikel Well, I'm also trying to understand the admin's reply. I'm not sure what the solution is. I hope he will let us know there.
-
RE: How can i record Highest/Lowest equityposted in Questions & Answers
@talalkhan Here you have an example for the highest:
https://fxdreema.com/shared/z3DhmXMtd
Then you can try for the lowest woth a different variable.
-
RE: Anyone knows how to deal with Error 4002?posted in Questions & Answers
@fxdreema What do you exactly mean by 'you forgot to set at least one of them'? All of them are set to 0 by default as you can see in the Constants. Should I remove any of those .set files? If so which ones?
-
RE: Binary Tick Backtestingposted in General Discussions
@vonmunchy Interesting. Thank you for sharing.
-
RE: Anyone knows how to deal with Error 4002?posted in Questions & Answers
@fxdreema So are you suggesting that we should not use any value 0 for any constant that is used on any indicator? I think I understand the problem, but not get the solution, sorry.
-
RE: unable to load indicator EA errorposted in Questions & Answers
@haikel I'm afraid this is another unexpected consequence of the last MT5 update. You can find some guess here:
https://fxdreema.com/forum/topic/13646/anyone-knows-how-to-deal-with-error-4002/14
-
RE: How do I optimize taking the hours of the day in consideration?posted in Questions & Answers
@pyrziel Time optimization is very tricky. You can do it by using UNIX time, but you will need to transform those values into components if you want to visualize it easily. That is not a trivial thing to do. Do you really need it?
-
RE: I cannot create a chain linkposted in Questions & Answers
@suleyman-0 The problem with those strategies id identifying when the first buy is supposed to be open after all those sells. How would you do it?
-
RE: Pending Orders Run Twiceposted in Questions & Answers
@acealert Can you please share the link to the project? That will be easier to check the issue?
-
RE: sell and buy fractal strategy stoplossposted in Questions & Answers
@flockogola Do not use negative values for candles. What you call candle -2 is called candle 2 in fxDreema.
-
RE: Bullish and Bearish Tickposted in Questions & Answers
@nehemiah7 What do you exactly mean by 'bullish tick'? Do you mean a higher price value now than the previous tick, maybe?
-
RE: How can i record Highest/Lowest equityposted in Questions & Answers
@talalkhan Is the EA removed form the chart regularly? If so, that would make it more difficult.
-
RE: how to open a reverse positionposted in Questions & Answers
@paihdt You can remove both 'once per bar' blocks 40 and 41. They are unnecessary. Then you need a condition block below blocks 33 and 37 comparing the current value of lot size with that maximum you want. Depending on the result that same lot size variable is modified accordingly.
-
RE: Cómo hacer un limitador de ganancias mensuales al mes???posted in Questions & Answers
@tigriyorfeo Necesitas crear una variable que haga las funciones de interruptor. Con una de tipo lógico será suficiente. Haces que se reinicie automáticamente al inicio de cada mes y que se apague al conseguir el objetivo.
-
RE: PARTIAL CLOSEposted in Questions & Answers
@kestra Firstly, you can remove all those 'if trade' blocks on top of each tree. They are redundant. Then you need to create a specific structure for the martingale. You will not be able to make it work as you want with the money management option on both buy/sell now blocks. However, that will not be easy. Here you have an example to create a fully functional martingale:
