I hope they will not give up.
Posts made by Dieter
-
RE: Same blocks, different results for MT5posted in Bug Reports
The response times are really long.
https://fxdreema.com/forum/topic/7167/mt5-prolem-with-programm-code-since-build-2006-and-2007-enum_timeframes-not-working-okSmall deviations between MT4 and MT5 are normal. I also have a problem with ENUM_TIMEFRAMES in MT5 (not in MT4) which also causes deviations between MT4 and MT5, as well as database .....
-
MT5: Prolem with programm code since Build 2006 and 2007: ENUM_TIMEFRAMES not working ok.posted in Bug Reports
Hi,
I will send an email with the log-file.Here is the problem and mql-file attached.

The problem arises in MT5 if you use the ENUM_TIMEFRAMES in the EA. Please try and improve. Optimize with red marked set-timeframe and see what happens.
1_1556985278254_LN-DiWi_1.00.mq5 0_1556985278254_LN-DiWi_1.00.ex5
-
RE: Array out of range at OnTradeDetector()posted in Bug Reports
Dear Sapiens,
I have a similar problem:
https://fxdreema.com/forum/topic/6858/big-problem-array-out-of-range-3297-29
I can not find a solution.
-
RE: Big problem: array out of range (3297,29)posted in Bug Reports
Hello,
do you have any idea what is going on?

-
RE: Big problem: array out of range (3297,29)posted in Bug Reports
// "Once per bar" model
template<typename T1,typename T2,typename T3>
class MDL_OncePerBar: public BlockCalls
{
public: /* Input Parameters /
T1 Symbol;
T2 Period;
T3 PassMaxTimes;
/ Static Parameters */
string tokens[];
int passes[];
datetime old_values[];
datetime time[];
virtual void callback(int r) {return;}public: /* Constructor */ MDL_OncePerBar() { Symbol = (string)CurrentSymbol(); Period = (ENUM_TIMEFRAMES)CurrentTimeframe(); PassMaxTimes = (int)1; } public: /* The main method */ virtual void _execute_() { // this is static for speed reasons bool next = false; string token = Symbol + IntegerToString(Period); int index = ArraySearch(tokens, token); if (index == -1) { index = ArraySize(tokens); ArrayResize(tokens, index + 1); ArrayResize(old_values, index + 1); ArrayResize(passes, index + 1); tokens[index] = token; passes[index] = 0; old_values[index] = 0; } if (PassMaxTimes > 0) { CopyTime(Symbol, Period, 1, 1, time); **datetime new_value = time[0];** if (new_value > old_values[index]) { passes[index]++; if (passes[index] >= PassMaxTimes) { old_values[index] = new_value; passes[index] = 0; } next = true; } } if (next) {_callback_(1);} else {_callback_(0);} }};
-
Big problem: array out of range (3297,29)posted in Bug Reports
Hallo Admin,
- no red errors when compiling
- no error message during the optimization
But during trading, the EA is removed from the chart and the following error messages appear.
II 0 18:40:16.761 Var2_2.1cr (GBPUSD.m,M5) Terminal has been closed
NL 0 18:40:59.729 Myfxbook (CHFJPY.m,H1) log -- Myfxbook EA Version 1.63
CJ 0 18:40:59.730 Myfxbook (CHFJPY.m,H1) log -- Show_Log mode: 1
JK 0 18:40:59.744 Myfxbook (CHFJPY.m,H1) log -- Debug mode: 0
NH 2 18:40:59.786 Var3_1.0 (AUDCAD.m,M5) array out of range in 'Var3_1.0.mq5' (3297,29)
CD 2 18:40:59.799 Var3_1.0 (AUDCHF.m,M5) array out of range in 'Var3_1.0.mq5' (3297,29)
QQ 2 18:41:20.235 Var3_1.0 (AUDCHF.m,M5) array out of range in 'Var3_1.0.mq5' (3297,29)
HN 2 18:41:38.597 Var3_1.0 (AUDCAD.m,M5) array out of range in 'Var3_1.0.mq5' (3297,29)
JH 0 18:41:56.
195 Myfxbook (CHFJPY.m,H1) Statement uploaded successfully
CQ 0 18:42:58.039 Var2_2.1cr (GBPUSD.m,M5) Terminal has been closed
NJ 0 18:42:58.039 Var3_1.0 (EURUSD.m,M5) Terminal has been closed
JL 0 18:43:02.359 Myfxbook (CHFJPY.m,H1) log -- Myfxbook EA Version 1.63Is the failture known and can you tell me why this is going on?
-
Where to put Play Sound on the roaming file in WIN 10?posted in Questions & Answers
I use WIN 10 and Metatrader is in the roaming folder. So that the block 'Play Sound' can be recognized - in which folder do I have to put the alerts and where exactly?
-
RE: Break even line on mutiple tradesposted in Questions & Answers
@peringvar With several trades I like to work with the following block. You can hire him for buy and sell trades at the same time. look in the information.


-
How to check: Trendline by Angel is selected or is not selected on chart?posted in Questions & Answers
Dear,
how can I check the object 'Trendline by Angel' is selected or is not selected on chart or on init?
This block was build 'on init':

-
RE: How to hourly enter?...posted in Questions & Answers
@alessandromagno
Dear,
I have attached the mql for the easiest way (Buy-Side: Sell-Side it´s up to you
). But it's better to use the FXDREEMA help in the long run and understand what's going on in the blocks - Software-Structure for big projects - Have fun with your studying.1_1516442680981_candlecloseDieter.mq4 0_1516442680981_candlecloseDieter.ex4

-
RE: Export from Tickstoy in filter duplicate ticks modeposted in Questions & Answers
@winidecorw The MT4-Optimizer needs 2864 hours for eight years on ticks to optimize one of the ea´s. I wrote ea´s in bar-structures.
-
RE: How can I integrate Renko charts?posted in Questions & Answers
@miro1360
I will implement it by overlaying the MT4 chart with an indicator corresponding to the Renko signals (and so that the MT4 optimizer does not torture for weeks). This is not visually beautiful but gives the correct signals. The signals are to be created over several higher-level time windows. Traded in the M5 time window. A test is worthwhile. The problems then come by themselves - one after the other
For me, the eurusd is rarely a pair for renko. Too many bridges/tails. rather audcad. Renko in connection with formatioen, MA, Pivot, and multitimeframe, rounding no .., Renko is not a enty signal but bevor that starts I have some other projects. Renko-charts are for the out-of-range-trading!!!
A professional trader has written a book about range trading with the renko chart. Very low RRR ratio on H1 or H4. I trade as well but as always: without a big account ......Example Formation:

-
RE: Input for block Buyposted in Questions & Answers
@miro1360
Hi Miro, you are God,
great, have been fumbling for quite a while. Is working!!!!
Thank you for your help! -
RE: How to hourly enter?...posted in Questions & Answers
@alessandromagno ...try these for the Buy-side and check candle ID; you can delete the block 'For each Trade'; TIPP: NEVER EVER without STOP!!!!!!!!
good luck!
-
RE: How to hourly enter?...posted in Questions & Answers
@alessandromagno I do it on this way: I like to controle the server time for my timezone becaus of my broker has the same one! There are a lot of possibilities.....

-
RE: Bug potencial: rename object horzontal lineposted in Bug Reports
@dieter THIS PROBLEM IS SOLVED....it was my fault....difficults thinks!
