@l-andorrà Hi. I want to make it by myself
Posts made by khacdiepvnc
-
RE: Read the file that export from The 1st EAposted in Questions & Answers
-
Read the file that export from The 1st EAposted in Questions & Answers
Hi Bro
I have 1st EA, that can export a *CSV file every Open a trade in a account.
I want to make 2nd EA, that can import the file to open a new order same the 1st EA in other account
Thanks Bro
-
RE: HOW TO CODE AN EA COPY TRADE FROM MT5 TO MT4posted in Questions & Answers
this forum's Admin has never been working yet!
-
RE: CANDLE CROSS MA - HOW TO DO?posted in Questions & Answers
@paragorundu said in CANDLE CROSS MA - HOW TO DO?:
@khacdiepvnc you may find a simple example below:
https://fxdreema.com/shared/ppxR1P45e
In setup 1, only one trade will be initiated if one of the three condition occurs for buy and sell.
In setup 2, only one trade will be initiated if one of the three condition occurs for buy or sell.
You can search introduction, HowTo or forum areas for details and various solutions.
Thanks Bro.
But with "No trade" block, there is only 1 order all time.
I need 3 order with 3MA (1 order/1MA) when Price cross they, and dont open new order if continue cross the MA more time. -
RE: CANDLE CROSS MA - HOW TO DO?posted in Questions & Answers
@paragorundu could you send the example link?
-
CANDLE CROSS MA - HOW TO DO?posted in Questions & Answers
Hi Bro
https://fxdreema.com/shared/3CoKWhsbdI want to open only 1 order per 1 MA when the candle cross
It means there is 1 order only with 1 MA when Price cross 1time or many times
Please help me
Many thanks
-
RE: Why Fxdreema can not convert *mq4 to *mq5posted in Questions & Answers
@l-andorrà said in Why Fxdreema can not convert *mq4 to *mq5:
@khacdiepvnc I guess the only option for him to do that is if manye subscribers requested it. Otherwise, I'm afraid he won't.

he has been not read this topic yet :))
-
RE: Why Fxdreema can not convert *mq4 to *mq5posted in Questions & Answers
@ambrogio said in Why Fxdreema can not convert *mq4 to *mq5:
@khacdiepvnc you are right, but this converter has never been accurate, sometimes we can be lucky and everything is fine, usually there are errors that need to be corrected, but we should know how to do with the codes.
I believe the administrator has no intention of improving his product.Admin should fix it! We are paying for these on fxdreema @admin
-
RE: Why Fxdreema can not convert *mq4 to *mq5posted in Questions & Answers
@l-andorrà said in Why Fxdreema can not convert *mq4 to *mq5:
@khacdiepvnc fxDreema cannot convert indicators. Just EAs craeted with fxDreema.
here Bro

-
RE: Help! Buy Sell with this indicatorposted in Questions & Answers
@khacdiepvnc yes. Excactly bro
Thanks -
Why Fxdreema can not convert *mq4 to *mq5posted in Questions & Answers
Hi Bro
I have a MQ4 file,
I use fxdreema to convert to MQ5, but the code of MQ5 file is incorect
Please help @admin
File: attachment 0_1614611975917_Donchian_Breakout_Modified_by_Yogi.mq4
[0_1614611855631_Donchian_Breakout_Modified_by_Yogi (1).mq5] -
RE: Help! Buy Sell with this indicatorposted in Questions & Answers
I tested, it is not repaint
I use Bar -1 candleColor condition run, value condition dont run

-
RE: Fibo assistance pleaseposted in Questions & Answers
@ajmd97fx said in Fibo assistance please:
hola @jsauter86 , well, see if I can help you.
1º. Prefix/Name
It is very important to assign a name to the object because later we will have to refer to it.
2º. Bloq "pass"
You are missing the "pass" block to start drawing anything on the graph. "pass" or something that tells you to draw, or if not, it doesn't draw3º. Time (1)

here you must refer to a candle, if you use daily TF use the daily candle of the previous day.

Something like that.
You can use the same for Time (2)
4º. Price
I think this is well configured5º. Levels (comma separated)
this is where you define the levels you want to use, separated by commas, for example 0,50,61,8,100
If you select "Yes" in Ray rigth, it will draw the fibo from the time you have configured (the candle of the previous day) to the right edge of the chart and there it will draw the number of levels
6º refer to levels
Finally, you would have to refer to the levels. FxDreema refers to the levels by numbering them from 0, in this example I have given you we have the levels 0,50,61,8,100. Well, the first is 0, the second 1, the third 2, etc. It would be something like this:
0 -> 0
50 -> 1
61.8 -> 2
100 -> 3Let's suppose that you want to open a buy when it crosses up level 3 which in this case is the fibo 100. You would have to use this block

I think I have not forgotten anything, but ask any questions and surely someone will help you
Share your project plz !
-
RE: How to EA draw an indicator on the chart automatic?posted in Questions & Answers
thanks Bro.
But i need find how to do with MT4