DislikedI have been using the original indicators with no issues, but it now works, thanks.
Ignored
4digit broker 10pip distance = 1.4410 - 1.4420
5digit broker 10pip distance = 1.44100 - 1.44110 (so only Pip for real)!
A Simple London Breakout V.2 1,490 replies
SIMPLE EA for a simple method needed!! 2 replies
Another Simple London Breakout System (with a twist) 46 replies
DislikedI have been using the original indicators with no issues, but it now works, thanks.
Ignored
DislikedIs there any way to modify the code to make it automatically work with both a 4 or 5 digit broker without having to change the input and add a 0?Ignored
double myPoint = MathPow(10, -1*Digits);
double myPoint = Point; if(Digits==3 || Digits==5) myPoint = 10*Point;
DislikedI'm sorry I just don't see where January was a bad month. Profit targets were hit over half of the time and I only saw, at the most, 3 losses in a row. But as I said several times now, martingale strategies are not designed for those who do not have the capital or account equity to back up the trades that are taken.
Ignored
QuoteDislikedafter 3rd loss- x13
QuoteDislikedThen we both agree .... 3 losses in a row and having to martingale at Quote:
after 3rd loss- x13
, and if that happens on two pairs .... that is martingale at x26 .... blindly ... No matter the account size, this is a lack of money management from my point of view.
QuoteDislikedThis code will do the trick:
PHP Code:
double myPoint = Point;
if(Digits==3 || Digits==5) myPoint = 10*Point[color=#007700];...
DislikedFrankfurt opens at 0600 GMT
London opens at 0700 GMT
This is due to Summer Time (DST)
This year, Summertime is from March 28 until October 31.Ignored
DislikedDepends on your broker's time. If you are on GMT +0 then it's 03:00 to 06:00. Or if your at GMT +3, then you'd put in 06:00 to 09:00. Just compare your Market Watch time to the actual GMT time here.Ignored
QuoteDislikedIt looks more good if I use 2GMT - 5GMT!