Posts made by fxDreema
-
RE: Modify (Move) Pending Order to certain price levelposted in Questions & Answers
What does not work?
-
RE: Accumulative Swing Indexposted in Questions & Answers
Indicators can only be seen after testing. If you backtest some EA and you expect to see the indicator after the end of the test, but no indicator appears - look at the error logs. If there are errors... look at what they say.
-
RE: "Trailing Stop pending order" in two directionposted in Questions & Answers
On every 5 minutes do this: For each Pending Order -> slide order
But if there are multiple orders at different levels and you want to keep them at the same relative position from the current price, it will be more complicated.
All "Trailing..." blocks are designed to move only in one direction. That's why they have the word "Trailing" in their names
-
RE: Working with objectsposted in Questions & Answers
Ok, so if you know the name of that object...https://fxdreema.com/demo/mt4-object-by-name
Otherwise... https://fxdreema.com/demo/mt4-object-in-loop -
RE: Working with objectsposted in Questions & Answers
Is this indicator? Because indicators create their lines and stuff, but they are not included in the list of objects. Instead, you should use the indicator's buffers to get the numeric values. Only if the indicator creates objects that can be found in the list of objects, only then you can select these objects and do something with them
-
RE: Take Profit auto adjustmentposted in Questions & Answers
roar, not only this, "For each Trade" is also needed before these blocks

For each trade -> pips away from open price -> once per trade -> modify stops
But I think that if you put 0 pips in "modify stops", the stop will be deleted.
Also, Trailing stop (for each trade) can be used, because it can move TP, not only SL. To make it work like break even, I think the serribgs were something like this: Step is some big number, let's say 1000. Start and Stop are the same, let's say 10 pips.
-
RE: Trying to make an alertposted in Questions & Answers
"Run blocks" is not needed.
Use positive values for Candle ID to refer to oldest candles. 1 for the previous candle and so on... -
RE: How to locate an indicator in Expert Advisorposted in Questions & Answers
Indicators are not embedded into EAs, they are separate programs. And when you upload indicator in fxDreema, this is not uploading and in fact the file is not uploaded. Instead, the browser reads the file, finds only the data that is needed (input parameters, name, buffers) and sends only this data to the server. Then in the EA some function called iCustom() is used to call the indicator, MetaTrader searches for it in MQL4/Indicators, loads it and works with it.
-
RE: self updating/refreshing grid, compare two groups of tradesposted in Questions & Answers
Wait a second... when is this option used, for the Tester only?
-
RE: Breaking loopposted in Questions & Answers
I think that the pink "break" block will work, but I'm not sure. Yes, "Loop (pass n times)" is very primitive and I need to do something about it.
-
RE: Stochastics Indicatorposted in Questions & Answers
I think that all my signals are correct: http://prntscr.com/bxgqc3
Show me how it looks like for you -
RE: How to locate an indicator in Expert Advisorposted in Questions & Answers
In the menu you go to My Indicators. Then you add some indicator. The name of the indicator must match the name of the file. You must have the indicator file in /MQL4/Indicators. When you add the indicator in My Indicators, then you can use it in the blocks, for example in Condition -> Indicator (My Indicators). Then when the EA is generated, iCustom() is used and all parameters are automatically filled.
-
RE: Delete last number and once per weeklyposted in Questions & Answers
Put some time period. Something like Hours Filter (with period) -> Once a day. Who knows what can happen around these times. In my country for example, nothing works at 00:00 Monday, it starts a little bit later.
-
RE: reset martingale betting systemposted in Questions & Answers
From what I see in your projects, you can have multiple trades at a time. If there is a running trade, Martingale works with the lot size of the latest running trade. Maybe because of thins it doesn't work as you expext. But what to expect when there are running trades... you know that Martingale is supposed to work with 1 trade at a time.
-
RE: Psar wrong value?!?posted in Bug Reports
Who knows. It's interesting that both PSAR fail - the built-in and the one that is as a custom indicator. I think that it's something with the indicator itself, but I don't know exactly how it works. And it's also very hard to find the reason of the problem when the problem happens very rarely

-
RE: ZigZag Indicatorposted in Questions & Answers
Try something with this: Condition -> Indicator -> ZigZag
-
RE: Check profit (last closed)posted in Questions & Answers
I saw your latest project and it looks that you are trying something else. Is the problem still present?
-
RE: self updating/refreshing grid, compare two groups of tradesposted in Questions & Answers
Nothing comes in my mind for the first question. People often ask me how to get some value from some candle (which is job for custom indicators) and it looks that I need to add yet another kind of Loop blocks

There is no such event. It looks that I need to also add another kind of events

I think that this is possible, there is some OBJPROP_TIMEFRAMES property. Right now there is no such option in the "Draw..." blocks. But can you tell me how can I turn this matrix into an option http://prntscr.com/bwgxee
Yes, I can add 9 options, but damn, this is ugly -
RE: Modify (Move) Pending Order to certain price levelposted in Questions & Answers
Instead of "(in loop)..." use "(on Trade) Event Data" when the block is in "on Trade" and you want to get values from the trade that caused the event