You can add a template using orange blocks, when you save to your terminal save it with the same name as your EA, this way it will automatically load on backtest.
Posts made by jstap
-
RE: Help with creating a robot that displays a indicator on chartposted in Questions & Answers
-
RE: How to add an entry every 5 candles?posted in Questions & Answers
Try this, Period() gets the minutes of each candle of the current time frame, then it is multiplied by a chosen number. This will count from 00:00, so maybe you need to start the count at a specific time:

-
RE: Convert MQL4 to MQL5posted in Questions & Answers
The converter will convert most projects, but some blocks are different and need manually replaced, if a block says trade and not position, it is mt4. I start from scratch in mt5 so all blocks are relevant.
-
RE: confused with drawing lineposted in Questions & Answers
Is quite easy, but why are you choosing that candle?
-
RE: Can anyone help me to create an EAposted in Tutorials by Users
I see, by looking for <> MACD on candle 1 then you are selecting only if the candle has closed, also possibly MACD candle 2 is the opposite.
-
RE: Drawing a line in another chartposted in Questions & Answers
This would be a lot of work and custom code.
-
RE: robot for Hedge !posted in Questions & Answers
Create a project, add a shared link and say what you are trying to achieve.
-
RE: Drawing a line in another chartposted in Questions & Answers
The problem here is for this to work you would need the two charts open, but then the EA would have to know the chart number, in case you have 2 or more charts of the same symbol open.
-
RE: I need help automating my Strategy on MT4posted in Questions & Answers
You are expecting 2 cross conditions to happen at the same time, this will happen extremely rarely.
-
RE: Simple pending order from a horizontal line?posted in Questions & Answers
The lines are just visual, the price is what is used for calculations, and making EA do something. You can save the pending/trade prices into a variable, and then use these to do calculations.
-
RE: Simple pending order from a horizontal line?posted in Questions & Answers
This will show what I mean: https://fxdreema.com/shared/RAYqC4zce
-
RE: Simple pending order from a horizontal line?posted in Questions & Answers
You can find this number by this formula: Middle Number=Lower Number+0.3×(Higher Number−Lower Number);
Middle number is a variable recording the level in between, 0.3 is the percent (30%) between the high and low from high, so from low would be the same but 0.7 (70%) -
RE: Can anyone help me to create an EAposted in Tutorials by Users
@Cpt_Cook You need to use 2 condition blocks for PSAR, 1st checks if PSAR is >< candle 1, 2nd checks if it's opposite, this way as soon as the dot changes the EA will react.
The MACD, this should work but maybe you just need to check if it's <>.

-
RE: robot for Hedge !posted in Questions & Answers
On trade tab will do whatever you want from trade closing, use purple blocks, and add a shared link saying what's not working.
-
RE: How to create Alert when profit loss below than -100$?posted in Questions & Answers
Add a shared link for what you have done/are doing, so help can be given.