What do you mean with "the value in pip"? Target Profit?
Posts made by josecortesllobat
-
RE: Save the value in pip of an operation when it is created.posted in Questions & Answers
-
RE: "Write to file" blockposted in Questions & Answers
Thanks @fxDreema
Now it looks correct. I compile the same project again and it seems to be fixed.


@kerrre Try it with your project and let us know which is the result.
-
RE: Fixed SL and Lot keeps changingposted in Questions & Answers
Could you detail which is your trading strategy?
-
RE: "Write to file" blockposted in Questions & Answers
Yes it is. Only one row is stored. As @richard96816 said, it might be an issue related with the last update of the block because it works as expected in a project compiled some time ago.
Thanks for taking a look at this.
-
RE: "Write to file" blockposted in Questions & Answers
@richard96816 I did it but just one row is stored with the new compilation of the same EA
-
RE: "Write to file" blockposted in Questions & Answers
Hello @fxDreema
We need that you take a look at "Write to file" block. It looks like it is not behaving correctly.
Thanks
-
RE: "Write to file" blockposted in Questions & Answers
Hello @kerrre
I think it might be a bug with the "Write to file" block and we need that admin takes a look at this. Because I have my old EA working correctly but I compile it again and it does not work.




With the new compilation, the csv file only contains one record like what you are getting with your project.
-
RE: More Columns in Write to File blockposted in Questions & Answers
You can write into two different files. Did you try it?
-
RE: "Write to file" blockposted in Questions & Answers
Yes, it is.
Here you have how it looks like after importing the CSV file into Excel

My EA is looking for some specific candles and stores some properties



-
RE: Fixed SL and Lot keeps changingposted in Questions & Answers
Hi @a4ashan
I have been looking at your EA's project

You are using a Cross Width = 5, what are you expecting about that? As it is, the condition is evaluated from the current bar to the 5th backward.
There is not any Candel ID set.
SL is set to 1pips as a price fraction. This means that the SL Level will be placed at OpenPrice+/-0.0001 that it seems to be too short. You have warnings about that at Journal

And your trade is closed almost at the same time when opens because hits the SL allowing to open other trade


-
RE: Muchas apertura en el mismo puntoposted in Questions & Answers
You must follow the advice given by fxDreema in order to find where is the problem: simplify the project as much as you can.
If the project's logic opens more than one trade when the conditions to enter at market are met, it means that the block Sell/Buy reaches more than one time. Try to evaluate each condition/branch separetely.
This could be a starting point

-
RE: Fixed SL and Lot keeps changingposted in Questions & Answers
It is better to share a screenshot of your project or a shared link from the builder because the behavior of the EA remains in the code where it should take a look to get what is going on with the EA.
-
RE: Muchas apertura en el mismo puntoposted in Questions & Answers
You should share a screenshot of your project in order to get help because it is dificult to suppose what is going wrong with the code or builder.
Deberías compartir una captura de pantalla de tu proyecto para obtener ayuda porque es difícil suponer que está yendo mal con tu código o con el constructor.
-
RE: EA trading not using conditionsposted in General Discussions
Follow the advice given by @isp00rt
It is highly recommended to read the fxDreema's tutorial web
It is a good starting point.
-
RE: Entry trade with ATR operandposted in Questions & Answers
ATR is an indicator that measures volatility. ATR returns a value in terms of price change. So, it is not correct to use the values given by the ATR indicator against a price level.
You should use a condition like
PriceLevel +/- 10%DailyATR
CurrentPrice = 1.00020
PriceLevel = 1.00000
ATR = 0.00004If, CurrentPrice > PriceLevel + 10% ATR --> BUY
1.00020 > 1.00000 + 0.01*0.00004 = 1.0000004 -> TRUE --> BUYBut if you share a screenshot of your condition block, it will be easier to help you.
-
RE: I Use FXdreema Mq5 And Create EA But found big problem?posted in Questions & Answers
Your project block where you are using those indicators in order to look at it.
-
RE: I Use FXdreema Mq5 And Create EA But found big problem?posted in Questions & Answers
I saw this error when I tried to use a custom indicator in the project but I forgot to add it into MetaTrader. As you pointed, if the indicator is one of the default ones, can you show us the project block where you are using that indicator?
-
RE: Crossing of two Moving Averages.posted in Questions & Answers
You can try this

But you will not get the exact crossover price.
-
RE: I want to show an arrow when EMA 50 crosses EMA 100posted in Questions & Answers
Try it in backtesting. There is not any input when you attach the EA to any chart because the project does not contain any input.
It works fine for me.






