@l-andorrà
I have custom indicator for this, it is TDI but still i cannot get value for use in a condition block.
@roar
Thank you for the link, i'll take a time to learn it.
@l-andorrà
I have custom indicator for this, it is TDI but still i cannot get value for use in a condition block.
@roar
Thank you for the link, i'll take a time to learn it.
Hello,
How to read value form one indicator applied to another indicator,
Let say i have an indicator :
What block to use if i want open order based on EMA 5 crossing up EMA 21 = BUY and vice versa??
@l-andorrà that RSI indicator, i want to check if RSI between value 40 and 60 then it is give a True value. It can do with condition block no.1 but it takes 2 blocks, i just want to learn how to use condition block no.2
@miro1360 how to eliminate warning that said expression not boolean?
Thank you All
Hi all,
I want to create custom condition with condition block no.2, rather than using condition block no.1, just want to try this things. But it wont work, any help regarding this matter?
I'm using this block

to input this MQL4 code

and this is the result

expression is not boolean
how to do it correctly?
i found this for my reference
https://fxdreema.com/shared/leqyFBBXc
thank you
I want to make an EA exactly same like this, one EA with several condition of signals to open order, rather than make a new thread, can i join here??
i already make this but didn't work as my expectation, even i can said it is totally not working.
do you have an example or tutorials to make an EA like this?
What is logic behind this EA to work??
i have 6 setup / signals to buy, and so for sell (opposite of buy setup), totally i have 12 setup for buys and sells.
i make a condition per signal ended with buy and sell order, and it didn't work.
then i make a condition per signal ended with modify variable as a boolean True or False, then using this variable as setup to execute buy/sell order, but also didn't works.
so please help
@miro1360
I Just create new project and copy paste above block
i'm running it at demo account,
follow above instruction to make similar trendline name with object on chart name
but EA not open any trade when condition meet above block?
Any missing setup?
https://fxdreema.com/shared/ZbzPNXW0e
@l-andorrà
Any example of using trendline price level (by candle ID)?
or how to use other properties of object on the chart?
Hello, when i try this EA at demo account
Why Buy & Sell not working?
I already draw Trendline manually,
and give similar name of manually draw trendline with block input.
any help to this issue?
@jsauter86
Is it logic no.208 & 209? or No. 211 & 212?
where should i put it on to stop EA behaving like this?
Thanks before

What happen with this EA?
My EA continue opening trade and doing trade without following it logic??
This is the logic :
https://fxdreema.com/shared/bhazvIt6b
Thanks before.
Thanks all,
yup, better play with something that we already know how to run it.
@l-andorrà
OK, i'll try to remove stochastic block,
i'll take a look whether it is running to trade or not if only using MACD Divergence block.
Do you have some information regarding this MACD divergence block?
such as hidden or regular divergence and how does it calculates the divergence?
Thank you.
Hi @l-andorrà
Here is my project, please check
https://fxdreema.com/shared/1xJ3LJ96
Thank you before
How to use MACD divergence block properly?
I'm using it, but nothing happen,
no trade open based on MACD divergence?
@l-andorrà thank you for your help
Thank you for your reply,
then how to automatically detect pair digits?
i mean how to automatically detect is it 3 digits pair or 5 digits pair??
How to calculate pip value from different Digits pair such as
USDJPY with 3 Digits and EURUSD with 5 Digits
For Example :
USDJPY ==> Today High = 105.171 ,and Today Low = 104.523, then Today Range shall be 64.8 pip (result Multiply by 100)
EURUSD ==> Today High = 1.19195 ,and Today Low = 1.18108, then Today Range shall be 108.7 pip (Result Multiply by 10.000)
How to do that? which block can we use?
i take a backtest on my chart with your given indicator parameter, which one shall came first?
stochastic crossing then followed by MA crossing?
because your block just telling that If MA 5 greater than MA 144 means buy and vice versa, there is no detection of MA crossing.
AFAIK, if you want to detect crossing on MA which triggering BUY signal you need to create
MA 5 on previous bar < MA 144 Previous bar
MA 5 current bar > MA 144 Current bar
you can use Candle ID = 1 for Previous Bar, and
Candle ID = 0 for Current Bar
Because there is no MA Crossing conditions,
it will take signal from Stochastic only.
CMIIW