Tarea técnica

Hello looking for someone to convert an indicator from tradingview to Thinkorswim I have attached the codes from trading view Also, I like make it trigger (alert) a one-time alert when the trend changes, and can also create a custom watchlist column that flags symbols currently in a new trend so you can scan multiple stocks easily. And like the watchlist to show only fresh trend changes or the current trend direction as well here is the code 

 

Trend Indicator A*V2 (smoothed Helkin Ashi Cloud) by DZIV

 

//@version=5

//

//╔════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╗

//║ Author  | DZIV (dzi_v_)

//║ Licence | CC BY-NC-SA 4.0 : https://creativecommons.org/licenses/by-nc-sa/4.0/

//╠════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╣

//║ Changelog :

//║ 2021.04.15 > A-V1.0 -First publish

//║ 2021.05.05 > A-V2.0 -Added high and low calculation and display

//║                     -Minor script optimisation

//║ 2021.05.06 > A-V2.1 -Added resolution customisation in the study

//║ 2021.10.18 > A-V2.2 -Added "MA Type" customisation possibility

//║                     -Replaced the "colour schemes" feature by a "base color inputs" feature (user friendly)

//║                     -Switched the title names to English for a better understanding

//║                     -Minor script optimisation

//║ 2024.04.21 > A-V2.3 -Switched to PineScript version 5

//║                     -Major script rethinking and optimisation

//║                     -Removed double smoothing for less lag

//║                     -Added ALMA, HMA and ZLEMA to the "MA Type" input string

//╚════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╝

//

//╔════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╗

//║ Settings :

indicator('Trend Indicator A (v2.3)', 'Trend Indicator A (v2.3)', true)

 

ma_type = input.string('EMA', 'MA Type', ['ALMA','HMA','SMA','SWMA','VWMA','WMA','ZLEMA','EMA'], group = 'Setup')

ma_period = input.int(9, 'MA Period (Length)', 1, group='Setup')

 

alma_offset = input.float(0.85, 'ALMA Shift', 0, 1, 0.05, group = 'Setup (ALMA)')

alma_sigma = input.int(6, 'ALMA Deviation', 1, step = 1, group = 'Setup (ALMA)')

 

show_line_1(x) =>

    input.bool(true, 'Show Close line', group = 'On/Off') ? x : na

show_line_2(x) =>

    input.bool(false, 'Show High/Low lines', group = 'On/Off') ? x : na

show_fill(x) =>

    input.bool(true, 'Show fill', group = 'On/Off') ? x : na

//╠════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╣

//║ Calculations :

f(x) =>

    switch ma_type

        'ALMA' => ta.alma(x, ma_period, alma_offset, alma_sigma)

        'HMA' => ta.hma(x, ma_period)

        'SMA' => ta.sma(x, ma_period)

        'SWMA' => ta.swma(x)

        'VWMA' => ta.vwma(x, ma_period)

        'WMA' => ta.vwma(x, ma_period)

        'ZLEMA' => ta.ema(x + x - x[math.floor((ma_period - 1) / 2)], ma_period)

        => ta.ema(x, ma_period)

 

ma_heikinashi_open = f(request.security(ticker.heikinashi(syminfo.tickerid), timeframe.period, open))

ma_heikinashi_close = f(request.security(ticker.heikinashi(syminfo.tickerid), timeframe.period, close))

ma_heikinashi_high = f(request.security(ticker.heikinashi(syminfo.tickerid), timeframe.period, high))

ma_heikinashi_low = f(request.security(ticker.heikinashi(syminfo.tickerid), timeframe.period, low))

 

trend = 100 * (ma_heikinashi_close - ma_heikinashi_open) / (ma_heikinashi_high - ma_heikinashi_low)

//╠════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╣

//║ Colors :

color_positive = input.color(color.new(#26A69A, 0), 'Positive color (Bullish)', group = 'Colors')

color_negative = input.color(color.new(#EF5350, 0), 'Negative color (Bearish)', group = 'Colors')

color_neutral = input.color(color.new(#808080, 0), 'Neutral color', group = 'Colors')

 

color_trend = trend > 0 ? color_positive : color_negative

//╠════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╣

//║ Plot :

plot_open = plot(ma_heikinashi_open, 'Open line', na)

plot_close = plot(ma_heikinashi_close, 'Close line', show_line_1(color_trend), 2)

plot_high = plot(ma_heikinashi_high, 'High line', show_line_2(color_neutral))

plot_low = plot(ma_heikinashi_low, 'Low line', show_line_2(color_neutral))

 

plot_highest = plot(math.max(ma_heikinashi_open, ma_heikinashi_close),'Highest Body line', na)

plot_lowest = plot(math.min(ma_heikinashi_open, ma_heikinashi_close),'Lowest Body line', na)

//╠════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╣

//║ Fill :

fill(plot_open, plot_close, color.new(color_trend,50), 'Open/Close Cloud')

fill(plot_high, plot_highest, show_fill(color.new(color_neutral,87.5)), title = 'High Cloud')

fill(plot_lowest, plot_low, show_fill(color.new(color_neutral,87.5)), title = 'Low Cloud')

//╚════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╝


Han respondido

1
Desarrollador 1
Evaluación
(70)
Proyectos
87
57%
Arbitraje
6
67% / 17%
Caducado
2
2%
Trabajando
2
Desarrollador 2
Evaluación
(175)
Proyectos
187
47%
Arbitraje
3
33% / 33%
Caducado
1
1%
Trabajando
3
Desarrollador 3
Evaluación
Proyectos
0
0%
Arbitraje
0
Caducado
0
Libre
4
Desarrollador 4
Evaluación
(15)
Proyectos
22
45%
Arbitraje
6
33% / 33%
Caducado
2
9%
Trabajando
Ha publicado: 7 artículos, 35 ejemplos
5
Desarrollador 5
Evaluación
Proyectos
0
0%
Arbitraje
0
Caducado
0
Libre
6
Desarrollador 6
Evaluación
Proyectos
0
0%
Arbitraje
0
Caducado
0
Libre
7
Desarrollador 7
Evaluación
(7)
Proyectos
6
0%
Arbitraje
4
25% / 75%
Caducado
2
33%
Libre
8
Desarrollador 8
Evaluación
(3)
Proyectos
9
67%
Arbitraje
0
Caducado
0
Trabaja
9
Desarrollador 9
Evaluación
(6)
Proyectos
8
38%
Arbitraje
1
100% / 0%
Caducado
2
25%
Libre
10
Desarrollador 10
Evaluación
(12)
Proyectos
13
62%
Arbitraje
0
Caducado
0
Libre
11
Desarrollador 11
Evaluación
(13)
Proyectos
18
44%
Arbitraje
2
50% / 50%
Caducado
0
Libre
12
Desarrollador 12
Evaluación
(15)
Proyectos
20
25%
Arbitraje
2
50% / 0%
Caducado
4
20%
Trabaja
13
Desarrollador 13
Evaluación
(10)
Proyectos
13
0%
Arbitraje
24
0% / 75%
Caducado
4
31%
Trabaja
14
Desarrollador 14
Evaluación
(33)
Proyectos
34
41%
Arbitraje
0
Caducado
3
9%
Libre
15
Desarrollador 15
Evaluación
Proyectos
0
0%
Arbitraje
0
Caducado
0
Libre
16
Desarrollador 16
Evaluación
(1)
Proyectos
1
0%
Arbitraje
0
Caducado
0
Libre
Ha publicado: 3 ejemplos
17
Desarrollador 17
Evaluación
(298)
Proyectos
478
40%
Arbitraje
105
40% / 24%
Caducado
82
17%
Trabajando
Ha publicado: 2 ejemplos
18
Desarrollador 18
Evaluación
(8)
Proyectos
13
38%
Arbitraje
0
Caducado
2
15%
Libre
19
Desarrollador 19
Evaluación
Proyectos
0
0%
Arbitraje
0
Caducado
0
Libre
Solicitudes similares
Composite robot 30 - 200 USD
Title: Multi-Timeframe Pure Price Action & Elliott Wave Execution Bot for XAUUSD 1. Project Overview I need a robust, automated trading bot (Expert Advisor) for MetaTrader 5 (MT5) to trade XAUUSD (Gold) exclusively. The strategy is built entirely on Top-Down Multi-Timeframe (MTF) market structure, pure price action, and Elliott Wave principles. It does not use traditional lagging technical indicators (like RSI or
Build a fully mechanical EA for XAUUSD on D1 timeframe. Trader spends 5-10 mins per day to run it. No discretion. EA calculates, places orders, and walks away. Timeframe Use the Daily (D1) timeframe . At the close of each completed daily candle, identify: Previous day's High (wick) Previous day's Low (wick) Previous day's Open
NinjaTrader 8 / NinjaScript Phase 1 build: convert an existing Auction Market Theory (AMT) strategy into objective, alert-only decision-support logic. Not a bot, no auto-execution — trades stay manual. Covers NQ/MNQ, ES, CL, MGC using 30-min TPO/Volume Profile context with 5-min confirmation: one 5-min close outside VAH/VAL = acceptance, close back inside = rejection. Dashboard shows bias, auction state, location
Hi i need help to connect my chat gtp with ninja trader I have all tools. Just need supervision and seeking a professional who can do that for me. This the bridge extension https://crosstrade.io/blog/chatgpt-to-ninjatrader-mcp-walkthrough
I need a pine script coder to automate my strategy (based on trendline) on tradingview platform. I simply need tradingview to open a position when the price touches the specified trendline with options to buy or sell and SL level. Please let me know if you are interested and I can give you exact details. Thank you
MT5 EA DEVELOPMENT SPECIFICATION CHANNEL + RSI REVERSAL STRATEGY I need a professional MetaTrader 5 Expert Advisor based on the following exact strategy. 1. Core Strategy The EA must automatically identify a valid price channel using confirmed swing highs and swing lows. The strategy trades reversals from the channel extremes: SELL: Upper channel + RSI above 70 + bearish rejection. BUY: Lower channel + RSI below 40 +
Senior MQL5 Developer Required — XAUUSD & BTCUSD Algorithmic EA I am looking for an experienced MQL5 developer to design and build a robust MT5 Expert Advisor for XAUUSD (Gold) and BTCUSD . This is not a request for a basic RSI/EMA EA, martingale, grid, or recovery system . I want a properly engineered algorithmic trading system with a demonstrable trading rationale, robust risk management, reliable execution and
Ai sadick 30+ USD
Fully automated entry and exit of trades. Identify market trends using price action and reliable technical indicators. Trade major Forex pairs and XAU/USD (Gold). Automatic Stop Loss and Take Profit on every trade. Adjustable risk management, with default risk of 1% per trade. Maximum daily loss protection to stop trading after a specified loss. Break-even and trailing-stop functions. Adjustable lot size, risk %
Hello there, I am looking for a automated strategy for ninjatrader 5 Looking for a proven profit factor of 1.5 ( minimum ) on 15 mins time frame . I do MNQ futures I do not have the logic, but I like mean reverssion variable , plus RSI etc . that could make the automated tool robust and long lasting. i need fast response if you have
Date:29.08.2026 **TECHNICAL SPECIFICATIONS** PDF Attached for reference rest all details given below. Required: Creation, Integration and successful execution of trading algo/robot in MT5 using MT5 VPS. Brokers: Trades to be executed in both brokers Swissquote and Pepperstone. Symbols: All available in MT5. ** Common parameters for all executions: · Manual Start/Stop. · Session time (defined / always

Información sobre el proyecto

Presupuesto
30+ USD
Plazo límite de ejecución
a 1 día(s)