XP Moving Average! - page 48

 

Background color

Hi,

I have searched and searched for an Indicator like the xpMA.mq4 that has Arrows signalling a trend change.

I appreciate that for most traders the Arrows are all they need but I am trying to help new inexperienced learners understand the basics. I think it would be helpful if the background color of the Main Chart Window was to change color when the Arrows change.

So, an Up Arrow would have say a green background that continued until a Down Arrow appeared, then the background would change to Red until an Up arrow appears .... etc

Anybody know of such an Indicator?

Peter

 

xpMA Last Update Date: May 23, 2011

Attached the last version of the indicator.

You can turn the Alerts on/off

rick111:
How do you turn off alerts? I've edited the mql file and changed the bool value "alerts" to false, but i still get them? thanks
Files:
xpma.mq4  13 kb
 

Thanks Japi! I updated the indicator.

japi44:
Thank you very match!!!

Please, change this part of code in the next version (error - UpArrowSize):

void DrawObject(int direction, int bar , double price)

{

static int count = 0;

count++;

string Obj = "";

if (direction==1) //up arrow

{

Obj = "xpMA_up_" + DoubleToStr(bar,0);

ObjectCreate(Obj,OBJ_ARROW,0,Time,price);

ObjectSet(Obj,OBJPROP_COLOR,UpArrowColor);

ObjectSet(Obj,OBJPROP_ARROWCODE,UpArrowCode);

ObjectSet(Obj,OBJPROP_WIDTH,UpArrowSize);

}

if (direction==2) //down arrow

{

Obj = "xpMA_down_" + DoubleToStr(bar,0);

ObjectCreate(Obj,OBJ_ARROW,0,Time,price);

ObjectSet(Obj,OBJPROP_COLOR,DownArrowColor);

ObjectSet(Obj,OBJPROP_ARROWCODE,DownArrowCode);

ObjectSet(Obj,OBJPROP_WIDTH,DownArrowSize);

}

WindowRedraw();

}
 

Hey,

Try xpworx.com/custom.php again. Maybe I didn't notice your email.

thestockbull:
Hello Codersguru, i need paid help from you for getting something coded. Why arent you replying the contact form kept on your website(xpworx)? i filled it twice last week but still no reply. What is your email address? PM me plz
 

Request: MTF Moving Average(EMA14) Lines to be drawn on single 1Min Chart.

Thanks for such a nice XP Moving Average.

I am looking for Indicator which draws Moving Average(EMA14) line of 5Min, 15 Min, 1H, 4H, 1D on 1Min chart.

So it will be like 5 lines of EMA14 of different time frames But on 1Min Chart.

I am not a programmer , just a tweaker. If someone knows if it exists in TSD, or someone kindly design it for me and post here.

 

[langtitle=ru]Kama[/langtitle]

[lang=ru]hi all, could you insert a signal by changing color?[/lang]

Files:
kama.mq4  7 kb
 

xpMA Update

Please update your xpMA Indicator and xpMA EA versions form here:

xpMA Indicator

xpMA EA

 

what is the xpma last version?

I have seen on your link that post on "History (Current Version 9 - December 22, 2006)" or version 10 beta on page 47. I'm not sure what is the last version and not repaint. Thank you.

 

xpMaEA not functioning,can update plz?thanks

 

how come my signal say its going up at H1 TF and the arrow is showing up,after i change to M30 and go back to H1,the arrow is gone?

Reason: