Parabolic SAR - Alert Indicator

 

PSAR indicator, with colors to indicate direction + Alert when a cross is happening.

Download it here

<Dead link deleted>

Good Trading!

 
MechXTrader:
PSAR indicator, with colors to indicate direction + Alert when a cross is happening. Download it here Download Parabolic SAR Alert Good Trading!

I am looking for a Psar with arrows on the colour change, can anyone please upload one?

 
increase:
I am looking for a Psar with arrows on the colour change, can anyone please upload one?

had a go at one, it works but does not display the arrows when you first load the indicator, only after I have compiled it. Perhaps someone could fix the last bit for me.

Files:
sar_color.mq4  4 kb
 
//+------------------------------------------------------------------+
//|                                                        |
//|                      Copyright © 2004, MetaQuotes Software Corp. |
//|                                       http://www.metaquotes.net/ |
//+------------------------------------------------------------------+
#property  copyright "Copyright © December 2006, FX Sniper "
#property  link      "http://www.metaquotes.net/"

//---- indicator settings
#property  indicator_chart_window
#property indicator_buffers 2
#property indicator_color1 Lime
#property indicator_color2 Red


//---- buffers
double sar1[];
double sar2[];
extern double Step = 0.2;
extern double Maximum = 0.2;
int shift;


//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
int init()
  {
//---- 2 additional buffers are used for counting.
   IndicatorBuffers(8);
   
//---- drawing settings
   SetIndexStyle(0,DRAW_LINE,STYLE_SOLID,2);
   SetIndexStyle(1,DRAW_LINE,STYLE_SOLID,2);
   SetIndexBuffer(0,sar1);
   SetIndexBuffer(1,sar2);
//---- initialization done
   return(0);
  }

int start()
  {  
             
      for(shift=Bars;shift>=0;shift--) 
      {
       double sar=iSAR(NULL,0,Step,Maximum,shift);
        if (Low[shift] >= sar)
        {
        sar1[shift] = EMPTY_VALUE;
        sar2[shift] = sar;
        }
       else 
        {
        sar2[shift] = EMPTY_VALUE; 
        sar1[shift+1] = sar;
        }
      }
      return(0);
  }



MetaQuotes Software Corp.
MetaQuotes Software Corp.
  • www.metaquotes.net
Millions of traders and hundreds of brokers cannot be wrong — they have chosen MetaTrader 5 for trading Forex and financial markets! Learn more
 
increase:

had a go at one, it works but does not display the arrows when you first load the indicator, only after I have compiled it. Perhaps someone could fix the last bit for me.

this is my parabolic indicator all is good but its alart time is fast can an one fix this alart 2 or 3 sec delay
 
increase:

had a go at one, it works but does not display the arrows when you first load the indicator, only after I have compiled it. Perhaps someone could fix the last bit for me.

hello plz chek it it overlapping problem can u fix this
 
Sumit Dutta:
this is my parabolic indicator all is good but its alart time is fast can an one fix this alart 2 or 3 sec delay
There are no alerts in that code
 
MechXTrader:

PSAR indicator, with colors to indicate direction + Alert when a cross is happening.

Download it here

Download Parabolic SAR Alert

Good Trading!

Hi do you have other link, this link doesnt work anymore, thanks :)

Reason: