diff --git a/lib/core/avgprice/avgprice.pine b/lib/core/avgprice/avgprice.pine index 9296a3db..57d62449 100644 --- a/lib/core/avgprice/avgprice.pine +++ b/lib/core/avgprice/avgprice.pine @@ -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 diff --git a/lib/core/ha/ha.pine b/lib/core/ha/ha.pine index e51fea89..70808a40 100644 --- a/lib/core/ha/ha.pine +++ b/lib/core/ha/ha.pine @@ -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 diff --git a/lib/core/medprice/medprice.pine b/lib/core/medprice/medprice.pine index bdc879d1..04ac8383 100644 --- a/lib/core/medprice/medprice.pine +++ b/lib/core/medprice/medprice.pine @@ -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 diff --git a/lib/core/midpoint/midpoint.pine b/lib/core/midpoint/midpoint.pine index b1238967..b633dc38 100644 --- a/lib/core/midpoint/midpoint.pine +++ b/lib/core/midpoint/midpoint.pine @@ -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 diff --git a/lib/core/midprice/midprice.pine b/lib/core/midprice/midprice.pine index 0ea48bc8..f400f1fe 100644 --- a/lib/core/midprice/midprice.pine +++ b/lib/core/midprice/midprice.pine @@ -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 diff --git a/lib/core/typprice/typprice.pine b/lib/core/typprice/typprice.pine index 7245af19..f40f768b 100644 --- a/lib/core/typprice/typprice.pine +++ b/lib/core/typprice/typprice.pine @@ -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 diff --git a/lib/core/wclprice/wclprice.pine b/lib/core/wclprice/wclprice.pine index 4912ed10..7a6ecc18 100644 --- a/lib/core/wclprice/wclprice.pine +++ b/lib/core/wclprice/wclprice.pine @@ -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 diff --git a/lib/filters/rmed/rmed.pine b/lib/filters/rmed/rmed.pine index 48f87675..88ddc7df 100644 --- a/lib/filters/rmed/rmed.pine +++ b/lib/filters/rmed/rmed.pine @@ -1,6 +1,5 @@ -// This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 -// https://mozilla.org/MPL/2.0/ -// © QuanTAlib +// Licensed under the Apache License, Version 2.0 +// © mihakralj //@version=6 indicator("Ehlers Recursive Median Filter (RMED)", "RMED", overlay = true) diff --git a/lib/filters/sak/sak.pine b/lib/filters/sak/sak.pine index 151b7ed4..3a5af257 100644 --- a/lib/filters/sak/sak.pine +++ b/lib/filters/sak/sak.pine @@ -1,6 +1,5 @@ -// This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 -// https://mozilla.org/MPL/2.0/ -// © QuanTAlib +// Licensed under the Apache License, Version 2.0 +// © mihakralj //@version=6 indicator("SAK: Swiss Army Knife Indicator", shorttitle="SAK", overlay=false) diff --git a/lib/momentum/sam/sam.pine b/lib/momentum/sam/sam.pine index 04f31720..af13011a 100644 --- a/lib/momentum/sam/sam.pine +++ b/lib/momentum/sam/sam.pine @@ -1,6 +1,5 @@ -// This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 -// https://mozilla.org/MPL/2.0/ -// © QuanTAlib +// Licensed under the Apache License, Version 2.0 +// © mihakralj //@version=6 indicator("SAM: Smoothed Adaptive Momentum", shorttitle="SAM", overlay=false) diff --git a/lib/statistics/trim/trim.pine b/lib/statistics/trim/trim.pine index 325956b8..c41e9d17 100644 --- a/lib/statistics/trim/trim.pine +++ b/lib/statistics/trim/trim.pine @@ -1,6 +1,5 @@ -// This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 -// https://mozilla.org/MPL/2.0/ -// © QuanTAlib +// Licensed under the Apache License, Version 2.0 +// © mihakralj //@version=6 indicator("TRIM: Trimmed Mean Moving Average", shorttitle="TRIM", overlay=true) diff --git a/lib/statistics/wins/wins.pine b/lib/statistics/wins/wins.pine index 706a692a..8704a27c 100644 --- a/lib/statistics/wins/wins.pine +++ b/lib/statistics/wins/wins.pine @@ -1,6 +1,5 @@ -// This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 -// https://mozilla.org/MPL/2.0/ -// © QuanTAlib +// Licensed under the Apache License, Version 2.0 +// © mihakralj //@version=6 indicator("WINS: Winsorized Mean Moving Average", shorttitle="WINS", overlay=true) diff --git a/lib/trends_FIR/qrma/qrma.pine b/lib/trends_FIR/qrma/qrma.pine index 549cc862..47bddb9b 100644 --- a/lib/trends_FIR/qrma/qrma.pine +++ b/lib/trends_FIR/qrma/qrma.pine @@ -1,6 +1,5 @@ -// This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 -// https://mozilla.org/MPL/2.0/ -// © QuanTAlib +// Licensed under the Apache License, Version 2.0 +// © mihakralj //@version=6 indicator("Quadratic Regression Moving Average (QRMA)", "QRMA", overlay = true) diff --git a/lib/trends_FIR/rain/rain.pine b/lib/trends_FIR/rain/rain.pine index ea73752e..6729ef1a 100644 --- a/lib/trends_FIR/rain/rain.pine +++ b/lib/trends_FIR/rain/rain.pine @@ -1,6 +1,5 @@ -// This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 -// https://mozilla.org/MPL/2.0/ -// © QuanTAlib +// Licensed under the Apache License, Version 2.0 +// © mihakralj //@version=6 indicator("Rainbow Moving Average (RAIN)", "RAIN", overlay = true) diff --git a/lib/trends_FIR/rwma/rwma.pine b/lib/trends_FIR/rwma/rwma.pine index 222aec99..fe303299 100644 --- a/lib/trends_FIR/rwma/rwma.pine +++ b/lib/trends_FIR/rwma/rwma.pine @@ -1,6 +1,5 @@ -// This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 -// https://mozilla.org/MPL/2.0/ -// © QuanTAlib +// Licensed under the Apache License, Version 2.0 +// © mihakralj //@version=6 indicator("RWMA: Range Weighted Moving Average", shorttitle="RWMA", overlay=true) diff --git a/lib/trends_FIR/sp15/sp15.pine b/lib/trends_FIR/sp15/sp15.pine index ac92c5bc..0902866e 100644 --- a/lib/trends_FIR/sp15/sp15.pine +++ b/lib/trends_FIR/sp15/sp15.pine @@ -1,6 +1,5 @@ -// This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 -// https://mozilla.org/MPL/2.0/ -// © QuanTAlib +// Licensed under the Apache License, Version 2.0 +// © mihakralj //@version=6 indicator("SP15: Spencer 15-Point Moving Average", shorttitle="SP15", overlay=true) diff --git a/lib/trends_FIR/swma/swma.pine b/lib/trends_FIR/swma/swma.pine index c86b5263..816af6a7 100644 --- a/lib/trends_FIR/swma/swma.pine +++ b/lib/trends_FIR/swma/swma.pine @@ -1,6 +1,5 @@ -// This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 -// https://mozilla.org/MPL/2.0/ -// © QuanTAlib +// Licensed under the Apache License, Version 2.0 +// © mihakralj //@version=6 indicator("SWMA: Symmetric Weighted Moving Average", shorttitle="SWMA", overlay=true) diff --git a/lib/trends_FIR/tsf/tsf.pine b/lib/trends_FIR/tsf/tsf.pine index eb356549..df9dcaad 100644 --- a/lib/trends_FIR/tsf/tsf.pine +++ b/lib/trends_FIR/tsf/tsf.pine @@ -1,6 +1,5 @@ -// This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 -// https://mozilla.org/MPL/2.0/ -// © QuanTAlib +// Licensed under the Apache License, Version 2.0 +// © mihakralj //@version=6 indicator("Time Series Forecast (TSF)", "TSF", overlay = true) diff --git a/lib/trends_FIR/tukey_w/tukey_w.pine b/lib/trends_FIR/tukey_w/tukey_w.pine index 4ec160aa..f6b53194 100644 --- a/lib/trends_FIR/tukey_w/tukey_w.pine +++ b/lib/trends_FIR/tukey_w/tukey_w.pine @@ -1,6 +1,5 @@ -// This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 -// https://mozilla.org/MPL/2.0/ -// © QuanTAlib +// Licensed under the Apache License, Version 2.0 +// © mihakralj //@version=6 indicator("TUKEY_W: Tukey (Tapered Cosine) Window MA", shorttitle="TUKEY_W", overlay=true) diff --git a/lib/trends_IIR/trama/trama.pine b/lib/trends_IIR/trama/trama.pine index cab7e3d3..7b17cb91 100644 --- a/lib/trends_IIR/trama/trama.pine +++ b/lib/trends_IIR/trama/trama.pine @@ -1,6 +1,5 @@ -// This Pine Script™ code is subject to the terms of the Mozilla Public License 2.0 -// https://mozilla.org/MPL/2.0/ -// © QuanTAlib +// Licensed under the Apache License, Version 2.0 +// © mihakralj //@version=6 indicator("TRAMA: Trend Regularity Adaptive Moving Average", shorttitle="TRAMA", overlay=true)