@agitins You need to create the variable called 'open_price' and then insert it in the appropriate places, not just writing it name.
Best posts made by l'andorrà
-
RE: EQUIDISTANT PENDING ORDERSposted in Questions & Answers
-
RE: Heikin Ashi Problem Cannot Open Trade - MT4posted in Questions & Answers
Can you please share your project?
-
RE: need advice on using variables to select buffers of a custom indicator...posted in Questions & Answers
@zackry I'm afraid I cannot give you ans answer, sorry.
This project is too advanced for me. -
RE: My indicator operator error!!!posted in Questions & Answers
@abderrahman This is stuff for real programmers but I guess the problem is that the custom indicator's buffers are not correctly identified by fxDreema. Remove it from your custom indicator's pool and follow these tutorials:
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: My indicator operator error!!!posted in Questions & Answers
@abderrahman Then I'm afraid I cannot provide more help, sorry.
I'm not a programmer so I have no idea what the issue can be. -
RE: Show indicator value on chartposted in Questions & Answers
@fenixtrading I recommend you to store its value in a variable and then use a 'Comment' block including it.
-
RE: Fractals And Alligator Problemposted in Questions & Answers
@alisargun You need the EA to know that 1 crossong means one trade and no more than that. The best way is bu using a boolean variable (true/false) connected to the crossing and then use it in a condition block in the launching block tree.
-
RE: custom indicatorposted in Questions & Answers
@harshalr5556 Yes, but it is very risky. It will not work all the time. Better try to import mq4 files only.
-
RE: Set Current Marketposted in Questions & Answers
@ahmedelsaidamin Firstly remove all 'Set current timeframe' from both trees. Then connect both 'Set current market' blocks to its 'once per bar' block below.
-
RE: Condiction candle open with rsi bellow 70posted in Questions & Answers
@fabiobioware Ambrogio is right. You should work on candle ID 1 everywhere.
-
See you back on September the first!!!posted in Questions & Answers
Dear fxDreemers,
I'm officially on holiday since yesterday. I will not be answering any questions until I'm back on September 1. I hope all of you have a good (and not so hot) summer time and never forget mo specify candle ID 1 on your condition blocks!!!

Bye!
-
RE: Very tricky! Help pleaseposted in Questions & Answers
@jsauter86 Not sure I fully understand what you mean. What is '2.6% of the 3 day MA' exactly?
-
RE: i would like to create a bot for the 9Ema to cross the vwap.posted in Questions & Answers
@jsauter86 More info would be appreciated. Do you want it for MT4 or MT5? Do you have the Vwap indicator in mq4/5 extension?
-
RE: i would like to create a bot for the 9Ema to cross the vwap.posted in Questions & Answers
@anslembrath In that case you will need to find a custom indicator doing what the Vwap does because it is not available in fxDreema by default. Once you find it, try to get the mq4 version. That will ease thinks a lot.
-
RE: Very tricky! Help pleaseposted in Questions & Answers
@jsauter86 So you mean all trades should be closed when ANY of these circunstances happen:
a) Equity is in 2.6% profit or 2.6% loss.
b) Current price is 2.6% above or below the current value of the 3 day SMA.Is that correct?
-
RE: How to make a block for trend-detect?posted in Questions & Answers
@jsauter86 said in How to make a block for trend-detect?:
that is the purpose of using indicators and technical analysis...to find the trend to enter trades. If you find a easy 1 size fits all, please let me know! haha
Me too, LOL

-
RE: controlling exposureposted in Questions & Answers
The only (easy) way I can imagine right now is having the same EA on those three different charts and when a potential entry is identified, an Alert message pops up and let you know which one it is. Then you can take the decission to open the trade manually.
Obviously you can also create a fully automatic way but the human decission (your decission) is apparently required no matter waht so I would not dedicate time and efforts to implement such an EA. The previous option gets the same result with a lot less effort.
-
RE: One candle rule, No Nonsense Forexposted in Questions & Answers
@philostam The logic is correct. Are you sure those custom indicators are properly identified by fxDReema?
-
RE: One candle rule, No Nonsense Forexposted in Questions & Answers
@philostam You can get that by adding a 'No trade' block immediately below the 'Once per bar' block. That way the first condition to be met will open a trade and there will not be a second one until it is closed.