First steps
-
Hi
I have some experience with modify MQL4 EA's but not with fxdreema.
anywhere a step by step manual ?
My question:
How to build the follow signal as example
Williams Percentage Range
double WPR_0 = iWPR(NULL,WPR_TF,WPR_Period,0);
double WPR_1 = iWPR(NULL,WPR_TF,WPR_Period,1);for buy:
(WPR_1 < -50 **&&** WPR_0 > -50) Previous is under -50 and current is over -50then open buy
how to set "**and && **"
thanks for help
-
If you try to modify MQL4 code generated using fxDreema it will be hard to do, and I think - with no reason. It's better to make modifications in fxDreema itself and leave MQL4 as is. Think of MQL4 code here like a black box.
There is a block named "Condition". Connecting two "Condition" blocks one after another makes them to work in AND logic.
Some things are demonstrated here: http://fxdreema.com/examples