Not sure, only thing I can suggest is set levels to a set amount of pips, check the values and the distance on backtest, ctrl will give you the cross hair to drag between levels. Personally I would use a process of elimination, so remove blocks/what a block s doing and see if problem disappears, then I know where it is and what to test to fix.
Posts made by jstap
-
RE: Large Trade - Trade Results Questions In Backtestposted in Questions & Answers
-
RE: What does the EA remember when restarting MT4/5?posted in Questions & Answers
None will, blocks that do the calculation there and then don't need to, other than that only something that saves data to a global (terminal) variable can remember.
-
RE: CURRENT CANDLE CROSSOVER PREVIOUS CANDLEposted in Questions & Answers
In meta trader it is candle 0 close, or market properties bid price on 99% of brokers. The odd 1 draws candles from ask price. It means current price as the close doesn't have a price until the candle closes and becomes candle 1.
-
RE: Objects Showing On Tester but Not Showing On Chartposted in Questions & Answers
Do you mean live chart after showing on back test chart?
This maybe?

-
RE: How to draw Fibonacci from Zig Zag when BoS occurposted in Questions & Answers
Yes that is how you draw accurate Fibonacci, but how are you determining (or how is EA determining) the high and low candle ID's?
-
RE: Logic For Multiple Inside Barsposted in Questions & Answers
I think you have written the candle ID numbers wrong, 0 is the current forming candle, 1 is the closed candle before etc, so in your picture if 3 is the current forming candle (so actually 0) the range candle would be 3
-
RE: Need 50% of range to create variable priceposted in Questions & Answers
Watch on backtest and view what has been done, that picture is not lots, it's pips/points, this won't affect lots, except for if the EA views a pip/point differently resulting in a bigger/smaller distance, leave it as standard, drag your cross hare (ctrl f on backtest) snd use that number in any place pips are needed.
-
RE: گروه روبومستر سلیمانی خواهposted in Questions & Answers
Not sure exactly what you need, but here is a project that draws 3 lines: https://fxdreema.com/shared/qhLUxJZXb
-
RE: Need 50% of range to create variable priceposted in Questions & Answers
That picture doesn't show the lot size it was trying to place, I would set to 0.01 while testing so I know this is not the problem. I would use flags (as a gate) so when condition 1 happens (a candle closing) the flag is set, then the x over/under the line checks the flag and places the trade, switch the flag off when a trade is placed or condition is no longer valid. To test this set up a test project, that draws a named line on init and every time it crosses add 1 to a variable, and view it in a comment, this way you know if it should work when adding to your main project.
-
RE: Bucket is not working! (with example)posted in Bug Reports
Bucket doesn't work on MT5, you have to create with pink blocks, the link is how to do lots, you will have to create the rest: https://fxdreema.com/shared/LKDvSE9Fb
-
RE: Need 50% of range to create variable priceposted in Questions & Answers
It seems to make sense to me.
lowest at 10:45 so >9:00 and <16:00

Highest at 10:15 so >9:00 and <16:00

And the blue line being drawn in the middle, may be that backtester had to load enough data to display correctly.
-
RE: MT5 COLUMN PARAMTERSposted in Questions & Answers
You can fine the code on the MQL5 wed site, search google to find' for example AccountBalance() [Equity/Profit Etc] will return that value
-
RE: Draw Fibonacci based on two pointsposted in Questions & Answers
You are selecting pitce where ou should be selecting time:

-
RE: How to enter at a candle close?posted in Questions & Answers
2 condition blocks, (condition 1) candle 1 x> SMA on candle 1 - (condition 2) candle 1 closes > SMA on candle 1
-
RE: Need 50% of range to create variable priceposted in Questions & Answers
just copy what I did, it shows it works and how to do it
-
RE: Need 50% of range to create variable priceposted in Questions & Answers
You can draw lines on those places like this:
https://fxdreema.com/shared/8Hr6vlcrd
-
RE: Draw Fibonacci based on two pointsposted in Questions & Answers
Not sure what you mean exactly the 2 how are you getting the 2 price points?