mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-05 04:27:43 +00:00
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:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user