You are on page 1of 1

// **********************************************************************

// High Probability Fibonacci Zone Analysis


// **********************************************************************
_daysRange = ref(high, 1) - ref(low, 1);
// **********************************************************************
// Creating the zones
// **********************************************************************
//
_c
//
_d
//
_b
//
_e
//
_a

Price Level 1
= (ref(high, 1) + ref(low, 1) + ref(close, 1)) / 3;
Price Level 2
= (_daysRange/2) + _c;
Price Level 3
= _c - (_daysRange/2);
Price Level 4
= _daysRange + _c;
Price Level 5
= _c - _daysRange;

// **********************************************************************
// Adding Fibbo Support/Resistance Bands 1 & 2
// **********************************************************************
// Fibbo
_b1 = _c
// Fibbo
_a1 = _c

Support Band 1
- (0.618 * _daysRange);
Support Band 2
- (1.382 * _daysRange);

// Fibbo
_d1 = _c
// Fibbo
_e1 = _c

Resistance
+ (0.618 *
Resistance
+ (1.382 *

HPFZA = 10;

Band 1
_daysRange);
Band 2
_daysRange);

You might also like