@l-andorrà said in MA applied to Williams %:
y fxDreema cannot merge indicators as you need. TipsyWisdom's suggestion can be the solution.
Thanks all, I got what I need from the EABuilder, here is a screen shot for anyone who might need this later.

@l-andorrà said in MA applied to Williams %:
y fxDreema cannot merge indicators as you need. TipsyWisdom's suggestion can be the solution.
Thanks all, I got what I need from the EABuilder, here is a screen shot for anyone who might need this later.

@l-andorrà , Attached images will make it clearer, thank you!

![0_1626711194902_Wpct.png]
How can I apply moving average to Williams % , and use the 2Ma's cross as one of my trade conditions?
Lukily I had an older version I was working on before I moved to this version that don't have this issue. Thanks to both of you.
Error comes from this line every time. Any ideas or work arounds?
return CustomPoint(symbol) / SymbolInfoDouble(symbol, SYMBOL_POINT);

I ended up using the custom MQL code block

MqlDateTime str1,str2;
TimeToStruct(StrToTime(starttime),str1);
MqlDateTime hour1;
hour1.day = str1.day;
hour1.hour =str1.hour ;
hour1.min =0 ;
hour1.sec =00 ;
hr1= str1.hour;
MqlDateTime hour2;
hour2.hour =str1.hour+1 ;
hour2.min =0 ;
hour2.sec =00 ;
hr2=hour2.hour;
MqlDateTime hour3;
hour3.hour =str1.hour+2 ;
hour3.min =0 ;
hour3.sec =00 ;
hr3=hour3.hour;
MqlDateTime hour4;
hour4.hour =str1.hour+3 ;
hour4.min =0 ;
hour4.sec =00 ;
hr4=hour4.hour;

For some reason I cant convert the string to time, it takes on the day but not the hours and minuets
Hi, what I'm trying to do is use the constant ( starttime) to indicate the first bar of 4bars. then I want to use the timestamp values to identify the series of 4 bars starting at start time. I've tried many things but I can't get it right.
1.constant "starttime" is a string
2.convert "starttime" using StringToDate and save into variable
3.modify variable block to shift fwd for each of the 4 hours
another issue entering different time value into the sting changes nothing
Yes that was a mistake and also I had Symbol set as specific . Thank you!
https://fxdreema.com/shared/I6sVyeE2d
Trying to close a position (not from tp or sl ) and reverse the position, I'm not seeing the log message when a trade is closed any hints? Thanks
That was too easy lol. Thank you!
I tried both comments inputs and display text, non are displaying the value of a bool nor a sting

