You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
bad news:
1. I found a bug preventing from getting more than 91 deal over a year. Time for orders 1 was 9:00 instead of 09:00
2. After fixing this bug results of optimization and normal backtest differ greatly...
So before I find a reason for this I would not recommend anyone to use this EA with a real account.
In case I stop replying: I have some work to do for the uni during the upcoming 2 months including my diploma and lots of stuff. I'll be busy most of the time but I hope I'll have some during weekends.
I've got good news and bad news.
The good news is that I found the bug. I used 9:00 instead of 09:00 and that led to less orders. After fixing that everything came back to order. I'll have to re-write the EA completely to fix this problem with numbers but that needs to be done in any case.
The bad news is actually horrific. I've been optimizing at H1 timeframe and results... to make it short I'll have to spend another few days re-optimizing at M30 timeframe because M30 gives better results. Hopefully new optimization won't need an indicator and will include optimization of starting time as well so I won't waste another 3 days (can't really use my pc because of it)
I got some positive results but drawdown is rarely less than 30% and when it is, there isn't much profit (you'll get more from a bank deposit). There are some positive results for H1 with good profits but drawdown is around 40%.
For those who like high risks:
TP 350-400
SL 70, 100-250 (it was never hit anyways)
No-profit level (UrovenBezubytka) 15 (the only reason why drawdown was lower than 60%)
Trailing stop 95-100 (don't tighten it up or you'll lose money. I'll try to make it tighter only during no-trade hours)
Starting time 1 09:00 (not 9:00)
Starting time 2 15:00
MMRiskFactor 0.1 (every trade's size is 10% from current depo size)
PS: sorry for double-posting
My Manual Settings
Hi.. this is my manual setting of this three system... hopes we can improved all of this combination together..
TIMEFRAME – 30 MIN
PAIR – GU, EU, UJ, UCHF, GJ
INDICATOR
EMA – 50 & 120 = BBANDS STOPS v1
PIVOT BAINS = HEIKEN ASHI
GMACD_SIGNALS = DIGISTOCH
STEPMA = KUSKUS_STARLIGHT
STEP MA NINA = DOJI STAR
DOLLY TRADING TIMES
RULES
LEVEL 1 ( STANDARD)
BUY
BBANDS BLUE, ASHI BLUE, STARLIGHT BLUE, GMACD AND
DIGISTOCH TF4HOUR & DAILY GREEN, CANDLE OPEN ABOVE EMA
50 AND STEP MA NINA BLUE.
SELL
BBANDS RED, ASHI RED, STARLIGHT RED, GMACD AND
DIGISTOCH TF4HOUR & DAILY RED, CANDLE OPEN BELOW EMA
50 AND STEP MA NINA RED.
TAKE PROFIT AND STOP LOSS
TP 40-50 PIPS = SL 40-50 PIPS
LEVEL 2 ( ADVANCED )
BUY
BBANDS BLUE, ASHI BLUE, STARLIGHT BLUE, GMACD AND
DIGISTOCH TF30HOUR & HOURLY GREEN, AND STEP MA NINA
BLUE.
SELL
BBANDS RED, ASHI RED, STARLIGHT RED, GMACD AND
DIGISTOCH TF30HOUR & HOURLY GREEN, STEP MA NINA RED.
TAKE PROFIT AND STOP LOSS
TP- 15-20 PIPS = SL- 20 -30 PIPS OR PIVOT BAIN LEVELS
GOOD LUCK...
dolyisakasnina.rar
Hello Zeman, is this settings correct?
GMACD(8/17/9)
DIGISTOCH(8/3/3)
Hello Zeman, is this settings correct?
GMACD(8/17/9)
DIGISTOCH(8/3/3)its standard setting.. try ask dolly expert which one is the best setting on that..
Thank you Zeman for posting your setting here ... I can not do much now I got some exams to prepare for ... but for those who likes to read and have time to learn about EAs .. go to those sites .. it has some good info
https://www.mql5.com/en/articles/mt4/examples
This an EA and how its written
https://www.mql5.com/en/articles/1510
https://www.mql5.com/en/articles/mt4/tester
finally this link has a video from patrick who works for interbankfx you need to register to see the video .... simply go to interbankfx site and go to fourm and register there you will end up in the same link
http://www.patricknouvion.com/IBFX/viewtopic.php?t=376
By the way I have not tried to ask Patrick for any fav, cause I am sure he is overloaded.. I don’t think he works for free cause this is what he does programming .. I presume he charge per hour .. this is only for the info
Hi, I have one request.
Please, can you modify Goblin_BiPolar_Edition2modH_TP100.mq4,
remove
Turbo_JMA.mq4
Turbo_JRSX.mq4
Turbo_JVEL.mq4
and add
ISAKAS
kuskus_starlightv2.mq4
Heiken_Ashi_kuskus2.mq4
BBands_Stop_v1_with_alert.mq4
and
GMACD_Signals.mq4
???
Trade only ISAKAS signal with direct GMACD H1 and H4 or H4/D1
EA and indicators here:
https://www.mql5.com/en/forum/175290/page47
Need only modify
//========================= And here's the lovely Buy/Sell Signal Generator ======================
int OpenOrdersBasedOnTrendRSX()
{
int SignalOrderType = 3;
double rsxcurr = 0,rsxprev1 = 0,rsxprev2 = 0,jma1 = 0,jma2 = 0;
rsxcurr = iCustom(Symbol(), Period(), "Turbo_JRSX", 17, 0, 1);
rsxprev1 = iCustom(Symbol(), Period(), "Turbo_JRSX", 17, 0, 2);
rsxprev2 = iCustom(Symbol(), Period(), "Turbo_JRSX", 17, 0, 3);
jma1 = iCustom(Symbol(), PERIOD_M15, "Turbo_JMA", 28, -100, 0, 2);
jma2 = iCustom(Symbol(), PERIOD_M15, "Turbo_JMA", 28, -100, 0, 3);
UpTrendVal = iCustom(Symbol(), Period(), "Turbo_JVEL", 17, -100, 0, 1);
DnTrendVal = iCustom(Symbol(), Period(), "Turbo_JVEL", 17, -100, 1, 1);
TrendVal = UpTrendVal + DnTrendVal;
// Let's check our very reliable super secret mega-signal...
if (MathAbs(jma1 - jma2) / Point > 2.0)
{
if (jma1 < jma2) SignalOrderType=1;
if (jma1 > jma2) SignalOrderType=2;
}
// Welp, our mega-signal says no cigar...let's see what trusty 'ol RSX has to say...
if (SignalOrderType == 3)
{
if (UseConservativeRSX_Signals)
{
if (rsxcurr < rsxprev1 &&
rsxcurr < 70 &&
rsxprev1 > 70 &&
TrendVal < (-0.01))
{
SignalOrderType=1;
} // we only go short on RSX downturns
if (rsxcurr > rsxprev1 &&
rsxcurr > 30 &&
rsxprev1 < 30 &&
TrendVal > 0.01)
{
SignalOrderType=2;
} // we only go long on RSX upturns
}
if (!UseConservativeRSX_Signals)
{
if (rsxcurr < rsxprev1 && TrendVal < (-0.01)) SignalOrderType = 1; // we only go short on RSX downturns
if (rsxcurr > rsxprev1 && TrendVal > 0.01) SignalOrderType = 2; // we only go long on RSX upturns
}
}
return(SignalOrderType);
}
Cool, if by any chance someone gets motivated today and finishes the Mods, please post it I'm excited to see all these merged I'm going to forward test another EA starting today.SilverTrendv3 and would like to test a few more along side it.
Thank you
too much study ... so I took a break to modify the fisher and makes it looks like KusKus starlight
You may need to compile it if it shows thick stars to over write the old exe
ANCOLL ...I will repace the file in the template and upload it again... now its ready the template is on post #4 on the first pageMiniMe,
Feel free to update your first post on the first page, coz I have reserved the place for you to do so.
This week, I will fully do a forward test for DIN trading system.
IMO, DIN trading system is the best name for this one (DIN = Dolly + Isakas + NiNA)