Is there a way to offset my plotted line?
-
What is the best way to offset a line? Currently it's sort of lagging because I'm doing pivot points and since I don't know future prices I can't exactly plot a pivot until like 10 candles go by, but then I end up with offset dots:
-
Nevermind I figured it out. I wanted to do line[-5] as the value because this would fit the offsetting problem but it always gives errors, but I just had to basically skip the beginning of the line (where line[-5] didn't exist yet) and that fixed it. Sorry idk how I didn't figure this out last night guess I was just burned out. So yeah if anyone comes across this problem just basically do:
line[-5] = value you normally would put at line[0]
and if you have a situation like mine, I had to use the pivot period so it was like above but had to convert the period to Int