← Script Marketplace
Open-source scriptindicator/v1

Pivot Points Standard

by Kodexius·@kodexius·

Plot traditional support and resistance levels from the previous completed anchor period.

#levels#pivot-points#support-resistance
Pivot Points Standard chart preview

Description

Pivot Points Standard derives a central pivot and multiple support and resistance levels from the prior completed period. Daily, weekly, or monthly anchors let users place the same traditional framework in different trading horizons.

Open-source script. Everyone can inspect the source code, use the script on a chart, and save an editable copy.

Release notes

Version history · 1 published version

Version 1CurrentChart updatedPivot Points Standard · Aug 31, 2026
Release notes

Initial classic indicator release.

View current source ↓
Source codempl-2.0View source

indicator("Pivot Points Standard", { overlay: true });
const anchor = input.select("Anchor", "day", ["day", "week", "month"]);
const [pivot, r1, s1, r2, s2, r3, s3] = pivot_point_levels("Traditional", anchor, false);
plot(pivot, { title: "P", color: "#ff9800", type: "stepline" });
plot(r1, { title: "R1", color: "#ef5350", type: "stepline" });
plot(s1, { title: "S1", color: "#26a69a", type: "stepline" });
plot(r2, { title: "R2", color: "#ef5350", type: "stepline" });
plot(s2, { title: "S2", color: "#26a69a", type: "stepline" });
plot(r3, { title: "R3", color: "#ef5350", type: "stepline" });
plot(s3, { title: "S3", color: "#26a69a", type: "stepline" });
  

Community discussion

0 comments

Loading…

No comments yet. Start the discussion.