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.
u
qualitiedx2
Joined on 30.09.2011
- Distribution: Free
- Language: C#
- Trading platform: cTrader Automate
- File name: FiboPivotPointsIntraDay.algo
- Rating: 3.75
- Installs: 13949
- Modified: 13/10/2021 09:54
Comments
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);
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);
hi
this is good but this indicator didn't work all time
why?
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)