Hi, Anyone already backtested a system based on Camarilla Pivot Points? I tryied with no sucess. I would appreciate if someone can give me some hints.
Thanks! __________________________ For now i am playing around dax indice, with 5minute data: TimeFrameSet( inDaily ); R5 = (H/L)*C; R4 = (((H/L)+P1)/(1+P1))*C; R3 = (((H/L)+(1+2*P1))/(2+2*P1))*C; R2 = (((H/L)+(1+4*P1))/(2+4*P1))*C; R1 = (((H/L)+(1+8*P1))/(2+8*P1))*C; S5 = C - (R5-C); S4 = C - (R4-C); S3 = C - (R3-C); S2 = C - (R2-C); S1 = C - (R1-C); dailyS2=TimeFrameExpand( S2, inDaily ); dailyS3=TimeFrameExpand( S3, inDaily ); dailyR1=TimeFrameExpand( R1, inDaily ); //BuyPrice=0; //PositionSize = 1000; Buy = Cross( Open, dailyS3 ); //StopLoss = dailyS2; //ApplyStop(1, 1, 100, True, True ); Sell= Cross(Ref(Open,1),dailyS2);
