gctex Posted July 2, 2010 Report Share Posted July 2, 2010 Hi guys, 1) These are default settings I am seeing for mdpro_v101ee_bbr_v11_n1.ex4 : GmtOffset=0.00000000 AutoLocalGmtOffset=1 AutoServerGmtOffset=1 If GmtOffset is manually set as 0, should AutoLocalGmtOffset & AutoServerGmtOffset as true (ie 1) ? 2) To set High Impact News as 600/600, I just need to set both MinsUntilNextHighNews & MinsSincePrevHighNews as 600, right? Thanks Quote Link to comment Share on other sites More sharing options...
noziggity81 Posted July 2, 2010 Report Share Posted July 2, 2010 AutoLocal and AutoServer should be set to 0 (off). Your using 0 for GmtOffset because your broker happens to actually "be" at GMT exactly. But for those of us who use brokers off of GMT (like Go Markets which is 2, and FxPro which is 3, for example) we'd use 2 or 3, rather than 0. In any event, you'd always set the autolocal and autoserver to 0 -- it may not work properly if you set them to 1 due to the way the EAs are educated, as I understand it. Thats why typically you are advised to go manual. As to 600/600, yes, thats correct. Hi guys, 1) These are default settings I am seeing for mdpro_v101ee_bbr_v11_n1.ex4 : GmtOffset=0.00000000 AutoLocalGmtOffset=1 AutoServerGmtOffset=1 If GmtOffset is manually set as 0, should AutoLocalGmtOffset & AutoServerGmtOffset as true (ie 1) ? 2) To set High Impact News as 600/600, I just need to set both MinsUntilNextHighNews & MinsSincePrevHighNews as 600, right? Thanks gctex 1 Quote Link to comment Share on other sites More sharing options...
gctex Posted July 2, 2010 Report Share Posted July 2, 2010 Thanks a bunch, noziggity81 ... appreciate the explanation ... it is working just fine ... I am kind of curious to know what the following logic means in Mdpro_v101ee_bbr_v11_n1.mq4 ... if you don't mind could you please explain ? ... 1) if(my_symbol != "EURUSD" && my_symbol != "EURCHF" && my_symbol != "EURGBP" && my_symbol != "USDCHF") { if (Logic == 1) my_symbol = "EURUSD"; if (Logic == 2) my_symbol = "EURCHF"; if (Logic == 3) my_symbol = "EURGBP"; if (Logic == 4) my_symbol = "USDCHF"; } My understanding is this : if the symbol traded is NOT EURUSD and NOT EURCHF and NOT EURGBP and NOT USDCHF then if Logic = 1 then symbol = EURUSD then if Logic = 2 then symbol = EURCHF then if Logic = 3 then symbol = EURGBP then if Logic = 4 then symbol = USDCHF So if I trade GBPUSD and set Logic = 4 then will it be treated as USDCHF ??? 2) In the function S1_CheckSymbol(), for the symbol EURUSD, g_timeframe_256 = PERIOD_M15; All the rest of the symbols in S1_CheckSymbol() & S2_CheckSymbol() functions have g_timeframe_256 / g_timeframe_432 set as PERIOD_M5 ... these are correct, right? 3) Since the trade times are hard coded for various symbols, to make it trade for different times, I would need to set OverrideTradeTimes = true and use S1_StartHour, S1_EndHour, S2_StartHour & S2_EndHour accordingly, right? Thanks a lot again ! Quote Link to comment Share on other sites More sharing options...
vikram88 Posted July 2, 2010 Report Share Posted July 2, 2010 Hello Final Notice has a different version of news filter cf thread on Multivers download here http://www.multiupload.com/I7FGWW4R53 This news filter includes speeches Will modifying Megadroid with this filter improve performance Happy Pips Quote Link to comment Share on other sites More sharing options...
vikram88 Posted July 2, 2010 Report Share Posted July 2, 2010 Hello Final Notice has a different version of newsfilter Kindly see his modification available here hxxp://www.multiupload.com/I7FGWW4R53 This filter includes speeches Will using this filter improve performance If so can someone modify the EA Happy Pips noziggity81 1 Quote Link to comment Share on other sites More sharing options...
vikram88 Posted July 2, 2010 Report Share Posted July 2, 2010 Hi noziggity81 Thanks your posts and explanations Of the 11 setups u have posted can you please tell us which pair is the most profitable to date Happy Pips Quote Link to comment Share on other sites More sharing options...
dinj Posted July 2, 2010 Author Report Share Posted July 2, 2010 gctex: Nice read. You're just about right about your conclusions. vikram88: Don't worry about the speeches. This version of megadroid already includes them. But yeah, if it didn't have, it would improve performance by including them, i suppose. noziggity81 and gctex 2 Quote Link to comment Share on other sites More sharing options...
vikram88 Posted July 2, 2010 Report Share Posted July 2, 2010 gctex: Nice read. You're just about right about your conclusions. vikram88: Don't worry about the speeches. This version of megadroid already includes them. But yeah, if it didn't have, it would improve performance by including them, i suppose. Thanks dinj I am no programmer but if you download Multivers from the link posted above The news indicator is NCal instead of FCal Ncal Indicator has high, medium,low impact news as FCAl but also has Speeches included. Late evening US Time speeches by Fed Reserve board Chairmain drastically affects the US currency market. Scalpers like megadroid which trade early Asian hrs are affected The Megadroid version can be modified with this new indicator. It would be worth your time to download the the EA and see the indicator for yourself Happy Pips Quote Link to comment Share on other sites More sharing options...
dinj Posted July 2, 2010 Author Report Share Posted July 2, 2010 Thanks dinj I am no programmer but if you download Multivers from the link posted above The news indicator is NCal instead of FCal Ncal Indicator has high, medium,low impact news as FCAl but also has Speeches included. Late evening US Time speeches by Fed Reserve board Chairmain drastically affects the US currency market. Scalpers like megadroid which trade early Asian hrs are affected The Megadroid version can be modified with this new indicator. It would be worth your time to download the the EA and see the indicator for yourself Happy Pips Alright. Try this, vikram88 Open a random chart, then, up, click on Insert/Indicators/Custom/FFCal. Then, on the inputs, check the fourth one.... They both do the same job. Quote Link to comment Share on other sites More sharing options...
vikram88 Posted July 3, 2010 Report Share Posted July 3, 2010 Alright. Try this, vikram88 Open a random chart, then, up, click on Insert/Indicators/Custom/FFCal. Then, on the inputs, check the fourth one.... They both do the same job. Thanks dinj Ok The Indicator has it but does the EA Filter the speeches automatically or one has to turn of the EA manually when there is a speech. In Multivers EA the code is bool CheckNews() { if (NewsFilter) { int MinsAftHi = iCustom(NULL, 0, "NCal", TRUE, FALSE, FALSE, IncludeSpeech, DrawNewsLine, 1, 0); int MinsBefHi = iCustom(NULL, 0, "NCal", TRUE, FALSE, FALSE, IncludeSpeech, DrawNewsLine, 1, 1); int MinsAftMed = iCustom(NULL, 0, "NCal", FALSE, TRUE, FALSE, IncludeSpeech, DrawNewsLine, 1, 0); int MinsBefMed = iCustom(NULL, 0, "NCal", FALSE, TRUE, FALSE, IncludeSpeech, DrawNewsLine, 1, 1); int MinsAftLo = iCustom(NULL, 0, "NCal", FALSE, FALSE, TRUE, IncludeSpeech, DrawNewsLine, 1, 0); int MinsBefLo = iCustom(NULL, 0, "NCal", FALSE, FALSE, TRUE, IncludeSpeech, DrawNewsLine, 1, 1); but in Megadroid there is no such code Thanks gctex 1 Quote Link to comment Share on other sites More sharing options...
vikram88 Posted July 3, 2010 Report Share Posted July 3, 2010 Hey noziggity81 My 2 cents worth Md Pro v1.01N1 ee on USD/JPY I have backtested this with news filter off and compared with aggressive turned off and on I find aggressive on gives better results I have read the criticism on backtest on the forum however I am not downloading historical data from server but from broker Please cf Nightfox manual for full details Secondly I am comparing 2 backtests and thus all the flaws in will cancel each other I am not comparing backtest with forward test Also I have set Auto Local GMT Offset to True, Auto server GMT to True, Override Trade Times to True And all Start Times to 19 and all close times to 22 Similarly On EUR/USD I find MD 1.21N1 no dll gives better results than Md Pro v1.01N1 ee with aggressive off Happy Pips noziggity81 1 Quote Link to comment Share on other sites More sharing options...
dinj Posted July 4, 2010 Author Report Share Posted July 4, 2010 the speeches are always filtered Quote Link to comment Share on other sites More sharing options...
vikram88 Posted July 4, 2010 Report Share Posted July 4, 2010 Thanks dinj Quote Link to comment Share on other sites More sharing options...
noziggity81 Posted July 4, 2010 Report Share Posted July 4, 2010 Hi vikram88: Thank you for your input. We've heard previously from dinj, back at the start of this thread, something similar re: aggressive mode showing better backtest results. I honestly am not sure, myself. There seems to be mixed opinions on this. I think, however, we can frame the conversation in terms of "good vs. very good" results possibly, rather than "bad vs. good" -- so, in other words, if aggressive mode improves results, its already improving on good results with it turned off, as well. What a refreshing change from the conversation re: most other robots! I may eventually experiment with aggressive. Keep in mind that the table I pasted (with aggressive off) is based on theozaki's settings, and his results of 3+ months of live forward testing showing an 85-90% win rate. I feel a sense of confidence going by what he has to say based on his overall contributions and my limited testing thus far on my own accounts. I encourage you to forward test on demo or live with your modifications (19-22, aggressive on) and report back to us from time to time on how N1 is working with those settings. :) Hey noziggity81 My 2 cents worth Md Pro v1.01N1 ee on USD/JPY I have backtested this with news filter off and compared with aggressive turned off and on I find aggressive on gives better results I have read the criticism on backtest on the forum however I am not downloading historical data from server but from broker Please cf Nightfox manual for full details Secondly I am comparing 2 backtests and thus all the flaws in will cancel each other I am not comparing backtest with forward test Also I have set Auto Local GMT Offset to True, Auto server GMT to True, Override Trade Times to True And all Start Times to 19 and all close times to 22 Similarly On EUR/USD I find MD 1.21N1 no dll gives better results than Md Pro v1.01N1 ee with aggressive off Happy Pips vikram88 1 Quote Link to comment Share on other sites More sharing options...
vikram88 Posted July 4, 2010 Report Share Posted July 4, 2010 Hey noziggity81 Thanks Your encouragement I have put both on live now Lets compare notes and see which is the better way to go Happy Pips PS Aggressive on only on USD/JPY whilst EUR/USD on Md1.21 no dll Quote Link to comment Share on other sites More sharing options...
vikram88 Posted July 6, 2010 Report Share Posted July 6, 2010 My Trades today USD/JPY 2trades of 3 pips profit each ie total of 6 pips EUR/USD no trades Quote Link to comment Share on other sites More sharing options...
noziggity81 Posted July 6, 2010 Report Share Posted July 6, 2010 My trades today consisted of one whopping 42 dollar loss on eur/usd using ADT +5 (2:00-4:00 GMT) and several 1-3 pip smaller wins totaling approximately $10-15. So about a $25 total loss from this EA today. Second "real" loss, however, in the entire time ive been reporting on this thread -- and it was during a non-sanctioned timeframe (one not consistent with theozaki's methods of 20-23 for EURUSD). So ive decided to focus on getting the settings right with theo's times to retire the +5 trading, so now im back to the 10 original pairs without the second ADT EURUSD anymore. I cave easily :P Second point to bring up -- in terms of spread control, what is everyone using? -1, 0, or a specific value? ive been using -1 which means as i understand it that its essentially off. A tad bit risky, but as we've seen with only 2 losses and profits exceeding losses in total, it hasnt been an issue yet. Im wondering if anyone has a suggestion of a "limit" for all 10 pairs being traded (refer to my chart previously) -- a spread limit, that is. Finally -- dinj -- can u elaborate a little on aggressive mode. You did some backtesting on it. I am currently just starting forward testing it for tomorrow's scalping session, but I was intrigued that you found it was significantly more profitable with minimal risk added... is it just basically (assuming recovery is off) 15 pips instead of 10 for TP? Is SL effected? What is your opinion, or anyone's, on using aggressive (WITHOUT RECOVERY ON)? If the main difference is 10 vs. 15 pips scalped, I could see how the risk/reward might be skewed more favorable at 15/40 rather than 10/40 and perhaps that explains why it works better over the longer term... but in the backtesting, do you find more "dips" of losses that would make, for those of us somewhat queasy by strings of losses, a bit uncomfortable with using that mode? In other words, is the equity curve really bumpy with aggressive on? Cheers! Quote Link to comment Share on other sites More sharing options...
dinj Posted July 6, 2010 Author Report Share Posted July 6, 2010 (edited) Hi noziggity, The reason I recommended Aggressive mode was because I did a 10 years backtest with and without it. Obviously, you get more profit with it ON, but that doesn't mean it's more profitable. So I check the drawdown in both cases and that's what made me think it was more profitable, as you get just a little bit more drawdown for a substancial increase of profit. I'm assuming you have it off, as this night I got a stoploss on megadroid eurusd and you didn't. I did a backtest of one day and I checked it was caused by the aggressive strategy. Now, you can take that both ways. One, you wouldn't get it on non-aggressive mode, so it's better to have it off, but two, you're missing the takeprofit ones also, so it's hard to tell just by this stoploss. It might happen next time a stoploss by the original strategy getting reduced by some profit trades by the aggressive one. I'll keep it on unless i start having more losses. Btw, the backtest's curve is smooth wither with it on or off, the stoplosses of those extra trades don't usually coincide with the original ones. Another thing, and related to that loss of the aggressive strategy, i don't think i was the only one. Yesterday was a Bank Holliday in USA. Does someone think it might have something to do with that? The thing is, I don't know how that works, and it would be cool if someone could explain me. My guess is, if it's a bank holliday, the banks are closed in US, then there is less liquidity, maybe more volatility, and the spread is higher. BUT, the banks close, I guess, max at 4pm ET/EST, which in GMT is 8PM. Megadroid, though, trades from 9PM to 11PM GMT, I think, so the banks in US would be closed anyway, making me assume that a bank holliday in US doesn't affect megadroid then, or does it? Does someone have an opinion on this, cause I'm a bit of a newbie on how the currencies flow. Edited July 6, 2010 by dinj Quote Link to comment Share on other sites More sharing options...
rex68 Posted July 6, 2010 Report Share Posted July 6, 2010 Anyone hit SL on EURJPY last night? 10930050 2010.07.06 01:55 buy 0.20 eurjpy 109.904 109.474 110.404 2010.07.06 02:31 109.474 0.00 0.00 0.00 -98.26 Ouch! Quote Link to comment Share on other sites More sharing options...
vikram88 Posted July 6, 2010 Report Share Posted July 6, 2010 (edited) Hey dinj Megadroid os scalper and trades Asian Markets where volatility is low Without ADT the default trading hours are GMT 20 to 23 (Just do a backtest and see the the times it opens the trades) GMT 20-23 is EST 16-19 and american banks are not closed yet Hey noziggity81 RE Max Spread Settings depends on the broker If Broker is fixed spread then specific value is the way to go. I am using 0 ie the default at IBFX Happy Pips Edited July 6, 2010 by vikram88 Quote Link to comment Share on other sites More sharing options...
huuu Posted July 6, 2010 Report Share Posted July 6, 2010 Anyone hit SL on EURJPY last night? 10930050 2010.07.06 01:55 buy 0.20 eurjpy 109.904 109.474 110.404 2010.07.06 02:31 109.474 0.00 0.00 0.00 -98.26 Ouch! I did, on gomarkets as well, ouch indeed! Quote Link to comment Share on other sites More sharing options...
dinj Posted July 6, 2010 Author Report Share Posted July 6, 2010 Hey dinj Megadroid os scalper and trades Asian Markets where volatility is low Without ADT the default trading hours are GMT 20 to 23 (Just do a backtest and see the the times it opens the trades) GMT 20-23 is EST 16-19 and american banks are not closed yet Hey noziggity81 RE Max Spread Settings depends on the broker If Broker is fixed spread then specific value is the way to go. I am using 0 ie the default at IBFX Happy Pips I guess you're right about banks trading forex until later. I thought the banks closed earlier, like in Europe, at 3pm local time. Maybe they do, but even here the forex markets seems to close later than the banks themselves. I found this: http://www.forexmarkethours.com/ A lot probably already know that, but I wasn't sure about the hours. In any case, the New York session ends at 5pm est, or 9pm GMT. The loss trade of eurusd was opened at 10:58pm, but still, I wondered if the Bank Holiday had something to do with that. Do you guys trade asian session scalpers on us bank hollidays? Quote Link to comment Share on other sites More sharing options...
vikram88 Posted July 6, 2010 Report Share Posted July 6, 2010 Hey dinj for EUR/USD I am using Md1.21N1 nodll bbr121-1 and I did not get any trade thus no loss Quote Link to comment Share on other sites More sharing options...
rex68 Posted July 6, 2010 Report Share Posted July 6, 2010 Hey Vik, do you just trade EURUSD (1.21) and USDJPY - aggresive (Pro 1.01ee)? Much thanks! Hey dinj for EUR/USD I am using Md1.21N1 nodll bbr121-1 and I did not get any trade thus no loss Quote Link to comment Share on other sites More sharing options...
vikram88 Posted July 6, 2010 Report Share Posted July 6, 2010 Hi Rex Just started this week only these 2 pairs Maybe later will add pairs or increase lot size USD/CAD on 1.21 looks promising but i am not trading yet Happy Pips Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.