@fxdreema Thx for getting back to me on this. Actually what I did is, I created "Custom MQL code" blocks with what I needed. Then I generated the code as .mq4 (.not ex4 because at this stage the .mqh file is not included therefore it won't compile). Afterwards, I went to mql4 editor, added "#include <xxxxx.mqh>" and then compiled everything together. The process is a little bit longer but it works. Thanks a million for your help.
Posts made by mndiarra
-
RE: How to do include in "Custom MQL code" ?posted in Questions & Answers
-
How to pass in headers as part of the "Send HTTP request" call ?posted in General Discussions
Hi,
I need to pass http header to the "Send HTTP request" block.
A sample curl command is here "curl -H "X-MBX-APIKEY: dbefbc809e3e83c283a984c3a1459732ea7db1360ca80c5c2c8867408d28cc83"".
I just want to know how to pass in -H in the "Send HTTP request" block.
Thanks in advance for your inputs. -
RE: How to do include in "Custom MQL code" ?posted in Questions & Answers
@l-andorrà No worries, thanks I will try or unless somebody has done this before that would be appreciated. As said, everything is feasible, but the problem is time.
-
How to do include in "Custom MQL code" ?posted in Questions & Answers
Hi,
I was trying to use #include in a block of mine before realising that this is not supported - find below excerpts after clicking on the question mark beside the "Customer MQL code" itself.
<snip>
You also can't define global variables or use #define, #import or #include.
</snip>Is there any workaround for that ? Thanks in advance for your help.
-
RE: Cryptocurrencies are exploding these daysposted in General Discussions
@digitalb23 Hi, have you succeeded in building an EA for the crypto space. If yes, I would like to see the main concepts basically (how to connect to let's say Binance and how to trigger an order). Thanks for your answer.
-
RE: Fibonacci levels are 0-32 in fxdreema but 0-31 at mql.composted in Questions & Answers
@l-andorrà Ok, no worries. I just need his opinion on this as I think there is a typo here.
-
RE: Fibonacci levels are 0-32 in fxdreema but 0-31 at mql.composted in Questions & Answers
@l-andorrà, what is actually contact to the admin ? Is it support@fxdreema.com as I don't want to write to you again on same topic ?
-
RE: Fibonacci levels are 0-32 in fxdreema but 0-31 at mql.composted in Questions & Answers
@l-andorrà thx, I will contact the admin then.
-
Fibonacci levels are 0-32 in fxdreema but 0-31 at mql.composted in Questions & Answers
I've found a small discrepancy between fxdreema and mql, and I am wondering if this is just a typo or not. Actually, the issue is Fibonacci levels in fxdreema are 0-32 but 0-31 at mql.com.
Note: I know it's hard for fxdreema users to hit this issue but I just want to raise it that people are aware of. -
Logical NOTposted in Questions & Answers
Hi,
I am looking for a logical NOT in fxdreema but somehow I could not find it.
Can you please let me know how to make a logical NOT (if something is not True) ? -
How to check if the market is bullish/bearish on a higher timeframe ?posted in Questions & Answers
Hi,
I am currently working on a M5 (5 minutes) timeframe, but I would like to check whether the market is bullish or bearish on a higher timeframe (e.g. M15). How to do that ?
Note: I tried "MACD Divergence (Bullish)/MACD Divergence (Bearish)" but that does not seem to be working for me.
Thanks in advance for your response. -
RE: How to make TP (Take Profit) a variable (based on an indicator) ?posted in Questions & Answers
@l-andorrà Thx, I guess the block you shared is under the "on Trade" tab, right ?
-
How to make TP (Take Profit) a variable (based on an indicator) ?posted in Questions & Answers
Hi,
I am trying to implement a manual trading strategy based on the Keltner channel, but somehow it does not work as I would like it to work.
As you may know, the Keltner channel has 3 lines (upper, middle and bottom). So, I would like to do something like if I go long at the bottom line, I would like my TP (Take Profit) to be at the upper line. But as you know the Keltner channel is an oscillator indicator, therefore the TP at the entry point may not be the same TP later on when the market reaches the upper line. This is really easy when following the market visually but automating it does not seem to work because the TP is getting fixed to the TP at my entry point. I've already tried out Custom (price fraction) as my TP but this is fixed to the entry point value, and not the current one. Could you help me in automating this ?Thanks
-
RE: How to do current price > high of the previous candle ?posted in Questions & Answers
@q8carpenter Thanks a million. I knew ID "1" is the previous candle but I was not aware of the Ask price.
-
How to do current price > high of the previous candle ?posted in Questions & Answers
Hi,
I am trying to write a condition where the current price > high of the previous candle but I could not find the right building blocks to do so.
Could you give me some hints ? -
RE: No record foundposted in Questions & Answers
Thank you all for your answers, now I understand how to create a new custom indicator using my .mp4 file. It's actually intuitive, just define and test it. Great tool.
-
RE: No record foundposted in Questions & Answers
@l-andorrà. Yes, I am trying to create a custom indicator based on an .mq4 file. I thought I can just import it but it seems that is not the case. How do I create a custom indicator (by the way Vortex) from an .mq4 file ?