Add Apache 2.0 license header to all Pine Script files

Co-authored-by: mihakralj <31756078+mihakralj@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-03-11 05:57:10 +00:00
co-authored by mihakralj
parent 39ef78e099
commit ef54971a7e
20 changed files with 40 additions and 39 deletions
+2
View File
@@ -1,3 +1,5 @@
// Licensed under the Apache License, Version 2.0
// © mihakralj
// AVGPRICE: Average Price
// (Open + High + Low + Close) / 4
// TA-Lib compatible — equivalent to TBar.OHLC4
+2
View File
@@ -1,3 +1,5 @@
// Licensed under the Apache License, Version 2.0
// © mihakralj
// HA: Heikin-Ashi
// Smoothed candle transformation with recursive open
// HA_Close = (O + H + L + C) / 4
+2
View File
@@ -1,3 +1,5 @@
// Licensed under the Apache License, Version 2.0
// © mihakralj
// MEDPRICE: Median Price
// (High + Low) / 2
// TA-Lib compatible — equivalent to TBar.HL2
+2
View File
@@ -1,3 +1,5 @@
// Licensed under the Apache License, Version 2.0
// © mihakralj
// MIDPOINT: Rolling Midpoint
// (Highest(source, N) + Lowest(source, N)) / 2
// TA-Lib compatible — rolling center of value range
+2
View File
@@ -1,3 +1,5 @@
// Licensed under the Apache License, Version 2.0
// © mihakralj
// MIDPRICE: Midpoint Price over Period
// (Highest(High, N) + Lowest(Low, N)) / 2
// TA-Lib compatible — center of the H/L price channel
+2
View File
@@ -1,3 +1,5 @@
// Licensed under the Apache License, Version 2.0
// © mihakralj
// TYPPRICE: Typical Price
// (High + Low + Close) / 3
// TA-Lib compatible — equivalent to TBar.HLC3
+2
View File
@@ -1,3 +1,5 @@
// Licensed under the Apache License, Version 2.0
// © mihakralj
// WCLPRICE: Weighted Close Price
// (High + Low + 2 * Close) / 4
// TA-Lib compatible — equivalent to TBar.HLCC4