# Kiosotto, интерполяция, сглаживание, прайс экшн (Price Action) и двойное дно

Раздел: Индикаторы форекс
Автор темы: KarterKapitan
Создана: 2025-10-31 17:33
Ответов: 185 | Просмотров: 14872
Страница 10 из 10
Источник: https://forexsystemru.com/threads/96709/page-10

---

## KarterKapitan — 2026-02-01 19:44

Торговая система Таурус-К для любителей бинарных опционов. Стрелки не рисуют появляется сразу на 0 баре, перед появлением стрелки основного сигнала будет предварительный алерт оповещение. Винрейт разный на разных парах. Второй индикатор Ионосфера идет как дополнительный с него снимаются через кастыли показания фракталов . Для стабильной работы системы нужно оба файла закинуть в папку indicators в мт5. На график ставим Таурус .

## Genry_05 — 2026-08-07 22:57

Genry(gm) Extended modification of the Kiosotto indicator.
Теперь два режима работы: **Faithful и Smooth** .
Что еще доработано:

- No-Repaint — оба режима смотрят только в прошлое (i + j);

- Инкрементальность — при тике пересчитываются 1–2 бара, а не вся история;

- Защита от деления на ноль и выхода за границы массива;

- Опорная линия 1.0 — нейтраль давления.

- Производительность**:** жадность алгоритма снижена до минимума O(N⋅(Len+Lookback)). 

Можно повесить оба экземпляра индикатора рядом (Faithful + Smooth) - расхождения их пиков дают отличную картину: **Faithful **показывает момент импульса, **Smooth** - его устойчивость.

**Faithful  **сохраняет идею оригинального Киосотто, но убраны косяки и тормоза старой реализации. Период = 150
**Smooth**  я  сохранил суть оригинала (сравнение давлений покупателей и продавцов типа RSI), но вместо "поиска экстремумов" применяется "непрерывное взвешивание" (Stochastic-like weighting). Это убирает "рваность" и нулевые значения, которые возникали в оригинале, когда цена не обновляет экстремумы. В нижней части гистограммы линии быков и медведей пересечение которых сигналит смену тренда. Период = 15.

## Genry_05 — 2026-08-08 00:44

Причина для доработки Кио - тормоза реализаций (**в прицепе обновленная версия с ограничением истории**, 0-вся история). Вот для сравнения скорострельность (gm)Кио-2026 и других реализаций  на 500 барах истории: 88_filter_mod-m, Kiosotto_2020_v5.1(gm)_MTF_ms-nrp, Kiosotto_v41. Kiosotto 2015 v4 Alert ms-nrp

## Genry_05 — 2026-08-08 14:25

В личку был задан вопрос: зачем я добавил в индюк ограничение истории?
Ответ: индюк в первой версии при запуске считал всю историю, а потом только новые бары. Во второй версии я добавил параметр History=500, т.е. теперь можно задать сколько бар влево индюк будет считать при запуске. При History=0 он будет считать всю историю, как в первой версии.

## mavidelisi — 2026-08-18 13:32

> Цитата (Genry_05):
> Genry(gm) Extended modification of the Kiosotto indicator.
> Now there are two operating modes: **Faithful and Smooth** .
> What else has been improved:
> 

> 
- No-Repaint - both modes look only to the past (i + j);
> 
- Incrementality - with each tick, 1–2 bars are recalculated, not the entire history;
> 
- Protection against division by zero and array out of bounds;
> 
- Reference line 1.0 is pressure neutral.
> 
- Performance **:** the greediness of the algorithm is reduced to a minimum of O(N⋅(Len+Lookback)).
> 

> You can hang both indicator instances next to each other (Faithful + Smooth) - the differences in their peaks give an excellent picture: **Faithful ** shows the momentum, **Smooth** - its stability.
>
> **Faithful  ** preserves the original Kyosotto's concept, but removes the bugs and lags of the old implementation. Period = 150
> **In Smooth,**   I retained the essence of the original (comparing buying and selling pressure, like RSI), but instead of "searching for extremes," I use "continuous weighting" (Stochastic-like weighting). This eliminates the "jaggedness" and zero values that appeared in the original when the price doesn't update the extremes. At the bottom of the histogram, the bullish and bearish lines, when crossed, signal a trend reversal. Period = 15.

Hi Genry thanks for indicator but i need this indicator source code. please provide me ?

@Genry_05

## Genry_05 — 2026-08-18 19:27

> Цитата (mavidelisi):
> Hi Genry thanks for indicator but i need this indicator source code. please provide me ?
>
> @Genry_05

```
enum FilterMode
{
   MODE_FAITHFUL, // Faithful: record peaks
   MODE_SMOOTH    // Smooth:
};

//--- Inputs
input FilterMode Mode        = MODE_FAITHFUL;
input int        Len         = 150;    // Accumulation (aggregation) period
input int        Lookback    = 20;     // Depth of extremum search (SMOOTH only)
input double     WeightFloor = 0.2;    // SMOOTH weight limiter (outlier protection)
input int        History     = 500;    // 0 = entire history; otherwise, the number of bars for calculation
//--
   SetIndexBuffer(0, UP);
   SetIndexBuffer(1, DN);
   SetIndexBuffer(2, bullWeight);
   SetIndexBuffer(3, bearWeight);

```

Problems arose due to Russian characters in the parameters?
This is the English version.

