Pivot and camarilla equation..

 

Hello all,


I am using the equation of Pivot for any startup day is..


double Pivot= (High[0] + Low[0] + Close[0]) / 3;
double R1 = (2 * Pivot) - Low[0];
double R2 = Pivot + High[0] - Low[0];
double R3 = High[0] + 2 * (Pivot - Low[0]);
double S1= (2 * Pivot) - High[0];
double S2 = Pivot - High[0] + Low[0];
double S3 = Low[0] - 2 * (High[0] - Pivot) ;

Print(" R1 ",R1);
Print(" R2 ",R2);
Print(" R3 ",R3);
Print(" Pivot ",Pivot);
Print(" S1 ",S1);
Print(" S2 ",S2);
Print(" S3 ",S3);


AND CAMARILLA EQUATION IS ...


double L1 = Close[0]-(1.1*(High[0]-Low[0])/12);
double L2 = Close[0]-(1.1*(High[0]-Low[0])/6);
double L3 = Close[0]-(1.1*(High[0]-Low[0])/4);
double L4 = Close[0]-(1.1*(High[0]-Low[0])/2);


Print(" H4",H4);
Print(" H3 ",H3);
Print(" H2 ",H2);
Print(" H1 ",H1);


AM I USING RIGHT EQUATION ???


THANX