No idea but it has happened to me before
Posts made by jstap
-
RE: EA displaying error messagesposted in Bug Reports
@beekae One of them, is this the one causing the errors? Does it flag these errors on FX website?
-
RE: Spread and Stats Meter Disappears?posted in Questions & Answers
@Morpheus_0 I had this last week, for me it was a custom code block I had, switch blocks off and test you'll likely find the problem.
-
RE: "Right Price" Targetposted in Questions & Answers
@Denim There is too much in that to guess how the lines are drawn, if you have the indicator it likely can be added to FX.
-
RE: EA to take another trade while one is currently runningposted in Questions & Answers
@JL516 Your variable project won't load, you don't want once per bar, atleast not at top, this if needed should go under your conditions, this way it chechs all blocks before activating the once per bar.
-
RE: My first MQL5 array doesn't workposted in Questions & Answers
@l-andorrà I see how did you do it?
-
RE: Am I missing something?posted in Questions & Answers
@l-andorrà Your other option is to close the trade and reopen new with reduced lot, this would likely work.
-
RE: Trying to make a EMA Crossover that only does one trade at a timeposted in Questions & Answers
@BrettEvans This is correct, it will only reopen a trade if it closes with the PSAR still < > on the same candles it opened the first trade.
-
RE: Trying to make a EMA Crossover that only does one trade at a timeposted in Questions & Answers
@BrettEvans Put it in a row so it checks condition 1, then checks condition 2.
-
RE: how to close multiple trades at onceposted in Questions & Answers
@vikas As @l-andorrà has said this cannot be changed, is not even a meta thing, it is how long your provider takes to exit the positions.
-
RE: EA to take another trade while one is currently runningposted in Questions & Answers
@JL516 In a condition block candle 0 close (will give you current price) < > loop for the each trade , in adjust field put something like +10 pips make sure this is under a for each trade block.
-
RE: Create an EA….based Video…but how?posted in Questions & Answers
@Flyfisher You can manually do it by dragging envelope indicator onto the RSI window. EA can't use the values without a custom indicator.
-
RE: Create an EA….based Video…but how?posted in Questions & Answers
@Flyfisher This has been asked a few times in the last few days, on MT4/MT5 you need to get a custom indicator.
-
RE: Trying to make a EMA Crossover that only does one trade at a timeposted in Questions & Answers
@BrettEvans Until PSAR changes from one side to the other your conditions are correct, 1st condition check if< or > on ID1, second condition check if > or < on ID0, this will only activate when PSAR changes.
-
RE: Am I missing something?posted in Questions & Answers
@l-andorrà Isn't what you have storing the ticket straight after placing the trade? Shouldn't you be storing the ticket under close partial?
-
RE: need help or some insight on a projectposted in Questions & Answers
@2TheMoonWeGo I meant 1 condition, start on current tf, get a single condition working on back test, once working you can add other conditions and back test.
-
RE: I tried building my EA but iI'd rather find someone more experienced. Who can help?posted in Questions & Answers
@Aibek Not that I know of, either find a indicator, or have it created.
-
RE: I tried building my EA but iI'd rather find someone more experienced. Who can help?posted in Questions & Answers
The only way you can do that in FX is to get a custom indicator.
-
RE: My first MQL5 array doesn't workposted in Questions & Answers
@l-andorrà I have never tried, well not recently, put this is a variable array[1], try to put data in it and display in a comment, if it works you can try adding 1 & 2 and display. if this doesn't work though you will have to see what custom code is needed. What always confused me with arrays is getting the value, getting max or min is simple but each value I'm not sure.