@alphaomega control again if there is enum in Add Custom Indicator window
Posts made by miki
-
RE: Calling on the Mastersposted in Questions & Answers
-
RE: Calling on the Mastersposted in Questions & Answers
@alphaomega when upload the indicator in fxdreema you must have enum like me

-
RE: Calling on the Mastersposted in Questions & Answers
@alphaomega in the fxdreema builder download mq5 instead ex5

and open it with metaeditor -
RE: Indicator notifying about the price levelposted in Questions & Answers
@lomcio https://docs.mql4.com/common/alert
Alert() function does not work in the Strategy Tester. If you see in the journal it's write:

-
RE: Calling on the Mastersposted in Questions & Answers
@alphaomega No Error for me, can you see in mql5 file if there is "enum" like in the picture below

-
RE: Trace Current Timeposted in Questions & Answers
@zedeai2 yes it's right but with comment block you have a simple data & time in chart corner. I tried to convert in trace block but only partial data returned.

-
RE: Trace Current Timeposted in Questions & Answers
@zedeai2 if you use the trace block, the time is in the datetime type in seconds elapsed since 01.01.1970.Use comment block and set it as you did before so the time is converted into a string.
-
RE: Trace Current Timeposted in Questions & Answers
@zedeai2 which block did you use and how did you set it up to get that result (like in the picture above)?
-
RE: Trace Current Timeposted in Questions & Answers
@zedeai2 i think time in that format are the seconds elapsed since 01.01.1970
-
RE: Odd bugposted in Bug Reports
@william29 At start Start_ID = ID_Count - 1 = 0 (current candle);
End_ID = ID_Count - 2 =-1(candle doesn't exist);
I think you only complicated your life with that system.
If you are interested in the min and max on Monday you just have to take them once and keep them in a variable. -
RE: My EA has not picked tradeposted in Questions & Answers
@pekene can you give more details? Do you get errors in the journal or expert tab?
-
RE: REPEAT THE LOST ORDER OF THE GRID ALWAYSposted in Questions & Answers
@francoab-pt this is an example how to do it https://fxdreema.com/shared/fycpuNAhd
-
RE: I want the breakeven block to only work for buy now (block 4) and sell now (block 5) , but it seems that it's working for buy now (block 15) and sell now (block 16) too . How can i fix this ?posted in Questions & Answers
@zahin007 you can create two group 4/5 group 1 and 15/16 group 2 . In break even block set group 1.
-
RE: What is the meaning of P1, P2 ecc in the blocksposted in Questions & Answers
@notoriusfx As you can see from the image in the example below EA opens three trades buys and using P4 + V1 I create a loop where I change the variable's value every time the block passes. In this case I'm going to double the size at each step.


-
RE: RSI as a trigger onlyposted in Questions & Answers
@pikkieb create 2 trees program, first, check if rsi < 30,if yes set flag on true. Second check if flag is true, if yes check if close > 8ema →buy now and set flag on false.
