I meant this:

Posts made by jstap
-
RE: Calculation and definition of a straight lineposted in Questions & Answers
If indicator line ID2 (3,4,5,6,7,8,9, or 10, etc) is the same price as ID1
-
RE: Which code block will execute first ?.posted in Questions & Answers
looks like it, but the chance of it happening at the same time is small
-
RE: How to set dropdowns for inputsposted in Questions & Answers
That is what you have done, everything in the {curly brackets} is what you get in the dropdown.
-
RE: HAVING PROBLEM WITH CHECK DISTANCE MT5posted in Bug Reports
Ok, I rarely use the check distance block but have and it should work with this, I would just use a condition candle 0 close (which is the current bid price) is > candle 0 open adjusted to +10 pips
-
RE: Which code block will execute first ?.posted in Questions & Answers
Thank chat GPT: OnTimer Event This event is triggered at regular intervals based on the timer set by the EventSetTimer function. It allows you to perform tasks at specified time intervals, regardless of market activity. If the timer interval matches with the time of an incoming tick, the OnTimer event will still execute based on its own interval.
OnTick Event: This event is triggered every time a new tick (price change) occurs in the market for the selected symbol. It's directly tied to market activity. If there's a match between the time of a new tick and the time set for the OnTimer event, the OnTick event will take precedence because it's triggered by the arrival of market data.
-
RE: loop MA closeposted in Questions & Answers
Without looking too deep into this, conditions on top of conditions rely on all being true at the same time, once per bar above conditions relies on all conditions being true at the moment of the 1st tick of the bar. All in all, this limits how things can work, test a couple of situations until you know they work, then add them all together.
-
RE: Positions Countposted in Questions & Answers
You might be able to get this ea's magic by hovering your mouse over a trade it has placed, then loop through running trades and check by magic.
-
RE: BUY WHEN THE CANDLE IS HIGHER SELL WHEN THE CANDLE IS LOWERposted in Questions & Answers
If you are just using 2 candles as your trend this is easy to achieve, set up a start just placing trades, ID2=bull, ID1=bull, place a trade using ID1, ID1 is > ID2, opposite for sells, once working you can work on modifying the stop.
-
RE: How to set dropdowns for inputsposted in Questions & Answers
You are not calling and using the correct constant;

-
RE: HAVING PROBLEM WITH CHECK DISTANCE MT5posted in Bug Reports
I do not know if the candle open on 0 can ever cross because it is a fixed number, so you would need to test that 1 condition. Having multiple conditions in 1 EA means it can be hard to find a problem, I would backtest 1 condition at a time and see what works.

-
RE: HELLO BEEN HAVING A PROBLEM WITH THE BUY PENDING ON MT5posted in Bug Reports
No position should be a no position/order block
-
RE: How to set dropdowns for inputsposted in Questions & Answers
Without looking further, where is your enum? recreate with the same priciples as what I showed:

-
RE: How to set dropdowns for inputsposted in Questions & Answers
You'll have to add a shared link to see what's not working
-
RE: How to set dropdowns for inputsposted in Questions & Answers
It is the same, just create exactly the same but for mt5
-
RE: Robot "KEY"posted in Questions & Answers
You can do this with a condition but people can just pass the code on, if text == constant text pass, or you can set the account number in a condition + terminate block, to have this dynamic you need to pass information via a website though, and that is more advance than fx can do