You can now make custom logic blocks, just hack the closest to your solution to fit the job
Posts made by Implosion
-
RE: Check last closed tradeposted in Questions & Answers
-
RE: Example MA with different settings stops workingposted in Questions & Answers
Its most likely your particular logic block setup so you need to post that here if you want help
-
RE: Forum goes offposted in Bug Reports
That usually means that the "old method" is no longer used by the software and you have to update to the "new method" So usually there is a version mismatch somewhere.
-
RE: write to file on MT5 projectsposted in Bug Reports
It should be "Data producing" logic block connected to the "write to file" block. Is this what you have done?
-
RE: Indicator OBVposted in Questions & Answers
I am not sure you can use candle 0 as the volume at open would be zero.
-
RE: Test object color...posted in Questions & Answers
The way I did a program for this type of problem was to add the indicator to "my indicators" then get the color to initiate the trade when the color buffer was executed in the indicator. It gets rid of all this on chart stuff which really may not execute that well anyway. If you have an array type indicator with RSI CCI etc, you may need to add it a few times and pick out the inputs and outputs you want to execute. Since you are creating a buy condition just using the std indicators with fxdreema may even work better and then once it's operational experiment with some fancier coding? In English we have a saying called KISS...I use on myself all the time

-
RE: Partial TP + Partial TP + Final TPposted in Questions & Answers
Your best bet would be to execute the stop loss and take profit as a custom level inside the buy now block. Also all your blocks numbers need to be in sequence otherwise it has to cycle through all the code once to execute. Area 2 is fine. you also need to set not more than N positions to 1 in the necessary logic blocks.
-
RE: MacD EAposted in Questions & Answers
@sirderrick822 said in MacD EA:
just put the cross above and below.
Yes. That's it if you have your buy and sell after the condition. Remember this is only the start...
-
RE: Allow the EA to trade dynamically on any 3 out of 5 charts loaded. How would I do this?posted in Questions & Answers
@fxDreema That's right the trades do not depend on the charts. That is correct.
Now my problem is I want to logically block the ticks from flowing to a EA which is on a particular chart when I have trades open on other charts. I want the magic number to stay the same as I calculate the profit across all the charts which are running the same magic number EA. I am thinking of a logic block which says this " Number of charts with open trades is less than" It would have all the usual filters you include like groups, specified market.
-
RE: Example explanation is inconsistentposted in Questions & Answers
" Now the first Condition will not run again until the second Condition passes. Instead, the second Condition will run on each tick until it passes and gives turn to the first Condition again." yes that is probably not correct.
-
RE: Same problem for me. I can't read bucket of trade totalsposted in Questions & Answers
See my answer in the previous post.
-
RE: Read an Email Message --> place a trade on my MT4/MT5 accountposted in Questions & Answers
I dont think this is possible in MT4 /5 directly. You could read a file string which just happens to be the last email in your inbox... https://docs.mql4.com/files/filereadstring
-
RE: Example explanation is inconsistentposted in Questions & Answers
The main point here is that a block only passes when it executes. So if you buy a trade it stays in the trade and nothing passes through the "buy now" block until the conditions are right for a "buy now". So you would add things like comments to the bottom of a "buy now block". You have to remember the first block in any FXDreema sequence is exposed to the flow of ticks from the broker and every block must be connected to one other block to work. You may have many, many first blocks on a FXDreema Tick page.
-
RE: Check last closed tradeposted in Questions & Answers
I'm thinking you need to be specific how the trade will close then, by stop? By take profit? Then enable an action when the trade closes, knowing in advance when it closes by a certain method the +20 pips is guaranteed.
-
RE: trace indicator: no values displayedposted in Questions & Answers
Your "my indicator' doesn't appeared installed properly. Check the directory and use the "uncompiled version" of the indicator when creating the indicator in FXDreema as a first priority. Also test how you are doing it.. put say 5 indicators into FXDreema and see if any work... Double check the buffers as they appear to be not sending data to FXDreema that's why you are getting zeros.
-
RE: compiling does not workposted in Questions & Answers
See my answer in the previous post. PS it's rude to tell a software engineer that it is a "bug" without testing and evaluating your own system first.
-
RE: Restricting EA from Taking Tradesposted in Questions & Answers
Ok here's how the logic goes... I am using the numbers written on the left side of your logic blocks to save time. Put a new logic block " no trade" 14,16 all in parallel, then 1 then 3. That should work. now renumber your logic blocks so that the ones closest to the top of the page have a lower number than the ones lower down the page. Rinse and repeat for sell. Get rid of the "and" logic block it's not needed.
-
RE: compiling does not work what happened?posted in Questions & Answers
I find chrome uses a lot of memory and if you have run out of memory on your computer the compile wont down load. So maybe try closing some tabs and various applications to free up some memory. You can also refresh the page as when you run out of memory sometimes computers behave erratically.