I do code only for fxDreema, I'm not a freelancer. If something is good (and easily possible) at the moment for fxDreema, I will consider it. If it's too specific, whell, one tool can't be used for everything in the world 
I never tried this, but I know there is a "Jobs" section in mql4.com/mql5.com. But I guess a whole EA should be done.
Posts made by fxDreema
-
RE: EA For USDJPYposted in Questions & Answers
-
RE: store 2 or 4 points in the pastposted in Questions & Answers
__
instead of showing the current high it seems is showing high in the past when i set the option to check the last 5 bars and exception bars 1..
[/quote:2xmv8kdk]
Maybe I created function for Lowest High, because it draws the last high that i above the current one :))) -
RE: store 2 or 4 points in the pastposted in Questions & Answers
High[0] for ZigZag is the value of the first reverse point that looks like ^, or /.
Low[0] for ZigZag is the value of the first reverse point that looks like V, or .Here [0] is not candle ID, it's reverse point ID.
If there is ZigZag over there, there is some High and Low that is always visible, so "Indicator visible" is not to be used with this indicator.High, Low, HighestHigh and LowestLow options are not part of what ZigZag indicator can give you, these are calculated.
And you can try to check the normal output of ZigZag for candle 0 (current value) and any other older candles - there is difference. This indicator is just not like others. It's line does not represent it's values. This line only connects some of the past positive values.
ZigZag is 0 for almost all candles. It's positive for those where reverse is displayed. Even on these points there is only the price level, no information at all if this level is V or ^. Also, there are other positive candles in between.
If you want to use real channel, use some Channel indicator where there will be positive value for every candle. In my opinion ZigZag is only interesting if you look at it from distance without knowing how it works

-
RE: Unable to export .ex4 or.mq4posted in Bug Reports
Is the destination folder ok? It should be something similar to "C:\Program Files\MetaTrader 4" and better do copy/paste (Paste is Ctrl+V).
Yesterday I updated Firefox and I noticed that the Connector plugin stopped working, I don't know why, but I turned it off and then ok and it started again.
I tried to export your projects - they are fine. -
RE: identify group related to entry count and the ageposted in Questions & Answers
Just added [Every "n" trade] option to "For each Trade", now only this block is enough.
-
RE: EA For USDJPYposted in Questions & Answers
__very smart! thank you

Block id "end" means that it is not counted in the order?
Why is "pass" underneath block id "end"?[/quote:3g5pjg7r]Not exactly... What is important is to set "LastPrice" after it was used, and with such a name the block will be executed last (latin IDs are executed after numeric). I tried with 1000000, but when you put new block it will be number 1000001 and that is not good
But I don't like this set up anyway 
Why is "Pass" there... because there is no matter where it is, in this case it only causes the other block to be included to the project, otherwise not-connected blocks are not included.
I wrote 2 posts on the previous page, If you missed them - go there.
-
RE: EA For USDJPYposted in Questions & Answers
Ah, by the way I can suggest something. It looks to be something similar but quite different. Go to Project options and turn on Virtual Stops. Also set up Virtual stops timeout. This will cause (if no bugs of course) the trade to be closed X seconds after it crosses the SL line, and if it returns before timeout - it will not be closed.
-
RE: EA For USDJPYposted in Questions & Answers
__this would be even better:
for each open trade in loop, if profit amount of candle close[0] > profit amount of candle close[3]
Is there a way to write this using blocks?[/quote:3fr9vo0g]
With blocks it will be bad-looking, because this requires to keep data for each trade (arrays of data), and this data to be collected on special conditions. It may sound simple, but it's too challenging to be made with blocks
-
RE: store 2 or 4 points in the pastposted in Questions & Answers
Try this one:
Condition -> Indicator -> ZigZagI have to say that no cache is used, so everytime the value for High/Low is recalculated.
-
RE: store 2 or 4 points in the pastposted in Questions & Answers
This indicator works. I renamed that block to "Draw Values" because I didn't liked the old name... but I don't like the new as well, so I would like to hear suggestions

-
RE: EA For USDJPYposted in Questions & Answers
It's not the same as candle parameters. This should return the last tick (if id 1 is used) value, but I think it's not working right now for some reason and I need to check it later.
-
RE: store 2 or 4 points in the pastposted in Questions & Answers
Don't do that with blocks, it will be rude to try to create indicator out of indicator in EA. Can some kind of "Channels" indicator be used instead of this one?
-
RE: Replace a previously closed tradeposted in Questions & Answers
Variables helps to re-use blocks and keep the project with less blocks. But you can always put many blocks.. at least until the browser starts to feel overloaded.
-
RE: Replace a previously closed tradeposted in Questions & Answers
Under "on Trade" get information from the trade that caused the even from "(on trade)...." category that appears in "Condition" and dynamic parameters in blocks. Recently I added a block named "Run blocks" and it can help to execute the block that creates trades.
Otherwise you can always load parameters of the the last closed trade with "For each Closed Trade" (renamed from "Start history trades loop") with 'Not more than "n" trades" parameter set to 1. But now use parameters from "(in loop)..." category.
I think you probably have to define Variable for the lot size and modify it.
-
RE: identify group related to entry count and the ageposted in Questions & Answers
Maybe I should create some pattern to be able to load trades X, Y and Z, or each Nth trade, but now I can suggest this: http://fxdreema.com/shared/H8iJIEH6
The loop is repeated 3 times, but because after a trade is closed, the order is changed, I use variable to adjust the skip parameter.
-
RE: identify group related to entry count and the ageposted in Questions & Answers
If you have 10 trades, you want to close for example trades 10, 7 and 4?
-
RE: identify group related to entry count and the ageposted in Questions & Answers
It look like need sub loop after loop.
1st loop
- skip 10
- not more than 10.
2nd loop
- skip = EMPTY
- not more than = 1 ( best entry to closed base on condition)
is it possible ???....
"Not more than 10" means that up to 10 trades can be closed after the first ones were skipped. If you have 20 trades the second half will be closed.
What is that condition and where it is located?
-
RE: identify group related to entry count and the ageposted in Questions & Answers
Abu, I found it hard to understand what you want to do. If you have some project example...