I'm not really sure what you are asking for, but is it similar to this - https://fxdreema.com/demo/mt4-buy-sell-buy-sell-opposite-conditions - here the signals are different, but they are only for example
Posts made by fxDreema
-
RE: once for signal helpposted in Questions & Answers
-
RE: Color Select variableposted in Questions & Answers
Set the type ot the constant to color

... if you are asking about this, because I'm not sure -
RE: why my TP not in same Priceposted in Questions & Answers
Better don't mix pink and blue blocks. And better put "For each Trade" before other pink blocks. Instead of block 28 there is a block "modify stops" that is pink.
https://fxdreema.com/tutorial/builder/looping-trades-and-orders (yes, the example looks shifted a little but, I don't know why :))
-
RE: on Init and on Trade tooposted in Questions & Answers
You can find a block called "Run blocks" somewhere. Use it in the Init section to run the first block of the group in the Tick section.
-
RE: i using web version free.posted in Questions & Answers
@batsukh said in i using web version free.:
shared/Z9EdIfzFb

Do not use == to complare two price levels, never. Just imagine how the price moves, it moves because of those ticks in the price, but they can jump and skip price levels all the time. Use anything else, but not ==.
-
RE: Updating loop criteria as the loop happensposted in Questions & Answers
Do you reset Candle ID to 0 before the loop starts?
-
RE: Simple button to change a variable outputposted in Questions & Answers
I will suggest to put those purple blocks always on the top. I think logically it is better. Because that "on Chart" event fires on wide range of chart events and it's better to filter the events first and then do something else.
Try this example: https://fxdreema.com/shared/sKFJN0Ffb I'm setting the value in the variable in the Condition block, you will see. Then on the Alert you will see values 0 or 1, but it is the same as false and true.
-
RE: Buy Strongest currency vs Weakest - Not sure why it not working correctly.posted in Questions & Answers
You are talking about this, I believe:

This is not ok, because you are supposed to get 1 value from Momentum indicator, only 1 value from certain chart and candle. The candle is H1 and the candle is the one before the current, but what is the chart... it can't be multiple charts at once. I don't even understand what you are expecting from this block to do. Maybe average value... I don't know.
-
RE: Bug on Block No pend order nearby MT5posted in Bug Reports
But I see only 1 order when I test this EA, it doesn't produce endless amounts of orders. You say that you still got many of them?
-
RE: i using web version free.posted in Questions & Answers
I think the ID can be different depending on how you draw the fibonacci. You know that sometimes you start from bottom to top, sometimes from top to bottom. To see if you can get any level, try "Pass -> Trace" blocks and you will be able to visually see the value on the chart. But also make sure that everything is right with the object's name if you are selecting it by name.
-
RE: MA of accelerator oscillatorposted in Questions & Answers
If there is an indicator, it should be possible, because the indicator will do the calculations. In MetaTrader you can put MA over the oscillator, but I don't know how to do that from the EA.
-
RE: dos en el mismo puntoposted in Questions & Answers
I translated this in Google Translate, but could not understand the question
-
RE: "run as administrator error"posted in Questions & Answers
I can only suggest to run it as an administrator, or to try to run it from outside Program Files. I think that this error appears when the program tries to create a test file and it fails.
-
RE: Suggesting elements based on usage statisticsposted in General Discussions
https://fxdreema.com/tutorial/builder/trailing-stop
In short, the trailing stop block should be places somewhere under "on Tick" so it can do its job on every tick. And what it does is to load each trade and check whether or not it needs to modify its SL... and modifies it if needed.
-
RE: Managing Risk, Multiple EAs on One Accountposted in General Discussions
Well, managing risk is too general, you better explain what you mean

Each EA creates some trades on the same account, so each EA uses the same source of money. But EAs are separated by something called Magic Number. Basically when an EA creates a new trade, it gives particular Magic Number to that trade... and all trades that it creates. Then when it want to let's say delete a trade, it will only see those trades with it's own Magic Number and should not touch the others.
-
RE: Step by Step need helpposted in General Discussions
When MA50 is below MA200, this means that at some point in the past MA50 crossed MA200 from above to below. If you don't care when that happen, you can just check when MA50 is < MA200.
Working with objects, such as fibonacci, is a little bit different - https://fxdreema.com/examples#Chart-Objects
-
RE: Adding new indicatorsposted in General Discussions
You both can't have more similar profiles

What is the problem, you tried to add the indicator and it didn't happened, or you don't know how?
-
RE: Please recommended me for Dash Board Trading with Fxdreema Program . Thanks you in advance.posted in General Discussions
What is that Dash Board Trading?
-
RE: GRIDposted in General Discussions
There are blocks to place few pending order in grid, you tried them?
-
RE: Please Helpposted in General Discussions
Oh, I tried to solve this problem many times, but it just happens. I tried NormalizeDouble(), DoubleToString() and what not, but this problem just appears when it wants.