Requests & Ideas, the beginning - page 72

 

It is 5 digit.

 

Mtp ea

Hey everybody,

heres's an EA fro Expert Advisor Programming and EA Programmers for MetaTrader. They have an EA that shows crazy results from backtests. But everytime I try to duplicate the same I can't seem to do it. I've contacted them and asked them for their settings and they gave me the run around and basically told me that backtest optimizations has to be done to figure out the best settings for the EA. I asked them to just show me the settings they use now if they REALLy do use this EA live. They told me that they "don't remember those settings" I'm like what? just give me the settings you use right now. never heard back. Anyways, heres a freebee;

Post back here if you can duplicate the results and share!! my contribution to this site. If that site won't help maybe you guys can.

Files:
mtp.zip  334 kb
 

5 digits

so any forum guys for 5 ( five !!!) digits in here Newdigital??

thank you

 

Which EA?

Because every EA is having the thread and improvements are going inside the thread.

Many EAs were converted for 5 digit.

You can see here: https://www.mql5.com/en/forum/176044

May be not all of them ...

 

New EA required - Pivot Point EA

The calculation for a pivot point is shown below:

Pivot point (PP) = (High + Low + Close) / 3

The biggest price movements usually occur at the price of the pivot point.

I would like to make two types of EA's.

The first type of EA will be the pivot point being calcualted normally, which is the high, low and close of the previous trading session.

As the price tends to hover and whipsaw around the pivot price, we want to place sclping trading around this area. When the price is a few pips on top of the pivot point we want to place a sell order, and take profit a few pips below the pivot point. And vice versa for buy order. With a stop loss of about 70 pips, which shows that the price has moved away from the pivot point and the market is now trending.

The second type of EA will be the pivot point being calculated in a different way, which will be done on a 60 minute chart, and the high, low and close of the previous bar.

As the price tends to hover and whipsaw around the pivot price, want to place a scalping trade around this area. When the price is a few pips on top of the pivot point of the previous bar, we want to place a sell order, and take profit a few pips blow the pivot point. And vice versa for buy order. With a stop loss of about 70 pips, which shows that the price has moved away from the pivot point and the market is now trending.

It would be better if these two strategies are incorporated into 1 EA.

The EA should place around 20-30+ limit orders per day.

The diagram shows the price hovering and whipsawing around the pivot point.

The pivot point was crossed succesfully 5 times.

Files:
 

Trend Signal indicator

Could some very kind soul add a sound alert to this indicator? I cannot find one.

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

//| //| Ramdass - Conversion only

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

#property indicator_chart_window

#property indicator_buffers 2

#property indicator_color1 Red

#property indicator_color2 Green

//---- input parameters

extern int RISK=0;

extern int CountBars=300;

//---- buffers

double val1[];

double val2[];

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

//| Custom indicator initialization function |

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

int init()

{

//---- indicator line

IndicatorBuffers(2);

SetIndexStyle(0,DRAW_ARROW);

SetIndexArrow(0,234);

SetIndexStyle(1,DRAW_ARROW);

SetIndexArrow(1,233);

SetIndexBuffer(0,val1);

SetIndexBuffer(1,val2);

//----

return(0);

}

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

//| ASCTrend1sig |

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

int start()

{

if (CountBars>=1000) CountBars=950;

SetIndexDrawBegin(0,Bars-CountBars+11+1);

SetIndexDrawBegin(1,Bars-CountBars+11+1);

int i,shift,counted_bars=IndicatorCounted();

int Counter,i1,value10,value11;

double value1,x1,x2;

double value2,value3;

double TrueCount,Range,AvgRange,MRO1,MRO2;

double Table_value2[1000];

value10=3+RISK*2;

x1=67+RISK;

x2=33-RISK;

value11=value10;

//----

if(Bars<=11+1) return(0);

//---- initial zero

if(counted_bars<11+1)

{

for(i=1;i<=0;i++) val1[CountBars-i]=0.0;

for(i=1;i<=0;i++) val2[CountBars-i]=0.0;

}

//----

shift=CountBars-11-1;

while(shift>=0)

{

Counter=shift;

Range=0.0;

AvgRange=0.0;

for (Counter=shift; Counter<=shift+9; Counter++) AvgRange=AvgRange+MathAbs(High[Counter]-Low[Counter]);

Range=AvgRange/10;

Counter=shift;

TrueCount=0;

while (Counter<shift+9 && TrueCount<1)

{if (MathAbs(Open[Counter]-Close[Counter+1])>=Range*2.0) TrueCount=TrueCount+1;

Counter=Counter+1;

}

if (TrueCount>=1) {MRO1=Counter;} else {MRO1=-1;}

Counter=shift;

TrueCount=0;

while (Counter<shift+6 && TrueCount<1)

{if (MathAbs(Close[Counter+3]-Close[Counter])>=Range*4.6) TrueCount=TrueCount+1;

Counter=Counter+1;

}

if (TrueCount>=1) {MRO2=Counter;} else {MRO2=-1;}

if (MRO1>-1) {value11=3;} else {value11=value10;}

if (MRO2>-1) {value11=4;} else {value11=value10;}

value2=100-MathAbs(iWPR(NULL,0,value11,shift)); // PercentR(value11=9)

Table_value2[shift]=value2;

val1[shift]=0;

val2[shift]=0;

value3=0;

if (value2<x2)

{i1=1;

while (Table_value2[shift+i1]>=x2 && Table_value2[shift+i1]<=x1){i1++;}

if (Table_value2[shift+i1]>x1)

{

value3=High[shift]+Range*0.5;

val1[shift]=value3;

}

}

if (value2>x1)

{i1=1;

while (Table_value2[shift+i1]>=x2 && Table_value2[shift+i1]<=x1){i1++;}

if (Table_value2[shift+i1]<x2)

{

value3=Low[shift]-Range*0.5;

val2[shift]=value3;

}

}

shift--;

}

return(0);

}

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

Many thanks

 

Hi,

Can someone make a programming for this technique. The rules are:

Buy

-When 5ema cross 50ema+ RSI > 50 + stoch >50

-TP is when 5ema cross 100sma

Sell

-When 5ema cross 50ema+ RSI<50+ stoch <50

-TP is when 5ema cross 100sma

I hope someone can come out with coding for this simple technique. Thanks.

 

ASCTrend Sound.mq4 you can find here.

Jeeves:
Could some very kind soul add a sound alert to this indicator? I cannot find one.
 

Request help

Can any one help add code parabolic sar EA

I need pending order 15pips gap instead of instant order

thanks

Files:
 

Slope Direction Line with arrows

The attached Slope indicator had the arrows added by Damian Burrows. It's just fine for me....with one small glitch!

Could a coder add the means to reposition the arrows up & down...away from the bars/candlesticks?

Many thanks

Reason: