IMG-LOGO

Steem/USDT Custom Indicator – Build Your Own Trading Tool [UA/EN]

luxalok - 2025-03-30 04:43:00


Навіщо створювати власний індикатор?


Із сивої давнини до нас прийшли класичні індикатори. Вони виникли за інших обставин, дещо відмінних від нинішніх. Деякі були для акцій й розраховувалися вручну. Інші – для валютних пар. Розвиток технологій привніс автоматизацію та різноманітні зміни в поведінці ринку. Є різні масиви вхідних даних, які можна аналізувати й трактувати під свою потребу й стиль торгівлі. Однак базові індикатори, які пропонують усталено на криптобіржах чи інших торгових терміналах, не дуже то й адаптуються до сучасності. Хоча це переважно на криптобіржах. Чого достатньо для початку, але можна їх використовувати ефективніше.


Власний індикатор буде показувати бажане. До того ж його можна краще адаптувати для торгівлі за допомогою ШІ.


Переважно вони всі мають універсальне використання, на кшталт Ліній Болінджера, Рівнів Фібоначчо чи Ковзних Середніх. І незважаючи на торгову

пару, добре себе показують. Тому STEEM/USDT не виняток. Хоча може мати особливості стосовно унікальних подій, пов'язаних із блокчейном та ончейн-даними. Просто кастомний індикатор може мати більше налаштувань, які дадуть змогу адаптуватися під індивідуальні особливості.


Концепція власного індикатора


Зараз є багато власних розробок, адже є різноманітні платформи, котрі цьому сприяють. Також ШІ значно полегшує завдання. Особливо, коли знань у програмуванні зовсім немає або дуже маленький мінімум, щоб орієнтуватися в деяких параметрах. Наприклад, є платформа TradingView, де можна робити власні індикатори мовою Pine Script. Також якось було помічено у торговому терміналі Binance можливість додавати власні індикатори у вигляді коду, але як воно діє, треба вивчати детальніше. Тому в мене простіший шлях.


На основі попередніх тем КриптоАкадемії виникла думка, що було б добре зробити візуальне відображення динамічних рівнів підтримки та опору на основі Книги Ордерів. До цього їх доводилося додавати вручну й підписувати. А на маленьких часових періодах вони часто змінюються. На жаль, до TradingView такі дані не постачаються, або ШІ мене обманув, бо перевіряти все – то дуже довга пісня. Тож спочатку легкий варіант.


Індикатор №1 "Динамічні підтримка та опір"




Загальна суть індикатора:


Його основна мета — візуалізувати цінові області, де відбувалися значні обсягові торги в минулому.


На основі чого він працює (Джерела даних):



  • Обсяг (Volume): Основний критерій для вибору "важливих" свічок.

  • Цінові дані свічок: Використовує конкретний ціновий рівень (за замовчуванням close, але налаштовується через i_price_source)

    свічок з високим обсягом.

  • Поточна ціна (close): Використовується для класифікації знайдених рівнів на підтримку та опір.

  • Час/Індекс бару: Для позиціонування ліній та міток.


Які дані надає (Візуалізація):


Індикатор малює на графіку:



  1. Рівні підтримки (Support): До i_levels_to_show (максимум 3 за замовчуванням) горизонтальних ліній (відображених як кола –

    plot.style_circles) нижче поточної ціни (за замовчуванням зелені). Вони відповідають цінам свічок з найбільшими обсягами за період огляду.

  2. Рівні опору (Resistance): До i_levels_to_show (максимум 3 усталено) горизонтальних ліній (кола) вище поточної ціни (за

    замовчуванням червоні). Також відповідають цінам свічок з найбільшими обсягами.

  3. Текстові мітки (Labels): Поруч із кожним відображеним рівнем на останньому барі з'являється мітка, що вказує його тип (S1, S2, S3 або

    R1, R2, R3) та точне цінове значення.


Як робить підрахунок (коротко): Цей індикатор знаходить свічки з найбільшим обсягом за певний період, бере їхні цінові рівні, фільтрує занадто близькі, розділяє на підтримку/опір відносно поточної ціни і відображає до трьох найближчих рівнів кожного типу за допомогою кіл (plot) та текстових міток (label). Він є спрощеною версією першого індикатора, сфокусованою лише на S/R рівнях від обсягу свічок.


№2 "Динамічні рівні + POC (проксі) та VWAP"







Загальна суть індикатора:


Трішки інформативніше, коли до рівнів додається POC та VWAP, але це не зовсім ті дані, які надаються в класичних індикаторах. Тож це

покращена версія попереднього + VWAP та POC Proxy.



  1. Рівні S/R на основі обсягу свічок: Визначає цінові рівні свічок з найбільшим обсягом за певний період.

  2. Проксі-POC (Point of Control): Наближено визначає рівень ціни з максимальним обсягом за той самий період (спрощений варіант POC з

    профілю обсягу).

  3. VWAP (Volume Weighted Average Price): Розраховує середньозважену за обсягом ціну та опціонально її стандартні відхилення (бенди).

    Враховує лише закриття.


На основі чого він працює (Джерела даних):



  • Цінові дані: Використовує ціни свічок (за замовчуванням close, але можна налаштувати через i_price_source).

  • Обсяг (Volume): Ключовий елемент для визначення рівнів S/R та розрахунку VWAP.

  • Час/Індекс бару: Для позиціонування міток та ліній на графіку.


Які дані надає (Візуалізація):


Індикатор відображає на графіку:



  1. Рівні підтримки/опору із високим обсягом.

  2. Проксі-POC: Позначається міткою "POC". Синя лінія.

  3. VWAP: Помаранчева.



    В налаштуваннях, окрім деяких параметрів по рівнях, є ще опція увімкнення чи вимкнення POC та VWAP.


Що в цьому унікального?


По-перше, подібні рівні є, але із врахуванням інших даних чи їх підрахунку та нанесення графічного ландшафту позначок. І вони можуть слугувати під різні цілі. В першу чергу, це зручність, щоб кожного разу не наносити вручну. По-друге, це лише прототип, хоча й ніби показує певний результат на графіку. Адже бажано до цього додати ще й рівні на основі Order Book, тоді буде цікавіше.


Використання індикатора №2


Основна генерація сигналів – це короткочасні угоди між рівнями опору та підтримки або на основі їх подолання. Може працювати на будь-якому часовому періоді, але на старших потрібно зменшувати кількість барів (свічок) для розрахунку у налаштуваннях. Бо на краю ціни можуть не відображатися важливі лінії

через недостатню кількість даних. Тож на дрібніших їх треба більше.


Значить, важливі рівні – це R1-3 та S1-3. Посилення дають POC та VWAP як одночасним їх перетином, так і окремо. Наприклад, на попередньому зображенні демонстрації індикатора є сильні підтримки S1 0.1250 та S2 0.1253, друга має також і POC, від них декілька разів відскакує ціна на 10+ пунктів. А

сильненькі опори R2 та R3 не дають піти вище, тож тимчасовий канал – цікаве місце, щоб зібрати загальною сумою пунктів 20-30 профіту.


Приклад зміни відображення рівнів відповідно до часового періоду та кількості свічок для розрахунку:

+ Свічок 75:

+ m3

+ H4

+ D1

+ Свічок 33:

+ D1

+ H4

+ m3


Якщо придивитися, то видно різницю. Тому поведінка індикатора буде залежати від цільових потреб, тобто налаштувань під них.


Переваги та недоліки індикатора


Переваги (Pros) / Сильні сторони:



  1. Поєднання декількох підходів в одне дає трішки краще орієнтуватися.

  2. Динамічна зміна: всі рівні, які відображаються, кожного разу перераховуються, залежно від заданого періоду. Що може відображати актуальну ситуацію.

  3. Рівні визначаються на основі обсягу, що може бути актуальніше, ніж просто ціна.

  4. Всі позначки і лінії добре видно на графіку, тож легко все сприймати та розуміти.

  5. Мінімум налаштувань: загалом це період (бари) та кількість свічок із максимумом, які беруться до розрахунку. Рівнів R та S для кожного може бути лише 3, тож їх кількість вдасться хіба що збільшити, редагуючи код індикатора.

  6. Присутність VWAP як стандартного інструменту для додаткового підтвердження.


