It can be some bug within the indicator 
Posts made by fxDreema
-
RE: self updating/refreshing grid, compare two groups of tradesposted in Questions & Answers
-
RE: Помощ за МА пресичанеposted in Questions & Answers
Това си е направо за индикатор
Като код едва ли е нещо много сериозно, но пък в блоковете е трудно (по-точно грозно) да се правят такива дребни калкулации. Има блок дето да стартира следващите блокове всеки път с различна валута... де да знам, просто ще е грозно, а и няма да имаш хубава визуализация 
Иначе ето я функцията с която се взима Close на свещ: http://docs.mql4.com/series/iclose Там в списъка има и други подобни.
-
RE: Помощ за МА пресичанеposted in Questions & Answers
Нещо такова: https://fxdreema.com/shared/JevmzIc3d
То не е сложно да се направи по принцип и на код, а кой знае, може да има и индикатори за това нещо. Само се чудя как би могло да се нарече за евентуално блокче -
RE: Помощ за МА пресичанеposted in Questions & Answers
Да броиш свещите по тип ли? То може с там някаква променлива, мисля че няма специален блок за това нещо. Ама не е ли почти същото да провериш каква е свещта на по-голям период... Иначе има едни "Bulls in a row" и "Bears in a row", ама те гледат за последователни еднотипни свещи.
-
RE: heelp me guys pleaseposted in Questions & Answers
Pending order? Or you want to ask for the price of the last closed/running buy trade?
-
RE: Drawing in indicator windowposted in Questions & Answers
You can try it now, it's the last setting, just below Chart ID. I'm not sure how Chart ID is used, so keep it 0.
-
RE: Drawing in indicator windowposted in Questions & Answers
No, it's not Chart ID. There is another parameter called Sub Window, but it's not added. I will add it later for all Draw blocks.
-
RE: Drawing in indicator windowposted in Questions & Answers
Chart ID is responsible for this, but to be honest, I never tested it. It is an integer value, so I guess it should be something like 1, 2...
Z-order is used when you want some object to appear above other object. Higher number = I am above.
-
RE: help with indicatorposted in Questions & Answers
It looks that this error is produced by the indicator. Make sure that all parameters are right and in order, but if they are... I don't know, indicator bug
-
RE: Lot sizeposted in Questions & Answers
Ok, but this is not for the lot size, this is for the prices - SL, TP... price distances. There is no such thing for lot sizes, but it's a good idea and I will write it into my To Do

-
RE: Помощ за МА пресичанеposted in Questions & Answers
Няма. Този текст си е системен такъв, излиза от функцията Comment() и тя няма никакви опции за настройка на цветове, размери и т.н.
Иначе могат да се слагат текстове под формата на обекти. Има един блок Draw Textм и с него може да се сложи текст или фиксиран някъде на екрана, или спрямо някоя свещ. Само дето да сглобиш текст е малко засукано
Някой ден ще направя алтернатива на Comment, ама кога ли...
-
RE: ECN broker - remove pending order on tp hitposted in Questions & Answers
This is what you have:
http://img.prntscr.com/img?url=http://i.imgur.com/gEmnIOi.pngYour MagicStart is 0, so you are working with the manually created trades, which is fine. So you want to delete existing pending orders when a trade is closed by Take Profit.
To detect when a trade was closed by TP or SL, the EA is reading it's comment. Normally [sl] or [tp] is appended to the comment. Do you have this?
http://i.imgur.com/hfILobg.png
Let's say that it does not exists. Then "(on trade) Trade closed" has another way to detect whether the trade was closed by TP or SL, which can be seen in the code that the block produces:
http://i.imgur.com/lH8yraA.png -
RE: ECN broker - remove pending order on tp hitposted in Questions & Answers
It looks that you can use SL and TP when you send a trade.
Do you have some messages in the logs, or the EA does not work as you expect at all? If the EA tries to do something, there will be indication of that in the logs, otherwise there will be nothing in there
-
RE: ECN broker - remove pending order on tp hitposted in Questions & Answers
Well, I created a demo account in this Pepperstone and I can't even create a trade or pending order. Can you show me what you have when you click on "New Order"?
-
RE: Open last used project on fxDreema launchposted in Questions & Answers
I think it was for the local version. In the folder like %Program Files%fxDreema\Data\james\experts\ find a file named .lastloaded.fxdb, open it with notepad and write the ID of the project you want to load. You can also delete the other file list.ini, it will be recreated with fresh information automatically
-
RE: chart objects(horizontal line)=ask buyposted in Bug Reports
Check this one:
https://fxdreema.com/shared/eFczZGTGcThe pink group of blocks is to check for the age of the last trade and also to skip that if the loop is empty (in backtsting you have 0 history trades initially, so the loop will be empty in this moment)