RSI EXpert

 

hello Fellow Traders, this is my EA i developed last night.

I call it the RSI expert, based on 4 RSI's and two EMA's

have fun

make sure u use Tick modeling with 90% quality!

Files:
 

Thanks Don Perry,

I'll check it out!

moneyline

 

it makes an avg of .3 trades a day, that is one trade every three days....i'm gonna make an EA or modify this one so that it makes at least 4 trades a day, not .3..

it's a good EA though, just slow on trades

 
don perry:
it makes an avg of .3 trades a day, that is one trade every three days....i'm gonna make an EA or modify this one so that it makes at least 4 trades a day, not .3.. it's a good EA though, just slow on trades

I'll check it out!

I'am testing now your "cross angry miserable".

3 signals, 3 profits. (15m)

Coyan

 

hey, this EA is getting better and better, safer and safer.

use these settings

EURUSD

SL=18

TP=80

trailing SL = 20

MM=true

risk = 15

all other setting are stock

Files:
 

anyone want my EA can send mi a mail @ donperry1 [from]gmail.com

it has reached a point where i cant make it too public anymore.

i dont want some dude outside of this forum to google and find the Ea's and sign up just to get it..

what do u think people? this does not apply to my ea alone.

but then again, there is the elite section which i'm not apart of

 

Check your PM's Don.

 

----------------------------------------

file removed

 

Buy Sell Indicator.. help me with the coding

Hi Sir,

I have a problem with this.. THis is actually an Indicator... it shows when to open trade buy or sell.. But u have to open the trade manually.. it would be good if it is open automatically.. When it show sell it will open sell and TakeProfit at the Pips we already set.. Im sorry sir.. Im not good at doing MQL... can assist me to edit the said indicator? thanx sir... appreciate it so much..

//+------------------------------------------------------------------+

//| BuyOrSell.mq4|

//| BS |

//| Forex Trading Software: Forex Trading Platform MetaTrader 4 |

//+------------------------------------------------------------------+

#property copyright "Buy Or Sell"

#property link "http://www.metaquotes.net"

#property indicator_chart_window

#property indicator_buffers 2

#property indicator_color1 MediumSeaGreen

#property indicator_color2 Red

//---- buffers

double ExtMapBuffer1[];

double ExtMapBuffer2[];

//+------------------------------------------------------------------+

//| Custom indicator initialization function |

//+------------------------------------------------------------------+

int init()

{

//---- indicators

SetIndexStyle(0,DRAW_ARROW,0,1);

SetIndexArrow(0,233);

SetIndexBuffer(0,ExtMapBuffer1);

SetIndexEmptyValue(0,0.0);

SetIndexStyle(1,DRAW_ARROW,0,1);

SetIndexArrow(1,234);

SetIndexBuffer(1,ExtMapBuffer2);

SetIndexEmptyValue(1,0.0);

//----

return(0);

}

//+------------------------------------------------------------------+

//| Custom indicator deinitialization function |

//+------------------------------------------------------------------+

int deinit()

{

//----

//ObjectDelete("Label");

//ObjectDelete("Labe2");

//----

return(0);

}

//+------------------------------------------------------------------+

//| Custom indicator iteration function |

//+------------------------------------------------------------------+

int start()

{

int counted_bars=IndicatorCounted();

//----

if (counted_bars<0) return(-1);

//---- last counted bar will be recounted

if (counted_bars>0) counted_bars--;

int pos=Bars-counted_bars;

while(pos>=0)

{

//buy

if((iRSI(NULL,0,14,PRICE_CLOSE,pos)>=30 &&iSAR(NULL,0,0.02,0.2,pos)<Low[pos])

&& iRSI(NULL,0,14,PRICE_CLOSE,pos)>iRSI(NULL,0,14,PRI CE_CLOSE,pos+1)

&& iRSI(NULL,0,14,PRICE_CLOSE,pos)>iRSI(NULL,0,14,PRI CE_CLOSE,pos+2))

{

ExtMapBuffer1[pos]=Low[pos]- 5*Point ;

}

else

{

ExtMapBuffer1[pos]=0;

}

//sell

if((iRSI(NULL,0,14,PRICE_CLOSE,pos) High[pos])

&& iRSI(NULL,0,14,PRICE_CLOSE,pos)<iRSI(NULL,0,14,PRI CE_CLOSE,pos+1)

&& iRSI(NULL,0,14,PRICE_CLOSE,pos)<iRSI(NULL,0,14,PRI CE_CLOSE,pos+2))

{

ExtMapBuffer2[pos]=High[pos]+5*Point;

}

else

{

ExtMapBuffer2[pos]=0;

}

pos--;

}

//----

//----

return(0);

}

//+------------------------------------------------------------------+

 
Slakerz:
Hi Sir, I have a problem with this.. THis is actually an Indicator... it shows when to open trade buy or sell.. But u have to open the trade manually.. it would be good if it is open automatically.. When it show sell it will open sell and TakeProfit at the Pips we already set.. Im sorry sir.. Im not good at doing MQL... can assist me to edit the said indicator? thanx sir... appreciate it so much..

It is an indicator. It will never trade. It is an EA based on this indicator that you need.

FerruFx

 

i cant download the file!! Help me!!

Reason: