
Posts made by jstap
-
RE: Please help me with this EA that uses a 15 period EMA at the close of the candle as the only indicator in H2 Timeposted in Questions & Answers
I suggest you use ID 1, because ID o close is the currant bid price
-
RE: My breakout strategy doesn't workposted in Questions & Answers
Run it and you will see between the lines it will either say within, or outside, for what you are doing put the conditions for within in the place of the time filter block, and EA should only work within those hours
-
RE: My breakout strategy doesn't workposted in Questions & Answers
It is in the link of my last post
-
RE: EMA and RSI in window 1posted in Questions & Answers
You cannot merge 2 or more indicators here, you can use the values of more than 1, but not combined. You would need a custom indicator to use both together
-
RE: My breakout strategy doesn't workposted in Questions & Answers
There is no day shift in the time filter block, but you can use other blocks to achieve this range:
https://fxdreema.com/shared/PxIKqrqYc -
RE: My breakout strategy doesn't workposted in Questions & Answers
You are right crossing days can cause time problems, You would have to use a candle ID range if you set it to start at 01:00 then go back the amount of candles, this would change depending on your TF
-
RE: Block execution bugposted in Bug Reports
So when your first position is closed bool becomes true, but nothing then sets this back to false, so indefinitely every time a trade is closed another opens.
-
RE: Block execution bugposted in Bug Reports
But what is setting the bool true/false? Because without a reason, it can do whatever it wants.
-
RE: My breakout strategy doesn't workposted in Questions & Answers
That's is the builder page, not your project
-
RE: HAVING PROBLEM WITH CHECK DISTANCE MT5posted in Bug Reports
Draw another 2 lines, one vertical & one horizontal that redraws when the 10 pip cross has happened. From this, you can see when it has placed a trade, this should line up with your original line, so you can visually check if a trade should have happened
-
RE: Block execution bugposted in Bug Reports
I am not entirely sure what sets your bool to true, but as soon as a trade is placed your bool is set to true, with nothing to set it back to false, that side of your sell tree then places a trade when there isn't one.
The picture shows how I would remove the pass block and place the trail

-
RE: My breakout strategy doesn't workposted in Questions & Answers
Before I try to work out what is/isn't working, you can tee off no pending (if you only want 1 trade at a time), you cannot tee off once per bar, you will need 2 running in the line up to buy/sell. By splitting you are confusing the logic
-
RE: Compare last candle range vs 1.2x ATR??posted in Questions & Answers
ATR is a price fraction (not pips) if you search for posts by me (in tutorials) you will find how to convert, alternatively add this in adjust, +iATR(NULL,0,14,0)*1.2 to a 0 value, then you can compare left and right operand
-
RE: Close Oldest one trade if close newest trade in profitposted in Questions & Answers
Not 100% sure what you are trying to do here, but on trade tab-trade closed-close least profitable. If a trade has closed this will close the least least profitable trade (of your chosen type
-
RE: A different way to help... Actions + indications.posted in General Discussions
@JayPhillbrooks I Completely agree with this, to create for people just means doing things for people, while stopping them from learning. Nobody knows everything, so the more people that learn, the greater the combined knowledge
-
RE: HAVING PROBLEM WITH CHECK DISTANCE MT5posted in Bug Reports
No of course not, but if your logic prevents things from happening they won't. As a general rule in life, just like the theory of relativity, everything has an equal or opposite reaction...so if something does something you don't expect, then what caused this reaction? Very rarely is it a software bug, it is normally user input...
-
RE: Multiple Charts, ONE EA...merging values!!!posted in Questions & Answers
Ok glad to hear it, block IDs run from top to bottom, starting with the lowest
-
RE: Multiple Charts, ONE EA...merging values!!!posted in Questions & Answers
Possibly not running threw blocks and, relying on time could be a problem, to get things working as I want I would set this up on a small project, just doing a few pairs, then expand to cover more.