Probably you are using a 'no trade' block somewhere. Just remove it.
Posts made by l'andorrà
-
RE: I need help. how to make an EA that makes multiple trades?posted in Questions & Answers
-
RE: Hi, can this be done in fxdreema?posted in Questions & Answers
I'm afraid that's is not my field of expertise.
Are roar or miro near here? -
RE: apply a mean to an indicatorposted in General Discussions
Do you mean the average volume of all your open trades right now?
-
RE: Average price stop-loss order for a group of trades.posted in Questions & Answers
It doesn't work because you are using the 'On Init' tab only. That means all oyur blocks will be executed just once and never again. I recommend you to move all of them to the 'On tick' tab.
-
RE: How to create pullback EA?posted in Questions & Answers
This is exactly what I wanted you to see.
What you want is really easy for a human brain, but an EA requires a detailed chain of conditions to be considered before considering the pullback is ready. You will have to study which scenarios is your EA to work on before trying to add blocks to your project. Can I suggest some questions to be answered beforehand?- How many pips will the peak of the trend above the support line?
- Which minimum/maximum range of pips for point 1 will be considered when considering situation 1 and 2?
- What situation will define a 'contact'? Candles crossinf it with its body? With its wick?
And this is only what I can think of rght now. Can you see it?
-
Qustion for real programmersposted in Questions & Answers
I have a problem with the following custom indicator:
0_1572026231216_Heiken_Ashi_Smoothed.mq4
It draws bars with two colours, red and green. Bar's bodies can be red or green and wicks can also be red and green, combining both possibilities (bodies and wicks with different colour.
I want it for this EA:
https://fxdreema.com/shared/BckotxM1c
Unfortunately, none of the four buffers the biulder can identify work as I want. I took a look on the code and I see up to eight different buffers. Could a real programmer tell me which buffers can give the information related to the colour of the bar's body/wick, please?
-
RE: Need help to build an EAposted in Questions & Answers
@jomo10 said in Need help to build an EA:
/XuLcaNVyd.
You need to copy here the whole URL, not just that part ;).
-
RE: Testing not replicating a simple EAposted in Questions & Answers
Maybe more info on your current project would help. Did you make any changes?
-
RE: Average price stop-loss order for a group of trades.posted in Questions & Answers
Please go to the builder and then:
Projects --> Create a shared link --> select the link and a new browser tap will open with your project --> Copy the URL here.
That's much better than a screenshot.
-
RE: How to create pullback EA?posted in Questions & Answers
How many pips should be down before moving up again? Will you need any oscillator indicator to confirm that change of trend?
-
RE: Take profit!!!posted in Questions & Answers
Ok, but then I need more info about your condition. Can you please upload an image to clarify what clousure are you looking for?
-
RE: How to keep a variable at 1 from a graph click (button, shape, etc ...)posted in Questions & Answers
This is not my field of expertise, but this may help:
https://fxdreema.com/forum/topic/4417/buttons
https://fxdreema.com/forum/topic/6505/how-to-work-with-the-buttons
https://fxdreema.com/forum/topic/7474/buttons-not-working/2 -
RE: EA doesn't work, pls help !!posted in Questions & Answers
Duplicate the structure: one for bius and another one for sells. Additionally i recommend you to put the 'Once per bar' block on top of both.
-
RE: Multiplier lot sizeposted in General Discussions
It depends on your current project. Usually a variable on a 'Modify variable' block with the multiplier within would do the job, but with no more info that can be difficult to say.
-
RE: Need help to build an EAposted in Questions & Answers
Go to the builder and then:
Projects --> Create a shared copy (web link) --> select it an then copy - paste the URL here

-
RE: Hi, can this be done in fxdreema?posted in Questions & Answers
Do you mean changing the lot in a graphic way or by using a variable?
-
RE: lista despegable de gestión monetariaposted in General Discussions
AFAIK that can only be done via a custom code block, I'm afraid.
-
RE: How to create pullback EA?posted in Questions & Answers
Ok. Now how to define a pullback. Let's assume we already have the proce level of that support/resistance. According to your diagram, for a buy to happen price should:
a) Cross down the price level and then moving up?
b) Move close to the price level without touching it and then moving up?
c) A combination of both?
d) Other ?Depending on the answer, the structure will be very different.