Repetitive patterns and other patterns - page 27

 

The edit still doesn't work. Here is the current picture:

The long dotted line is axes (always parallel to trendlines or levels) , the short dotted line is channel boundaries. Drunkenly asking to go up here and now, but falling off at the euro, imho.

Why? - easy: try to imagine a bullshit dangling in a channel like that:)

 

I don't like unfinished business. I highlighted the borders of the canal and rayed them. I liked it :)

 
tara:

I don't like unfinished business. I highlighted the borders of the canal and rayed them. I liked it :)

I think I am slowly beginning to understand your pictures. The green solid lines are the bottom line. But I still don't understand how you choose the points through which you draw them. I see that you take two lowes. But there are several variants of the lower limit. Do you display all of them simultaneously with all possible lower limits? How do you use it in trading? Do you trade by hand or automatically? What are the results?
 
gpwr:
I think I'm slowly beginning to understand your pictures. The green solid lines are the bottom line. But I still do not understand how you select the points through which you draw them. I see that you take two lowes. But there are several variants of the lower limit. Do you display all of them simultaneously with all possible lower limits? How do you use it in trading? Do you trade by hand or automatically? What are the results?

Green solid - global trending. They form easily:

void CreateClass(string MasterName, string ProgramTrace, string Parameter, int Class)
  {
   string Message, SlaveName="CreateClass";
   ProgramTrace=ProgramTrace+"=>"+SlaveName;
   if( Parameter!="" ) ProgramTrace=ProgramTrace+"("+Parameter+")";
   Message=ProgramTrace;
   LastErrorCode=GetLastError();
   if( LastErrorCode>0 || Class<0 )
     {
      Message=Message+" ERROR "+LastErrorCode+" at Start Class="+Class;
      Print(Message); return;
     }
   if( TraceIsAllowed ) Print(Message);
//----
   int Bar1, Bar2, BarM, Group;
   double Price1, Price2, PriceM, Speed, SpeedM;
   Bar1=Bars-1;
   if( Class==1 ) Price1=High[Bar1]; else Price1=Low[Bar1];
   while( Bar1>1 )
     {
      if( Class==1 ) SpeedM=-VeryBigValue; else SpeedM=VeryBigValue;
      Bar2=Bar1;
      while( Bar2>1 )
        {
         Bar2--;                                         // Возможная точка активации.
         if( Class==1 ) Price2=High[Bar2]; else Price2=Low[Bar2];
         if( Bar1>Bar2 ) Speed=(Price2-Price1)/(Bar1-Bar2); else Speed=0;
         if( (Class==1 && Speed>=SpeedM) || (Class==0 && Speed<=SpeedM) )
           {                                             // Локальная касательная.
            BarM=Bar2;
            PriceM=Price2;
            SpeedM=Speed;
           }
        }
      CreateGroup(SlaveName, ProgramTrace, "", Class, Group, Bar1, Price1, BarM, PriceM);
      Group++;
      Bar1=BarM;
      Price1=PriceM;
     }
//----
   LastErrorCode=GetLastError();
   if( LastErrorCode>0 ) Message=Message+" ERROR "+LastErrorCode;
   if( Message!=ProgramTrace )
     {
      Message=Message+" at Finish"+" Class="+Class;
      Print(Message);
     }
   return;
 
FAQ:

Take any conventional pivot indicator and set targets slightly below resistance/support levels :

What is the beginning of the day on forex to calculate pivots? Beginning of the European session? Beginning of the Asian session?
 
gpwr:
What is the beginning of day in forex to calculate the pivots? Beginning of the European session? Beginning of Asian session?

I'm taking Wellington as the start, but it's the confusion with the pivots that's the problem - different pivots show different levels.

And also to take into account / not to take into account the 2 hours of Sunday

 
FAQ:

I'm taking Wellington as the start, but it's the confusion with the pivots that's the problem - different pivots show different levels.

And also to take into account/not to take into account Sunday 2 hours

I searched on the internet and found that many people use 17:00 in New York as the start and end of the day in forex. This is 23:00 Metakvot server, or 11:00 in Wellington (in winter) and 9:00 in Wellington (in summer). The choice of Wellington is not clear at all as their DST starts there in winter and not summer like in the northern hemisphere where all the trading servers are located. Choosing 23:00 metaquot time as the start and end time of the day makes sense because Friday trading always ends at that time. Although it starts at 0:00 on Monday, which might be another logical choice, but not as a time in Wellington. Or am I confusing something?
 
gpwr:
Searched on the internet and found that many people use 17:00 in New York as the start and end of the day in forex. This is 23:00 Metakvot server, or 11:00 in Wellington (in winter) and 9:00 in Wellington (in summer). The choice of Wellington is not clear at all as their DST starts there in winter and not summer like in the northern hemisphere where all the trading servers are located. Choosing 23:00 metaquot time as the start and end time of the day makes sense because Friday trading always ends at that time. Although it starts at 0:00 on Monday, which might be another logical choice, but not as a time in Wellington. Or am I mixing something up?
I was picking at the most credible levels, 17:00 NY is fine too.
 
Well the time standard has always been GMT +0. I always watch candles above H4 at that time on a separate terminal (my broker has GMT +1). Whichever time to calculate the pilots they won't work perfectly. I myself got into all sorts of levels for half a year and just forgot about them. I sometimes use Fibo levels for my purposes, but for that you should at least know the basics of wave analysis.
 

Murad.odeev:
Ну так то стандарт времени всегда был GMT +0. Всегда смотрю свечи выше H4 по этому времени на отдельном терминале (у моего брокера GMT +1). Какое бы не было время для расчета пилотов они не будут работать идеально. Сам увлекался всевозможными уровнями полгода и просто забыл про них. Для целей иногда использую фибо уровни, но для этого надо хотя бы знать основы волнового анализа.

So pivots don't work, but fibo and wave analysis do? Is that the direction to dig?

Reason: