Category Other  Published on 21/09/2012

Fibonacci Pivot Points (Intraday)

Description

Fibonacci Pivot Points represent the mean value of the high, low and closing price of the period for which we wish to calculate the pivot point. This is based on Fibonacci retracement and extension levels to calculate the various resistance and support levels for the price movement.

 Fibonaccit Pivot Points


u

qualitiedx2's avatar
qualitiedx2

Joined on 30.09.2011

  • Distribution: Free
  • Language: C#
  • Trading platform: cTrader Automate
  • File name: FiboPivotPointsIntraDay.algo
  • Rating: 3.75
  • Installs: 13535
Comments
Log in to add a comment.
ER
ericknumberfive · 1 year ago

hello there, is any chance that instead generating the pivot points that generates a fibonacci retracement?

or idk or choose the period of time we want the PP (like from 8 30 to 850)

RT
rtzzzzzz · 9 years ago

Replace : 

this line            DateTime yesterday = DateTime.Now.AddDays(-1);

with all those lines

           DateTime yesterday;
            if (Server.Time.DayOfWeek == DayOfWeek.Monday)
                yesterday = DateTime.Now.AddDays(-3);
            else
                yesterday = DateTime.Now.AddDays(-1);

RT
rtzzzzzz · 9 years ago

Replace : 

 

            DateTime yesterday = DateTime.Now.AddDays(-1);

            DateTime yesterday;
            if (Server.Time.DayOfWeek == DayOfWeek.Monday)
                yesterday = DateTime.Now.AddDays(-3);
            else
                yesterday = DateTime.Now.AddDays(-1);

AM
amirkh912 · 10 years ago

hi

this is good but this indicator didn't work all time

why?

SE
selahi · 11 years ago
Hi , do you know why it does not work on mondays Thankyou