Fratelli EA by Dragos and magft

Post Reply
MickyMouse
Trader
Posts: 36
Joined: Sat Nov 26, 2011 9:42 pm

Re: Fratelli EA by Dragos and magft

Post by MickyMouse »

hi guys... and girls :oops:


if (MACD1 > (0+2*Point) || MACD0 >= (0+2*Point)) MACD = up;
if (MACD1 < (0-2*Point) || MACD0 <= (0-2*Point)) MACD = down;

please modify the ea . dont use any more buffer for macd . up is up and down is down :D
as in above 0 is up, bellow 0 is down D:
magft
Trader
Posts: 195
Joined: Tue Nov 15, 2011 9:59 pm
Location: East Midlands, UK

Re: Fratelli EA by Dragos and magft

Post by magft »

MickyMouse wrote:hi guys...


if (MACD1 > (0+2*Point) || MACD0 >= (0+2*Point)) MACD = up;
if (MACD1 < (0-2*Point) || MACD0 <= (0-2*Point)) MACD = down;

please modify the ea . dont use any more buffer for macd . up is up and down is down :D
as in above 0 is up, bellow 0 is down D:
Thanks for the update, currently fixing a few issues.

There is an obvious copy and paste error in LookingForTradingOportunities()

Code: Select all

//Short
   //if ((((Open[1] > MAVal && Close[1] <= MAVal) || (Close[2] > MAVal && Open[1] <= MAVal && Close[1] < MAVal)) && trend == down) 
   //|| (Close[1] <= MAVal && direction == down) && ArrowBar>LastOrderTime)// && Open[1] > MAVal)
   if(Close[1] < MAVal && MACD == down && Signal == down && direction == down && (ArrowBar>LastOrderTime||SARSignal==down))
   //if(Close[1] < MAVal && MACD == down && Signal == down && direction == down && SARSignal==down)
   {
      if (!TradeShort) return;
      //if (Close[1]>Open[1]) return;
            
      type = OP_SELLSTOP;
      //Check if use HighLow or just Close
      if (UseHigh_Low) price = NormalizeDouble(High[2] - (SellBufferPips*Point),Digits);
      else price = NormalizeDouble(Close[2] - (SellBufferPips*Point),Digits);
Should have the High[2] replace with Low[2]

Code: Select all

//Short
   //if ((((Open[1] > MAVal && Close[1] <= MAVal) || (Close[2] > MAVal && Open[1] <= MAVal && Close[1] < MAVal)) && trend == down) 
   //|| (Close[1] <= MAVal && direction == down) && ArrowBar>LastOrderTime)// && Open[1] > MAVal)
   if(Close[1] < MAVal && MACD == down && Signal == down && direction == down && (ArrowBar>LastOrderTime||SARSignal==down))
   //if(Close[1] < MAVal && MACD == down && Signal == down && direction == down && SARSignal==down)
   {
      if (!TradeShort) return;
      //if (Close[1]>Open[1]) return;
            
      type = OP_SELLSTOP;
      //Check if use HighLow or just Close
      if (UseHigh_Low) price = NormalizeDouble(Low[2] - (SellBufferPips*Point),Digits);
      else price = NormalizeDouble(Close[2] - (SellBufferPips*Point),Digits);
I have done a few other fixes for the next version but that is quite an important one!! The EA is steadily making profit everyday so cant complain :mrgreen:

Mike
MickyMouse
Trader
Posts: 36
Joined: Sat Nov 26, 2011 9:42 pm

Re: Fratelli EA by Dragos and magft

Post by MickyMouse »

you guys are doing a great job keeping it updated and not discontinued..
congrats on that ...
User avatar
DING
Trader
Posts: 103
Joined: Wed Nov 16, 2011 11:53 am

Re: Fratelli EA by Dragos and magft

Post by DING »

my testing upgrade to Fratelli V2.6 yesterday, But so quiet today , not open any order till now,
what wrong for me? :?:
magft
Trader
Posts: 195
Joined: Tue Nov 15, 2011 9:59 pm
Location: East Midlands, UK

Re: Fratelli EA by Dragos and magft

Post by magft »

DING wrote:my testing upgrade to Fratelli V2.6 yesterday, But so quiet today , not open any order till now,
what wrong for me? :?:
Not sure, i have had loads of trades today including catching the ride up on the EU. Do you have the smiley face in the corner?
magft
Trader
Posts: 195
Joined: Tue Nov 15, 2011 9:59 pm
Location: East Midlands, UK

Re: Fratelli EA by Dragos and magft

Post by magft »

Update in post #1
Xfinity
Trader
Posts: 19
Joined: Thu Nov 17, 2011 4:43 pm
Location: Sweden

Re: Fratelli EA by Dragos and magft

Post by Xfinity »

Cheers, will test it asap. Is there any other file besides the ones in the first post I need? I am going to set-up a new computer to test more bots. Thanks!
magft
Trader
Posts: 195
Joined: Tue Nov 15, 2011 9:59 pm
Location: East Midlands, UK

Re: Fratelli EA by Dragos and magft

Post by magft »

Xfinity wrote:Cheers, will test it asap. Is there any other file besides the ones in the first post I need? I am going to set-up a new computer to test more bots. Thanks!
Nope, unless you want to visually test the EA as well then you need all the indicators from the Fratelli thread.
Xfinity
Trader
Posts: 19
Joined: Thu Nov 17, 2011 4:43 pm
Location: Sweden

Re: Fratelli EA by Dragos and magft

Post by Xfinity »

Thanks for the quick reply, it looks a little nicer now - I was in the process to add all indis I had on my main computer.
blahn
Trader
Posts: 53
Joined: Wed Nov 30, 2011 2:39 am

Re: Fratelli EA by Dragos and magft

Post by blahn »

Here's the last 5 or 6 hours of 2.7s POs compared to the main indi. about 50 percent of the Pos match the main indi.
au27.gif
eu27.gif
ej27.gif
You do not have the required permissions to view the files attached to this post.
Post Reply

Return to “Automated trading systems”