Yes Yes. Will the customer's choice of option. But I believe this Metaquotes gradually giving more focus on MT5 and maybe, just maybe, just stay with her in the near future.
Posts made by tcanuto
-
RE: Profitability annual, monthly and yearlyposted in Questions & Answers
-
RE: How to use 2 volume modesposted in Questions & Answers
Hello fxDreema . Waking up this post. Still awaiting answers about How to use the result of Ryan Jones in a variable , so I add this variable in 'Volume Upper limit' , this insides of Buy and Sell Now blocks.
It seems that simple , but still can not do.
-
RE: Delete objects after deleting Expert Advisor chart.posted in Questions & Answers
I talk for translators, so our difficulty to understand, unfortunately.
In the above case I excludes EA but still continued objects in the graph. The objects are the EA information.
-
RE: Profitability annual, monthly and yearlyposted in Questions & Answers
yes yes ... even this. I believe now more popular MT5.
Even I do not using hedge, I felt like it is missing something, but now it will be complete. -
RE: MagicStart + Random?posted in Questions & Answers
Ah ... interesting ... so it is more practical to operate with several currency pairs at the same time through the MT5?
Just by using the Set "Current Market" Block for next blocks?
-
RE: Delete objects after deleting Expert Advisor chart.posted in Questions & Answers
Still the problem.
Be ... I took the chart EA but still the objects of information. -
RE: MagicStart + Random?posted in Questions & Answers
__For MT5 as you know, 1 position per symbol is allowed. I guess that it's not possible to have 2 separate EAs under the same symbol. At least until now, I am talking for those classic positions. So for MT5 magic number does not really matter when it comes for positions[/quote:1r7k83sd]
Yes yes ... perfectly. I wonder if adding EA in one currency chart , but operate in different currencies at the same time with a magic number for each currency. -
RE: Delete objects after deleting Expert Advisor chart.posted in Questions & Answers
Hello fxDreema . It not worked . When I shot the chart EA, the data still appears, along with the spread on the bottom .
https://fxdreema.com/shared/XOtnbqVye -
RE: MagicStart + Random?posted in Questions & Answers
__But if you add the same EA in two different symbols with the same magic numbers, this is not a problem because the default setting in all blocks like "No trade" are to work with the current symbol only./quote]
Interesting. I did not know that. I was changing the magic number for each chart.
I am also planning to create a multicurrency putting EA in one chart, and I'm searching here in the forum a way to do this that does not give conflict between currencys.
So in this case if you open a position in EURUSD (using the block No position, for example), and give a signal on GBPUSD, this new position will not be opened because it is still open a position on EURUSD, that, even though in other currency?
-
RE: Delete objects after deleting Expert Advisor chart.posted in Questions & Answers
Hello fxDreema.
How do I delete objects after deleting the graph EA?
I'm using objects 'Comment' block. -
RE: Profitability annual, monthly and yearlyposted in Questions & Answers
Ok. Add a comment block for each bucket block.
https://fxdreema.com/shared/XyTRsa7edThis happening the following errors:
Very digits after the point. I could only have 2 digits after the decimal point in the results.
Average Profit with value equal to the Total Profit.
Count: Displays number of positions currently open or all opened in total? For this appearing only 1, but were open many positions.
Profit: Showing only the result of the last position and not the sum of all of them during the period.
-
RE: Profitability annual, monthly and yearlyposted in Questions & Answers
I finished doing. You have some my mistake?
Is not showing the values of Bucket of Closed Trades blocks.
https://fxdreema.com/shared/IqFjXiy5 -
RE: Profitability annual, monthly and yearlyposted in Questions & Answers
Okay. Thanks for the add Bucket block. I'll be doing tests.
More information about hedge in MT5.
https://www.mql5.com/en/articles/2299 -
RE: Profitability annual, monthly and yearlyposted in Questions & Answers
Okay fxDreema. That happens! Forget about a block among many, it is acceptable.
I will be awaiting this bucket block.
Ah ... now MT5 is almost equal to the MT4, it will accept Hedge operations. This complete for me. Not to mention also that the backtest is faster than the MT4, the pause for the test, test forward, etc.
I need it so you do not look for external data, such as in MQL5, myfxbook, etc, and just having the information on the chart.
I need only one year of data. From January to December. If possible in previous years, the better. -
RE: Profitability annual, monthly and yearlyposted in Questions & Answers
__Then try Bucket of Closed Trades. You'll find Time A and Time B settings in this block, and those settings have multiple formats to input time data. Clear Not more than N trades or set it to 0, because you don't know how much trades there are in a whole month. The blocks should only select those closed trades that were closed between Time A and Time B. Then in **Condition **or Comment you will find the Bucket category and you will get the calculation from there[/quote:3317gek0]
Okay. But I can not find the Bucket in MT5 project. -
RE: Profitability annual, monthly and yearlyposted in Questions & Answers
Okay. Can be used on Trade, not needing to be in on Tick.
I do not need instantaneous results, but only the closed positions.
I want to know the result of January for example. How would it be? It's on February?
How do I use this data within the block Comment? -
RE: Profitability annual, monthly and yearlyposted in Questions & Answers
Hello fxDreema.
I found the Bucket block for projects in MQL5. In this case, as I do to comment on current, monthly and annual profitability?Would you show me a sample project?
-
RE: Stop ATRposted in Questions & Answers
__So ... that way it worked! Thanks!
But look at it this way: https://www.mql5.com/en/docs/runtime/te ... torrelease
Hide the indicator?To prohibit the showing of the indicator on the chart after testing, call the IndicatorRelease() with the handle of the indicator in the handler OnDeinit(). The OnDeinit() function is always called after the completion and before the showing of the testing chart.
//+------------------------------------------------------------------+ //| Expert deinitialization function | //+------------------------------------------------------------------+ void OnDeinit(const int reason) { //--- bool hidden=IndicatorRelease(handle_ind); if(hidden) Print("IndicatorRelease() successfully completed"); else Print("IndicatorRelease() returned false. Error code ",GetLastError()); }In order to prohibit the showing of the indicator on the chart, after the completion of a single test, use the function IndicatorRelease() in the handler OnDeinit().
IndicatorRelease() https://www.mql5.com/en/docs/series/indicatorrelease
OnDeinit() https://www.mql5.com/en/docs/runtime/event_fire#deinit[/quote:8xh62xxu]Well ... anyway this is the solution described in MQL5. If I knew more programming I could even help fxDreema community.
-
RE: INVISIBLE INDICATORS?posted in Questions & Answers
Yes ... so I ask because I knew that the blocks below the block off will not work.
I just followed what you said and copied to test in my EA tests. -
RE: INVISIBLE INDICATORS?posted in Questions & Answers
__Indicators will show if the EA uses them. If the block where certain indicator exists is never reached, then this indicator does not appear. This is how MetaTrader works. Try this with disabled or enabled Pass - https://fxdreema.com/shared/hNRDI8uW[/quote:1s7mp1nf]
Okay. But if you disable Pass, the block below will work anyway?
Interesting ... for me it worked, but partially. SL based on ATR did not work.
https://fxdreema.com/shared/mDp70G7le