Kijen Sen Independent Line of Ichimoku Trading System
Many traders in the financial markets use Ichimoku components to detect trends, which is why I published this indicator.
backtest
// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/ // © dilan1999 //@version=5 indicator('KijunSen Line With Cross', overlay=true) n = input(26, 'Length') h = ta.highest(high, n) l = ta.lowest(low, n) value = (h + l) / 2