This is why I wrote post #13.
- Joined Jul 2011 | Status: Member | 8,028 Posts
If you trade like me, you'll be homeless and broke within a week.
TEXAS-2-STEP All Time Return:
17.4%
Simple easy LOPEN strategy (eurusd) 47 replies
Very simple EA open trade at open of next candle 3 replies
Simple break-out strategy for trading daily chart 19 replies
Creating a Simple Daily Open Price Strategy EA 1 reply
North Finance under DOS Attack 27 replies
Disliked{quote} That's a great question, to look even deeper, what is the 110 pips based on NOW? Just a random number that seems to work occasionally on some pairs, but will never give a signal on some pairs? Because as pointed out, volatility will affect the signals: therefore, the indicator should be based on that, usually expressed as ADR So the signal number needs to be a ratio of the ADR, maybe 1.5 times, maybe 2 times, or larger? Be great if that calculation could be included in the indicator posted, any chance of that? Seems you have done some testing,...Ignored
DislikedQuickly coded this for myself. Basic concept is nice and simple. Got potential indeed. My 2 cents: Leave fixed values aside (Input, TP and a possible SL) and use volatility based versions of daily (or any other desired TF) ranges. Next to that I encountered mentionable differences when using variable spread and slippage - which makes sense when making up your mind about it. You are always entering during the early asian session offering extreme low liquidity which will lead to partly heavy jumps in entry prices from time to time. This problem even...Ignored
DislikedQuickly coded this for myself. Basic concept is nice and simple. Got potential indeed. My 2 cents: Leave fixed values aside (Input, TP and a possible SL) and use volatility based versions of daily (or any other desired TF) ranges. Next to that I encountered mentionable differences when using variable spread and slippage - which makes sense when making up your mind about it. You are always entering during the early asian session offering extreme low liquidity which will lead to partly heavy jumps in entry prices from time to time. This problem even...Ignored
Disliked{quote} Perfect Drolph: Would you share your EA? I wolud like to backtest during weekend. Best regards, REnkoIgnored
DislikedHi everyone, If I got everything , can we code the conditions this way ? double MaxSpread = 4.0; // in Pips double Body_Size_1 = (NormalizeDouble(Close[1],Digits)-NormalizeDouble(Open[1],Digits))/Point; // Day TF double _close_1 = (iClose(NULL,0,1)); double _open_1 = (iOpen(NULL,0,1)); // for Buy if ( Body_Size_1 > 110 ) if ( _close_1 < _open_1 ) { Buy ( Blah Blah)} // for Sell if ( Body_Size_1 > 110 ) if ( _close_1 > _open_1 ) { Sell ( Blah Blah)} Is post #1 logic correct? Have a nice WE. Tomcat98Ignored
DislikedHi smilee89 My question is how are you able to follow so many pairs? Do you have a screen with all pairs on daily charts. I believe your strategy works but is it possible without an EA to manage all this trades?Ignored
DislikedThis strategy is so robust, sם that it is very easy to find good parameters to many pairs in different timeframes. I do still think the best for DOS is Daily bars, but for those who look for more risk and more trades per week/month/year, this can be an alternative option. Here is an example for EURUSD 1H bar Minimal Body Size = 75 2010-current {image} Same with Dollop (0.02 lot per 2K) {image}Ignored
Disliked{quote} I want to point out some problems which would stop me from using this. Having a single pair the overall risk/reward remains too bad. In your example you will get around 70% gain in 10 years. Although I get even slightly better results it is still far from what I am using live with my own systems. While the overall drawdown might be attractive for EURUSD here, you should not miss an important aspect. Even if it is not happening often, the cases where a recovery is necessary it might stay in drawdown for severall weeks or even months! At least...Ignored