Posts made by seb 0
-
RE: need help True -False not workingposted in Questions & Answers
@raiderspaz
Shouldn't be a problem then.
However i tested your "buy execution" structure, it didn't work with the 2 blocks, it does without it. -
RE: need help True -False not workingposted in Questions & Answers
@raiderspaz
Placing them one below each other makes conditions necessarily simultaneously true to pass, that's why i asked you to do it. Basically it works the same way but simplifying things can avoids some issues. Both blocks "AND" and "once per tick" are almost always useless.
I need to know the value of this variable while you are running the EA, it's number because a too little one can make it not work. -
RE: need help True -False not workingposted in Questions & Answers
@raiderspaz
First try to remove "once per tick" and "AND" blocks, put all the blocks one below each other instead.
Also can you tell me the value of "atrpip" ? -
RE: identify candle numberposted in Questions & Answers
@fabiobioware
In FxDreema candles are ordered from newest to oldest. So the candle still forming is candle 0, the previous one is candle 1, the one before candle 2...
If you want to do it in the opposite direction, you launch your EA day 1, and 32 days later you want to have a 33 number, do this https://fxdreema.com/shared/97rcHeBRb
Once per bar V10(ID) grows by one, and it writes this number above the actual candle with 0 decimal. -
RE: Trade is not switching please help Need to run Crossover EMA Strategyposted in Questions & Answers
@parimal
I dont see anything wrong from what you show. Are you sure you have selected no "buy" trade, in "no trade" left block. And no "sell" trade, on top of right side ? -
RE: HI . please How to multiply a lotposted in Questions & Answers
@mustapha
Hi, you actually have sort of fonction for that in buy block, martingale :

-
RE: Price passes candle 1 highposted in Questions & Answers
@chase
Can you share your project please ? So we can help you. -
RE: Please Help me Understand Output Buffersposted in Questions & Answers
@nscrilla
Hi, you can first read these 2 tutorials about how to implement custom indicators in your project :
https://fxdreema.com/forum/topic/4208/tutorial-06-my-indicators-in-fxdreema
https://fxdreema.com/forum/topic/9105/tutorial-working-with-ex4-ex5-indicator-file -
RE: Modify Stops based on a price level that is reached to set new stop loss and take profit based on that price levelposted in Questions & Answers
@hax
Hi, custom (price level) take-profit is a level of the price, not a distance. Idk what is your value but if the target is 109.126, this TP should be at least 109.126+0.168.
So if you wanted like 20 pips distance TP, write 109.326. -
RE: Zigzag Value (( Last-Current)*38%)posted in Questions & Answers
But here i dont think maths are right. Here is what you are doing :

If you want to buy on a upward fibonacci retracement, the condition is always gona be true as : Z1-Z0 is negative, subtracting this difference this difference from Z0 actual which is the same value as the actual candle, the result is always gona be below the actual candle. -
RE: paid for person who help me to create the ea and send me the fxdreema link.posted in Questions & Answers
I hope your lack of logic doesn't concern the construction of a strategy, otherwise you are gonna give money for nothing
-
RE: Pending Order Trigger Cancels Remaining Pending Orders?posted in Questions & Answers
@zereleth
Hi, I would do something like that, on tick event : https://fxdreema.com/shared/5glc7LX9d -
RE: Close position after 5 minutes !posted in Questions & Answers
@johnny_prd
"Close positions" works fine for me, maybe its because you are on MT4 i'm on MT5, but you can use "close" if it works like that.
Your welcome. -
RE: Can't see what's wrong with the formulaposted in Questions & Answers
@l-andorrà
In your block 13 you writted in adjust : +shift_SL_sell pips
which will be something like : +0.0012 pips
The 0.0012 is actually the value you want, so just try to remove the "pips" at the end of the value,
like that : +shift_SL_sell
Maybe it is considered but like that the value added would be too little to be seen. If you express in pips a value which was already expressed in pips, its pips of pips, you divide it 2 times by 10.000 -
RE: Can't see what's wrong with the formulaposted in Questions & Answers
@l-andorrà
Hi, this is just a supposition but, from what i see you are trying to add the "spread+10pips" to your high in pips units. But if the spread isn't expressed in pips units but in absolute value like : 1.0003-1.0001 = 0.0002 , then your total value is gona be : 0.0002+0.0010(10pips) = 0.0012 and 0.0012 pips = 0.00000012 so a very little value ^^ and it can be the issue
But maybe that's not -
RE: Stop Loss did not work during trading periodposted in Questions & Answers
@tedhor07
I showed you how to build the EA, the way you wanted to make it work, not how to earn money. I don't have the solution for that.
This is a good demonstration that it's not as easy as that. You have to add more conditions, implement other indicators to make it profitable.
Good luck : )