Single Candle Template
Posts made by GrowTru
-
RE: How can we define a hammer candle??????????????posted in Questions & Answers
-
RE: How to run the same EA on two metatraders?posted in Questions & Answers
Interesting, so each trade must have the magic number attached to the order number somehow but we can't see this. Useful to know.
-
RE: How to run the same EA on two metatraders?posted in Questions & Answers
My assumption was that if you ran the same EA on 2 charts with different magic numbers, but used the "no trade" exists block, then the EA would check your account and see there was a trade already in existence despite it being produced by the EA with a different magic number because the account is a singular entity. I may be wrong on this.
If I'm right then you could get round this by having each EA keep track of what's going on with the chart rather than the account. When the "buy now" block is executed it could add 1 to a variable so you know a trade exists, subtract 1 when closed. More complicated with SL and TP because a block isn't passed when these occur, perhaps look at current objects on the chart...
-
RE: Does your fxDreeema work properly for both Live and Demo accounts?posted in General Discussions
This is probably just the difference between a demo and live account and nothing to do with the EA. You don't say how your EA works, with regard to time frames but if it's trying to operate on tick data and scalping then I'm not surprised there's a big difference. With a demo there's no real money involved, orders can be executed whenever required and at any lot size. With a real account your order has to be filled with another party. If you wish to buy, someone else needs to sell. Slippage becomes a significant factor. Could be other reasons as well but without more details I can only speculate.
-
RE: EA Optimization pass result is different when I backtest itposted in Questions & Answers
Sorry I don't, I gave up with MT5 because I had strange issues with it. Shame because it is much faster back testing with multi thread support but pointless if the results are unreliable.
-
RE: Save/Export to MT5 & View Generated Codeposted in Questions & Answers
First make sure you have created your project in fxdreema as an MT5 project and not MT4. Project, new project, select MT5.
If you didn't do this then there is a converter. https://fxdreema.com/converter
Open metatrader and click file, open data folder.
For MT4 open the folder MQL4, Experts
For MT5 open the folder MQL5, Experts, advisorsThis is where you save your files.
If you save a new expert advisor while metatrader is open you either need to refresh the list in the program or restart metatrader.
To view the code, right click the expert advisor in metatrader and click modify.
-
RE: EA Optimization pass result is different when I backtest itposted in Questions & Answers
They don't make it as easy to download history in MT5 as it is in MT4.
Press Ctrl+u
Click on bars or ticks at the top (depending on the accuracy you require)
Select currency
Enter the date range
Click requestIt may say that the results are limited, if so also check, "Tools", "Options" and increase the max bars in chart number. If you make this number too large with many charts you may find your computer slows down.
-
RE: compiling does not work what happened?posted in Questions & Answers
It may be something I just posted about in another thread, turn off adblocker.
-
Project won't compile, screen flashes or EA broken. PROBLEM SOLVED.posted in Bug Reports
Just wanted to share a simple fix for a problem I had.
If you use an adblocker you may need to disable it for fxdreema as the website now loads another tab to download the project.
Also if you are able to download the .mq4 but the file is broken when you go to test it in Metatrader 4 try downloading the .ex4 file instead. If you've made a mistake somewhere in your project an error message will show helping you to find the problem. This error message doesn't show when you download the .mq4
-
RE: Builder very slow.posted in Bug Reports
Same issue here, it does still seem to work if you give it time but it's very slow and sometimes won't load at all. The admin is usually pretty quick to fix issues (<24 hours) but due to different time zones they might not yet be aware of the problem.
-
RE: unable to download mq4/ex4 from webposted in Questions & Answers
same, judging by other forum posts it's been about 24 hours so far.
-
Desktop version "formula" block unable to enter variable or constantposted in Bug Reports
When using the formula block I can right click and add a constant or variable to be added or multiplied etc but when right clicking on the 'result' parameter the variable/constant window does not appear. This works for the online version but not desktop. Build 100
I have managed to make it partially function by typing in a variable name manually that isn't in use but then this doesn't work with other blocks as it doesn't exist according to them.
-
RE: Possibility for 1 week or 1 day subscriptionposted in General Discussions
I was wondering if you'd be interested in implementing a weekly or daily subscription, I find myself coming backwards and forwards to Fxdreema as and when I come up with ideas so I go for periods not using it.
-
RE: Modify Variables Block executed in order?posted in Questions & Answers
Just a quick question, I've read about how the block ID number can have an effect but are the 5 variables inside of the modify variables block executed in order so that the first variable can take the data from the 2nd **before **the 2nd is changed. Or would it be best to use multiple 'modify variables' blocks to achieve this.
Thanks
-
RE: Do you want "on Hold" event?posted in General Discussions
I can see a 'hold' option being useful to help visualise an EA on screen but the more I use your software the more I find there are many ways of achieving the desired results and I'm finding it's simply me needing to get my head in gear and think logically. So yeh a hold option could make some things easier for some people who as you said like to link blocks one after the other but isn't entirely necessary once you understand more how to use the program.