Please make a mt5 ea using attached indicator

Hi,

Please make a simple ea for mt5 using this indicator.

Buy on blue color

Sell on orange color.

Thanks

Step average (atr based).mq5 (10 Kb)



Please help me convert this function from mt4 to mt5

Function.mq4 (0 Kb)Hello,

Please convert this function from mt4 to mt5. That's all.

Thanks!

double GetFunction()
{
int j,k;
double sumw = (Period1+1);
double sum = sumw* Close[1];

for(j=1, k=Period1; j<Period1; j++,k--)
{
sumw += k;
sum += k * Close[1+j];
if (j<=1)
{
sum += Close[1-j]*k;
sumw += k;
}


( Читать дальше )


Please translate this function from MT4 to MT5

Hi Andrey,

I'm trying to learn mql5 coding but got stuck with this money trailing function.

Please help me convert it into mt5, I'm sure a lot of people will find it very useful.

Thank You!

FunctionMoneyTrailing.mq4 (6 Kb)


Please Translate ea from mt4 to mt5

Happy New Year!

Please translate this mt4 ea to mt5. Keep everything the same.

www.opentraders.ru/downloads/3738/

Thank You!


Please translate this simple mt5 ea to mt4

trading tycoon final.mq5 (3 Kb)

Hi,

Please translate this simple MT5 ea to MT4.

Thanks


Please make a mt4 ea using this indicator

Hello,

Can you hard code this indicator into a simple mt4 ea without using the iCustom command? If not just create a simple mt4 ea using the indicator.

Thanks

Buy — When the line is moving up
Sell — When the line is moving down.

Dynamic_Cycle_Explorer Simple.mq4 (2 Kb)





Please make a mt4 ea using the attached indicator

Hello,

Please make a simple mt4 ea using the attached indicator.

Buy on up arrow and Sell on down arrow. Thant's it.

Thank You.



Vertex6.mq4 (7 Kb)


Please make a simple MT4 EA

Please make a simple MT4 ea using this indicator.

Thanks

BuySellArrows.ex4 (15 Kb)



Please make a mt4 ea using this indicator.

Hi,

Please make a mt4 ea using the sniper.mq4 indicator.

Thanks


sniper.mq4 (2 Kb)


Please make a mt4 ea using this indicator

Hello,

Please make a mt4 ea using this indicator.

Thanks

Up_and_Down_Indicator.mq4 (8 Kb)



Please create a mt4 EA using this T3MA indicator.

Hello,

Please create a mt4 ea using the T3MA indicator.

Thank You!



T3MA nmc.mq4 (3 Kb)


Please write a simple mt4 EA for two High Low Moving Average strategy.

Hi,

Please write a simple mt4 ea that trade with 2 high/low Moving Averages. Trade when the price closes outside of the high or low MA. Use the opposite band for the Stop Loss.

Please include TakeProfit.

Thanks





Please update this CloseAll function into two Functions.

Hi,

Please update the CloseAll function with two functions.

The two new function are:

1) ClosePositive() // This function would close all open trades that are in positive.
2) CloseNegative() // This function would close all open trades that are in negative.

Thanks

void CloseAll(int ot=-1)
{
bool cl=1;

for(int

( Читать дальше )


3 Candles Peaks and Valleys strategy for mt4

Hi Andrew,

Please create a mt4 ea using 3 candles Peaks and Valleys Strategy.

You may add more features as you like.

Thanks