Thread: ADX indicator?
View Single Post
  #6 (permalink)  
Old 02-10-2006, 08:11 AM
newdigital newdigital is online now
Administrator
 
Join Date: Sep 2005
Posts: 15,875
Blog Entries: 54
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
Quote:
Originally Posted by LazyForex
Not this one. I recall seeing somewhere in the Forum where the ADX turns from Red to Green when it goes above say 25 (adjustable). But thanks for the ADXBars. Looks interesting. How do you use it?
I am not sure that it is what you need but I saw in the code the following:

Code:
val1[shift]=Low[shift]-5*Point;
	if (UseSound==1) PlaySound(NameFileSound);
   if (TypeChart==1) Comment ("Buy signal at Ask=",Ask,", Bid=",Bid,", Date=",TimeToStr(CurTime(),TIME_DATE)," ",TimeHour(CurTime()),":",TimeMinute(CurTime())," Symbol=",Symbol()," Period=",Period());

Code:
	val2[shift]=High[shift]+5*Point;
	if (UseSound==1) PlaySound(NameFileSound);
   if (TypeChart==1) Comment ("Sell signal at Ask=",Ask,", Bid=",Bid,", Date=",TimeToStr(CurTime(),TIME_DATE)," ",TimeHour(CurTime()),":",TimeMinute(CurTime())," Symbol=",Symbol()," Period=",Period());
Attached Files
File Type: mq4 ADX Crossing_alarm.mq4 (2.8 KB, 168 views)
Reply With Quote