Harmonic & Time - page 34

 
poruchik:
3 in 1 _____________

triple signal!!

 

For Shark you using latest Zup?

 

A Shark

last ZUP

 

Is it possible to make these indicators as MTF´s? it would be tremendously useful if possible

 

zup_v135_n200_v05.mq4

  • Detects Navarro 200 pattern only.
  • Exact D Box time dedection based on real time bar counting.
  • Ability to play user custom sounds for "bullish" & "bearish" found patterns

Indicator checks N200 pattern in real time but only draws D Box when price enters in to D Box Area.

When a pattern is detected, indicator will automatically draw an A-B_C three point fibonacci expansion to check the strength of the pattern. It would be the best, if a fib expansion is inside the D Box area or very close to it. You can put your limit entries near expansion lines.

Default Deviations used for maximum accuracy are,

%5 for Fibonacci Retracements

%10 for Time

I've completely changed the algorithm to find exact d time box settings.

For Exact D Box calculation, three parameters are needed.

Friday Last M1 Bar Open Time;

Sunday First M1 Bar Open Time;

Sunday First H4 Bar Open Time;

Please put these data in here

extern string ______________3_____________ = "Parameters for Gartley Patterns";

extern double FibonacciDeviation = 0.05;

extern double TimeDeviation = 0.10;

extern string FridayLastM1BarOpenTime = "N/A";

extern string SundayFirstM1BarOpenTime= "N/A";

extern string SundayFirstH4BarOpenTime= "N/A";

Older version (v02) finds these settings automatically but it takes a lot of cpu cycle in M1, M5 time frames. This is a more efficient way.

Now you can choose your own custom sounds when a pattern is dedected.

Put your custom sounds in terminal_dir\sounds directory

and

change ExtPlayAlert = false; to true

PlayBullishSound ="alert.wav"; write your custom sound with file extension

PlayBearishSound ="alert.wav";write your custom sound with file extension

Files:
 

grandaevus...how do you figure out FridayLastM1BarOpenTime & SundayFirsts? Can you show what it would look like for this week?

 
grandaevus:
zup_v135_n200_v05.mq4
  • Detects Navarro 200 pattern only.
  • Exact D Box time dedection based on real time bar counting.
  • Ability to play user custom sounds for "bullish" & "bearish" found patterns

Indicator checks N200 pattern in real time but only draws D Box when price enters in to D Box Area.

When a pattern is detected, indicator will automatically draw an A-B_C three point fibonacci expansion to check the strength of the pattern. It would be the best, if a fib expansion is inside the D Box area or very close to it. You can put your limit entries near expansion lines.

Default Deviations used for maximum accuracy are,

%5 for Fibonacci Retracements

%10 for Time

I've completely changed the algorithm to find exact d time box settings.

For Exact D Box calculation, three parameters are needed.

Friday Last M1 Bar Open Time;

Sunday First M1 Bar Open Time;

Sunday First H4 Bar Open Time;

Please put these data in here

extern string ______________3_____________ = "Parameters for Gartley Patterns";

extern double FibonacciDeviation = 0.05;

extern double TimeDeviation = 0.10;

extern string FridayLastM1BarOpenTime = "N/A";

extern string SundayFirstM1BarOpenTime= "N/A";

extern string SundayFirstH4BarOpenTime= "N/A";

Older version (v02) finds these settings automatically but it takes a lot of cpu cycle in M1, M5 time frames. This is a more efficient way.

Now you can choose your own custom sounds when a pattern is dedected.

Put your custom sounds in terminal_dir\sounds directory

and

change ExtPlayAlert = false; to true

PlayBullishSound ="alert.wav"; write your custom sound with file extension

PlayBearishSound ="alert.wav";write your custom sound with file extension

Grandaevus... genius...

 
Lozang:
grandaevus...how do you figure out FridayLastM1BarOpenTime & SundayFirsts? Can you show what it would look like for this week?

Let me tell how V05 finds D Box Time settings first.

As you know, N200 time rule is

Time XB = Time BD

So in order to find Time D, indicator first finds the number of bars (lets say N bars) between dot X to dot B.

Then starting from dot B again, calculates the possible time D adding N bars to dot B.

The problem is, there can be holidays, weekends which should be omitted and not put in to calculation.

Another problem is every broker has different server time settings. Mine uses gmt+0 the other uses gmt+2 or gmt +3. Parameters changes for every broker.

V02 does this job for you but as I've said before it takes a lot of cpu cycle (which means time & cpu load) especially in lower time frames like M1 & M5.

So just open a M1 chart. (pair is not important)

Find the last M1 bar for friday and put these number to

FridayLastM1BarOpenTime in two digits format like 22:00

and do the same for SundayFirstM1BarOpenTime & SundayFirstH4BarOpenTime.

If there is no sunday opening then you can leave them N/A

 

Nice. Thanks.

 

Eurjpy m1_____________

Files:
eurjpym1.png  71 kb