For each Trade
-
Hi
I'm really struggling with this block. It consumes my PC for hours in any one month back testing. If I use 'For Each Trade' > 'Pips away from take profit' > 'Modify stops'...it carries out 3 million trades per fortnight (backtesting). My PC can't take it and falls in a heap. Its ridiculous. Why does it do this? How can I make it more efficient?
-
By the way you don't need any of the "AND" blocks you use.
Hours for 1 month testing doesn't sound normal for me. I can see this in one of your projects: http://prntscr.com/cbv6m1 Blue blocks doesn't need pink blocks to work. In this case you don't need the pink blocks, because the Trailing stop block has the loop, the filters and everything inside. Trailing stop block is like multiple pink blocks into 1 block.
-
Thanks admin. I'm getting the hang of it. Fantastic tool and has saved me and many others lots of money in developers.
Why is there no volume indicator included ? And how best would I include support and resistance levels? Ie, rather than = < or > conditions, could you include <> within certain pips channel. If 2 candle lows are similar and a floor has been hit, I'd like to use that but currently I'd have to code it.
-
I don't know, I can't find Volumes indicator in MQL4's indicators list: https://docs.mql4.com/indicators Not even in the Indicators folder.
This <> is interesting idea, but I don't think I will make it. It can be dome with two Condition blocks. -
How can within <> be achieved with two conditions blocks?
The way I see it, you can have one condition whereby candle 2 is compared to candle 1 (higher/lower/crossover etc...or different - god knows what different means btw). However, I can't see any way of coding higher but within x pips or lower but within x pips. The different option might do this but there is no description what 'different' means.
I'm trying to code something to detect resistance levels.....how would you do this?
Michael
-
Different means "not equal to", the opposite of "!=". These is no option to check that a value is between two limits in "Condition". Well, you can try "Indicator moves within limits", which I think with proper settings can do that