You mean 2 opened at the same time? If so what blocks placed the trade, a shared link allows people to look inside each block and possibly see a problem
Posts made by jstap
-
RE: Opening two transactions with similar specifications at one pointposted in Bug Reports
-
RE: Hello how can I create an EA that, on the M1 timeline, draws a square showing the H1 candles?posted in Questions & Answers
Personally, I would create separate EAs for each section, get one working then start the next, this way you are just asking for help on 1 problem you haven't managed to solve. Then add them together, everything in your list can be created here.
-
RE: Hello, how can I fully add the MT5 Keltner indicator into FX?posted in Questions & Answers
I think the real question here is, does the indicator contain the relevant band value? On your platform open a chart with this indicator running, open the data window, press ctrl f, and put the cross hair on a band, then you can read the values in the data window and see which one matches the price value on the right. This should tell you which buffer you need to use.
-
RE: Please help draw horizontal line on chart as maximum level to close trade and stop EAposted in Questions & Answers
If you have the starting value, then adjust by + or - 100 pips and save this result, if price => or =< this number act how you need
-
RE: undeclared identifierposted in Questions & Answers
Show what you've changed, and say what it's doing
-
RE: Please help draw horizontal line on chart as maximum level to close trade and stop EAposted in Questions & Answers
The chances of the object == candle 0 close is unlikely, even though this is the current changing price?
-
RE: undeclared identifierposted in Questions & Answers
That look ok but change ) to } is it working?
-
RE: undeclared identifierposted in Questions & Answers
If you get stuck more I will start by adding the names from your indicator inputs, add this to the enumerations at the top, and then add another screenshot to show what you've done
-
RE: Lot Size and and Percent of the EAposted in Questions & Answers
Condition block with a bool constant, % buy/sell block off orange - lot buy/sell block off yellow
-
RE: Hello, how can I fully add the MT5 Keltner indicator into FX?posted in Questions & Answers
Judging from the buffer colours you added this from a MQ file? What can you not do with it?
-
RE: Hello how can I create an EA that, on the M1 timeline, draws a square showing the H1 candles?posted in Questions & Answers
Add a shared link to what you have done, most blocks can access different TF attributes
-
RE: What are these input parameters for EAposted in Questions & Answers
There int types, but to get help on an FX EA add a shared link to it
-
RE: using turn on/off blocksposted in Questions & Answers
You haven't mate, strip this back and work on 1 problem at a time
-
RE: EA from BoxxCode not sending trades. Do you know why?posted in Bug Reports
I didn't change anything, this is backtest so check it's working on yours, but is on tick so it should make no difference.
-
RE: using turn on/off blocksposted in Questions & Answers
You need to add a shared link to see what you have done and say what it's not doing
-
RE: undeclared identifierposted in Questions & Answers
This is because trend mode is an enum. In enumerations, it will be something like:
enum Trend Mode
{accurate mode,xxx,xxx,xxx);Replace xxx with the words for each type in the indicator input, and replace the data type int with enum
-
RE: EA from BoxxCode not sending trades. Do you know why?posted in Bug Reports
Is placing trades for me:

-
RE: constants folder ?posted in Questions & Answers
You can create an enum to do this, need more information on what you are trying to do
-
RE: EA from BoxxCode not sending trades. Do you know why?posted in Bug Reports
What is this not doing? Placing trades, drawing lines, or both?
