script as follows:
Why is it that my Pivot points is only showing 1 dot or none at all as compared to my personspivots?
This is a 1D5Min chart on NQ.
Code:
input showOnlyToday = No;
input timeFrame = {default "DAY", "WEEK", "MONTH"};
plot R3 = if IsNaN(close) then Double.NaN else PivotPoints(showOnlyToday = showOnlyToday, timeFrame = timeFrame).r3;
plot R2 = if IsNaN(close) then Double.NaN else PivotPoints(showOnlyToday = showOnlyToday, timeFrame = timeFrame).r2;
plot R1 = if IsNaN(close) then Double.NaN else PivotPoints(showOnlyToday = showOnlyToday, timeFrame = timeFrame).r1;
plot PP = if IsNaN(close) then Double.NaN else PivotPoints(showOnlyToday = showOnlyToday, timeFrame = timeFrame).pp;
plot S1 = if IsNaN(close) then Double.NaN else PivotPoints(showOnlyToday = showOnlyToday, timeFrame = timeFrame).s1;
plot S2 = if IsNaN(close) then Double.NaN else PivotPoints(showOnlyToday = showOnlyToday, timeFrame = timeFrame).s2;
plot S3 = if IsNaN(close) then Double.NaN else PivotPoints(showOnlyToday = showOnlyToday, timeFrame = timeFrame).s3;
Why is it that my Pivot points is only showing 1 dot or none at all as compared to my personspivots?
This is a 1D5Min chart on NQ.