Requests & Ideas, the beginning - page 2

 

And please (for all the members) post EAs as a candidates for testing: EA, settings, timeframe.

 

As I understand this EA is something about this thread https://www.mql5.com/en/forum/173726

Kalenzo, can you post this EA with indicators (if necessary), recommended timeframes and settings (or pre-set file)?

Will this EA work together woth other EA in one Metatrader?

If yes I may attach it to the Metatrader when FiboPivotand RSI is working. Because this FiboPivotand RSI is working alone (quite alone) having D1 timeframe. So I may attach this KI from Monday.

 
newdigital:
As I understand this EA is something about this thread https://www.mql5.com/en/forum/173726

Kalenzo, can you post this EA with indicators (if necessary), recommended timeframes and settings (or pre-set file)?

Will this EA work together woth other EA in one Metatrader?

If yes I may attach it to the Metatrader when FiboPivotand RSI is working. Because this FiboPivotand RSI is working alone (quite alone) having D1 timeframe. So I may attach this KI from Monday.

Ok. I will

 

Bollinger Bands Z-Test

Hi to all!

There is a nice article in the S&C magazine March 2006 called "Trading Trends with the Bollinger Bands Z-Test" which shows 2 indicators BBZosc and BBZ. I downloaded the indicators for eSignal and placed them on EUR 5 min and they look great for daytrading. The rules are that when the current bar crosses the bottom channel (for a long trade for ex) you placed your buy stop above the high of that bar and a Stop Loss below the low of this bar. You then keep the trade until you the market goes above the upper channel and exit when the bar closes below the upper channel. Manually backtesting it, I can clearly say that this catches very nice moves with low risk. I have seen many methods and this is one of the best one I have seen simply because the fact that the Bollinger Band Z-Test does not change after the fact. It stays the same as in real time instead of redrawing like most indicators. Can somebody program them for MT4 so that we can use them for daytrading? I have attached the eSignal code for both indicators.

Files:
bbz.zip  5 kb
 

***New Indicator Request***

Can someone create an indicator that has a Parabolic SAR which is based on a JMA or Hull Moving average instead of price data?

I've seen this used before and it is an incredible indicator which smooths out whipsaws tremendously and seemed to be very profitable.

Excite2

Files:
parabolic.mq4  6 kb
jma.mq4  11 kb
hma.mq4  3 kb
 

A Request

well i have asked it on the fourm before now here to

is there any way that a ea closes position whenever it gain 1,2,3 pip i hope i will get something here

 
mj10:
well i have asked it on the fourm before now here to is there any way that a ea closes position whenever it gain 1,2,3 pip i hope i will get something here

Mj,

It sounds like you want a script that closes any opened positions that made 1/2/3 pip (pre-set value)?

Please correct me!

 

well

ok c this code i knwo it was not that profitable

it is a simple coding

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

//| Eurobuy.mq4 |

//| https://www.forex-tsd.com |

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

#property copyright "Copyright © 2006, Metaqoute.com"

#property link ""

void deinit() {

Comment("");

}

int start()

{

if ((Close[0]>=Close[3]) && (Close[3]<=Open[2]))

OrderSend(Symbol(),OP_BUY,0.1,Ask,2,Ask-30*Point,Ask+6*Point,"eurobuying",0,0,Blue);

return(0);

}

now is there any way i can close a oder when ever it gain 1 pip or may be 2 3

you can know more about on https://www.mql5.com/en/forum/173529

 
mj10:
ok c this code i knwo it was not that profitable

it is a simple coding

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

//| Eurobuy.mq4 |

//| https://www.forex-tsd.com |

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

#property copyright "Copyright © 2006, Metaqoute.com"

#property link ""

void deinit() {

Comment("");

}

int start()

{

if ((Close[0]>=Close[3]) && (Close[3]<=Open[2]))

OrderSend(Symbol(),OP_BUY,0.1,Ask,2,Ask-30*Point,Ask+6*Point,"eurobuying",0,0,Blue);

return(0);

}

now is there any way i can close a oder when ever it gain 1 pip or may be 2 3

you can know more about on https://www.mql5.com/en/forum/173529

Try this code:

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

//| Eurobuy.mq4 |

//| https://www.forex-tsd.com |

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

#property copyright "Copyright © 2006, Metaqoute.com"

#property link ""

extern double TakeProfit = 3; //set it to the pips value you want.

void deinit() {

Comment("");

}

int start()

{

int cnt, total;

if ((Close[0]>=Close[3]) && (Close[3]<=Open[2]))

OrderSend(Symbol(),OP_BUY,0.1,Ask,2,Ask-30*Point,Ask+6*Point,"eurobuying",0,0,Blue);

total = OrdersTotal();

for(cnt=0;cnt<total;cnt++)

{

OrderSelect(cnt, SELECT_BY_POS, MODE_TRADES);

if (OrderProfit() >= TakeProfit)

OrderClose(OrderTicket(),OrderLots(),Bid,3,Violet); // close position

}

return(0);

}
 

Ema 90

Hi all ,

am new to EAs

what problems might be with an EA with these results ..

Regards

Files:
ea_90.zip  98 kb
Reason: