View Single Post
  #2 (permalink)  
Old 02-06-2006, 09:58 AM
ShadowWz's Avatar
ShadowWz ShadowWz is offline
Member
 
Join Date: Nov 2005
Posts: 94
ShadowWz is on a distinguished road
Talking

Hi,

try this:
if(AlertSet==true){
if(RSIBuffer[1]>70 && RSIBuffer[2]<70){
Alert("Buy ",Symbol()," ",Period());
}
else if(RSIBuffer[1]<30 && RSIBuffer[2]>30){
Alert("Sell ",Symbol()," ",Period());
}
}
Reply With Quote