Недоліки (Cons) / Обмеження:



  1. Спрощений POC (Проксі-POC): Це не справжній Point of Control з повноцінного профілю обсягу. Індикатор визначає лише ціновий рівень свічки з максимальним обсягом за період, а не ціновий рівень, де сумарно проторгувався найбільший обсяг всередині цього періоду. Це може бути менш точним, особливо якщо обсяг на свічці-лідері був розподілений по широкому діапазону.

  2. Рівні S/R на основі свічок: Аналогічно до POC, рівні S/R базуються на ціні (i_price_source, напр., ціна закриття) всієї свічки з високим обсягом, а не на точному ціновому рівні всередині свічки, де цей обсяг концентрувався.

  3. Залежність від lookback: Ефективність та релевантність рівнів сильно залежить від обраного періоду огляду (i_lookback). Занадто короткий період може генерувати багато "шуму", занадто довгий – показувати застарілі, вже неактуальні рівні.

  4. Відсутність сесійності VWAP (за замовчуванням): Стандартна функція ta.vwap у Pine Script розраховується кумулятивно від початку завантажених даних на графіку (або від точки прив'язки, якої тут немає). Для класичного інтрадей-використання VWAP часто потрібен його щоденний (або сесійний)

    перерахунок з нуля, чого цей скрипт автоматично не робить.

  5. Можливе перевантаження графіка: Відображення до 3 рівнів підтримки, 3 опору, POC та VWAP (з

    бендами) може зробити графік візуально складним для сприйняття.

  6. Реактивність, а не предиктивність: Як і більшість індикаторів, він базується на минулих даних і вказує на потенційні зони, але не гарантує майбутньої поведінки ціни. Рівні можуть бути легко пробиті.

  7. Фільтрація унікальності: Умова math.abs(price_level - existing_level) < syminfo.mintick * 2 для унікальності рівнів може відфільтрувати важливі, хоч і близькі, зони концентрації обсягу.


Коли він найбільш ефективний?



  1. На ліквідних інструментах: Де обсяги торгів є значними і достовірно відображають активність учасників ринку (акції з високим обігом, ліквідні ф'ючерси, основні криптовалюти). На низьколіквідних інструментах дані обсягу менш надійні.

  2. Для інтрадей та свінг-трейдингу:

    • Інтрадей: З коротшим lookback (наприклад, 50-150 барів на 5-15 хв графіку) для виявлення актуальних короткострокових рівнів та використання VWAP як динамічної підтримки/опору (з урахуванням обмеження щодо сесійності).

    • Свінг-трейдинг: З довшим lookback (наприклад, 100-250 барів на годинному або денному

      графіку) для ідентифікації більш вагомих історичних зон підтримки/опору.



  3. У періоди консолідації (рейндж): Рівні S/R, визначені за обсягом, можуть чітко окреслювати межі діапазону.

  4. У трендових ринках: Рівні можуть виступати як потенційні точки для входу на відкатах (підтримка в аптренді, опір в даунтренді) або як рівні для підтвердження пробою.

  5. Як допоміжний інструмент: Найкраще використовувати не ізольовано, а в комплексі з іншими методами аналізу (цінові патерни, трендові лінії, інші індикатори, фундаментальний аналіз) для підтвердження сигналів та визначення зон для розміщення стоп-лосів чи тейк-профітів.


Гіпотетичний сценарій використання індикатора


Так, тут буде гарна історія, як класично по тренду буде вері гуд та хепі-енд.


А що якщо використовувати рівні опору R та підтримки S, та POC із VWAP для підкріплення намірів?

Хронологія за нумерацією, нанесеною на знімок екрана:

1. Отже, 29 березня 2025 року. Ціна на сильній підтримці і трохи підростає;

2. Оскільки є низхідний тренд, а VWAP зверху (помаранчева) і є опір на POC, то є поступове зниження.

3. Закріплення під проміжним опором 0.1273;

4. Подолання підтримки, яка була в точці 1.

5. Нова S.



Далі ціла серія рухів у каналі із сильним опором 0.1263 та підтримкою 0.1254, підсвіченою ще як POC.

Тож 6, 8, 10, 12 – потенційні продажі, а 7, 9, 11, 13 – покупки. Тобто потенційно це 13 угод, які із

дотриманням ризиків та вчасною фіксацією доволі добре виглядають. Однак, враховуючи пріоритет

низхідного тренду, можна виділити перевагу точок 2, 3, 6, 8, 10, 12.


В обох випадках лінія POC, хоч вона і не повноцінна відносно цілісного Volume Profile, але теж додає

трішки впевненості.


До того ж STEEM/USDT – не дуже волатильна пара й прослизання має бути мінімальне або відсутнє, що

доволі добре.


Звичайно, малювати щось на історії й розповідати казки, як це добре, – то одна справа, а торгувати

реально на ринку – вже інша. Однак індикатор, в першу чергу, просто допомагає виділити вже сформовані

рівні й підсвітити, де вони можуть бути підсилені в моменті.




Інформація, наведена у дописі, не є рекомендацією для торгівлі й не гарантує прибутку. Все

представлено лише для ознайомлення. Індикатор, хоч і працює, але може потребувати доопрацювання. Тож

його надійність не гарантується, бо можуть бути й збої під час динамічних змін на ринку.




Джерела та використані ресурси:

1. Консультація із ШІ (та й хто ним не користується, хіба що не зізнаються).

2. Платформа TradingView.

3. Знімки екрана із графіком та прикладами індикатора зроблені на TradingView.



















EN translated by AI

Steem/USDT Custom Indicator – Build Your Own Trading Tool








Why Create Your Own Indicator?


Classic indicators have come down to us from a bygone era. They originated under different circumstances, somewhat distinct from today's. Some were designed for stocks and calculated manually. Others were for currency pairs. Technological advancements brought automation and various changes in market behavior. There are diverse sets of input data available that can be analyzed and interpreted according to one's needs and trading style. However, the basic indicators offered standardly on crypto exchanges or other trading terminals haven't fully adapted to modern times. This is particularly true for crypto exchanges. While they are sufficient to start with, they could be utilized more effectively.


A custom indicator will display precisely what you want to see. Furthermore, it can be better adapted for AI-assisted trading.


Most standard indicators have universal applications, like Bollinger Bands, Fibonacci Levels, or Moving Averages. And they tend to perform well regardless of the trading pair. Therefore, STEEM/USDT is no exception, although it might possess specific characteristics related to unique blockchain events and on-chain data. Simply put, a custom indicator can offer more settings, allowing for adaptation to individual particularities [of the asset or trading style].


Concept of a Custom Indicator**


Nowadays, many custom developments exist, thanks to various platforms that facilitate this. AI also significantly simplifies the task, especially when one has little to no programming knowledge, or just the bare minimum required to navigate some parameters. For instance, there's the TradingView platform, where you can create custom indicators using the Pine Script language. I also once noticed in the Binance trading terminal the possibility of adding custom indicators via code, but how exactly it works requires more detailed investigation. Hence, I took a simpler path.


Based on previous CryptoAcademy topics, the idea emerged to create a visual representation of dynamic support and resistance levels derived from the Order Book. Previously, these levels had to be added and labeled manually. And on smaller timeframes, they change frequently. Unfortunately, such Order Book data isn't supplied to TradingView, or perhaps the AI misled me, as verifying everything is a very lengthy process. So, starting with an easier option seemed prudent.


Indicator №1 "Dynamic Support and Resistance"




Overall Indicator Concept:


Its main purpose is to visualize price areas where significant trading volume occurred in the past.


Basis of Operation (Data Sources):



  • Volume: The primary criterion for selecting "important" candles.

  • Candle Price Data: Uses a specific price level (default close, but configurable via i_price_source) from high-volume candles.

  • Current Price (close): Used to classify the identified levels as support or resistance.

  • Time/Bar Index: For positioning lines and labels on the chart.


Data Provided (Visualization):


The indicator plots on the chart:



  1. Support Levels: Up to i_levels_to_show (default max 3) horizontal lines (displayed as circles - plot.style_circles) below the current price (default green). They correspond to the prices of candles with the highest volumes within the lookback period.

  2. Resistance Levels: Up to i_levels_to_show (default max 3) horizontal lines (circles) above the current price (default red). They also correspond to the prices of candles with the highest volumes.

  3. Text Labels: Next to each displayed level on the most recent bar, a label appears indicating its type (S1, S2, S3 or R1, R2, R3) and its precise price value.


How Calculation Works (Briefly): This indicator finds candles with the highest volume over a specified period, takes their price levels, filters out levels that are too close together, classifies them as support/resistance relative to the current price, and displays up to three of the nearest levels of each type using circles (plot) and text labels (label). It is a simplified version of the second indicator, focusing solely on S/R levels derived from candle volume.


№2 "Dynamic Levels + POC (Proxy) and VWAP"








Overall Indicator Concept:


This version is slightly more informative as it adds POC and VWAP to the levels, although these aren't exactly the same data points provided by their classic counterparts. Thus, it's an enhanced version of the previous indicator, incorporating VWAP and a POC Proxy.



  1. Volume-Based S/R Levels: Identifies price levels of candles with the highest volume over a defined period.

  2. Proxy Point of Control (POC): Approximates the price level with the maximum volume within the same period (a simplified version of POC from a volume profile).

  3. Volume Weighted Average Price (VWAP): Calculates the volume-weighted average price, optionally including standard deviation bands. It only considers the closing price for its VWAP calculation input.


Basis of Operation (Data Sources):



  • Price Data: Uses candle prices (default close, configurable via i_price_source).

  • Volume: The key element for determining S/R levels and calculating VWAP.

  • Time/Bar Index: For positioning labels and lines on the chart.


Data Provided (Visualization):


The indicator displays on the chart:



  1. High-Volume Support/Resistance Levels.

  2. Proxy POC: Marked with a "POC" label. Blue line.

  3. VWAP: Orange line.



    In the settings, besides parameters for the levels, there is also an option to enable or disable the

    POC and VWAP components.


What's Unique About This?


Firstly, similar levels exist, but they might utilize different data, calculation methods, or

graphical representations. They can serve various purposes. Primarily, this indicator offers convenience, eliminating the need to plot levels manually each time. Secondly, this is merely a prototype, although it appears to show some tangible results on the chart. Ideally, adding levels based on the Order Book would make it even more compelling.


Using Indicator №2


The primary signal generation involves short-term trades between support and resistance levels or trading breakouts of these levels. It can function on any timeframe, but on higher timeframes, the number of bars (candles) used for calculation in the settings should typically be reduced. This is because important levels might not be displayed near the current price edge if there's insufficient data within the lookback period. Consequently, more bars are generally needed on smaller timeframes.


The significant levels are R1-3 and S1-3. POC and VWAP provide reinforcement, either through simultaneous crosses of price through them or individually. For example, in the previous demonstration image, there are strong supports at S1 0.1250 and S2 0.1253; the second one also coincides with the POC. The price bounces off these levels several times by 10+ points. Meanwhile, the strong resistances R2 and R3 prevent the price from going higher, making the temporary channel an interesting area to potentially capture 20-30 points of profit in total.


Example of how level display changes based on timeframe and the number of calculation candles:

+ 75:

+ m3

+ H4

+ D1

+ 33 :

+ D1

+ H4

+ m3


If you look closely, the difference is noticeable. Therefore, the indicator's behavior will depend on the specific objectives, meaning the settings chosen to meet them.


Pros and Cons of the Indicator


Advantages (Pros) / Strengths:



  1. Combining several approaches into one provides slightly better orientation.

  2. Dynamic updates: All displayed levels are recalculated on each new bar based on the set period, potentially reflecting the current market situation.

  3. Levels are determined based on volume, which can be more relevant than price alone.

  4. All markings and lines are clearly visible on the chart, making them easy to perceive and understand.

  5. Minimal settings: Primarily the lookback period (bars) and the number of highest volume candles used for calculation. There can only be up to 3 R and S levels each; increasing this number would require editing the indicator's code.

  6. Inclusion of VWAP as a standard tool for additional confirmation.


Disadvantages (Cons) / Limitations:



  1. Simplified POC (Proxy POC): This is not a true Point of Control from a full volume profile. The indicator only identifies the price level of the single candle with the maximum volume within the period, not the price level where the most volume was cumulatively traded within that period. This can be less accurate, especially if the volume on the leading candle was distributed over a wide range.

  2. Candle-Based S/R Levels: Similar to the POC, S/R levels are based on a single price point (i_price_source, e.g., the closing price) of the entire high-volume candle, not on the exact price level within the candle where the volume was concentrated.

  3. Lookback Dependency: The effectiveness and relevance of the levels strongly depend on the chosen lookback period (i_lookback). Too short a period can generate a lot of "noise," while too long a period might show outdated, irrelevant levels.

  4. Lack of Session Reset for VWAP (by default): The standard ta.vwap function in Pine Script calculates cumulatively from the beginning of the loaded chart data (or from an anchor point, which isn't used here). Classic intraday VWAP usage often requires a daily (or session-based) reset to zero, which this script does not perform automatically.

  5. Potential Chart Clutter: Displaying up to 3 support levels, 3 resistance levels, POC, and VWAP (with bands) can make the chart visually complex to interpret.

  6. Reactive, Not Predictive: Like most indicators, it is based on past data and indicates potential zones of interest but does not guarantee future price behavior. Levels can easily be broken.

  7. Uniqueness Filtering: The condition math.abs(price_level - existing_level) < syminfo.mintick * 2 for level uniqueness might filter out important, albeit close, zones of volume concentration.


When is it Most Effective?



  1. On Liquid Instruments: Where trading volumes are significant and reliably reflect market participant activity (high-turnover stocks, liquid futures, major cryptocurrencies). On low-liquidity instruments, volume data is less reliable.

  2. For Intraday and Swing Trading:

    • Intraday: With a shorter lookback (e.g., 50-150 bars on a 5-15 min chart) to identify relevant short-term levels and use VWAP as dynamic support/resistance (keeping the session reset limitation in mind).

    • Swing Trading: With a longer lookback (e.g., 100-250 bars on an hourly or daily chart) to identify more significant historical support/resistance zones.



  3. During Consolidation Periods (Range): S/R levels defined by volume can clearly delineate the boundaries of the range.

  4. In Trending Markets: Levels can act as potential entry points on pullbacks (support in an uptrend, resistance in a downtrend) or as levels for breakout confirmation.

  5. As a Supplementary Tool: Best used not in isolation, but in conjunction with other analysis methods (price patterns, trend lines, other indicators, fundamental analysis) to confirm signals and identify zones for placing stop-losses or take-profits.


Hypothetical Usage Scenario


Yes, here comes a nice story, like a classic trend-following scenario with a very good and happy ending.


But what if we use the resistance (R) and support (S) levels, along with POC and VWAP, to reinforce our trading intentions? Chronology according to the numbering on the screenshot:

1. So, March 29, 2025. The price is at strong support and slightly rising;

2. Since there's a downtrend, VWAP is above (orange line), and there's resistance at the POC, a gradual decline occurs.

3. Consolidation below the intermediate resistance at 0.1273;

4. Breaking through the support that was at point 1.

5. A new S level forms.



Next, a whole series of movements within a channel with strong resistance at 0.1263 and support at 0.1254, which is also highlighted as POC. Therefore, points 6, 8, 10, 12 are potential sell opportunities, while 7, 9, 11, 13 are potential buy opportunities. This potentially represents 13 trades that, with proper risk management and timely profit-taking, look quite promising. However, considering the priority of the downtrend, points 2, 3, 6, 8, 10, 12 could be favored.


In both scenarios, the POC line, although not a fully-fledged Volume Profile POC, still adds a bit of confidence.


Moreover, STEEM/USDT is not a very volatile pair, so slippage should be minimal or absent, which is quite advantageous.


Of course, drawing on historical charts and telling tales of how well it works is one thing, but trading live in the market is another matter entirely. However, the indicator, primarily, simply helps to highlight already formed levels and indicates where they might be reinforced at a given moment.




The information provided in this post is not a trading recommendation and does not guarantee profit. Everything presented is for informational purposes only. The indicator, although functional, may require further development. Therefore, its reliability is not guaranteed, as malfunctions may occur during dynamic market changes.




Sources and Resources Used:

1. Consultation with AI (and who doesn't use it, they just might not admit it).

2. TradingView Platform.

3. Screenshots of the chart and indicator examples were taken on TradingView.




ukraine #cryptoacademy-s23w6 #crypto #steemexclusive #clubgoldendragon