Specification

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')

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


Responded

1
Developer 1
Rating
(70)
Projects
87
57%
Arbitration
6
67% / 17%
Overdue
2
2%
Loaded
2
Developer 2
Rating
(175)
Projects
187
47%
Arbitration
3
33% / 33%
Overdue
1
1%
Loaded
3
Developer 3
Rating
Projects
0
0%
Arbitration
0
Overdue
0
Free
4
Developer 4
Rating
(15)
Projects
22
45%
Arbitration
6
33% / 33%
Overdue
2
9%
Loaded
Published: 7 articles, 35 codes
5
Developer 5
Rating
Projects
0
0%
Arbitration
0
Overdue
0
Free
6
Developer 6
Rating
Projects
0
0%
Arbitration
0
Overdue
0
Free
7
Developer 7
Rating
(7)
Projects
6
0%
Arbitration
4
25% / 75%
Overdue
2
33%
Free
8
Developer 8
Rating
(3)
Projects
9
67%
Arbitration
0
Overdue
0
Working
9
Developer 9
Rating
(6)
Projects
8
38%
Arbitration
1
100% / 0%
Overdue
2
25%
Free
10
Developer 10
Rating
(12)
Projects
13
62%
Arbitration
0
Overdue
0
Free
11
Developer 11
Rating
(13)
Projects
18
44%
Arbitration
2
50% / 50%
Overdue
0
Free
12
Developer 12
Rating
(15)
Projects
20
25%
Arbitration
2
50% / 0%
Overdue
4
20%
Working
13
Developer 13
Rating
(10)
Projects
13
0%
Arbitration
24
0% / 75%
Overdue
4
31%
Working
14
Developer 14
Rating
(33)
Projects
34
41%
Arbitration
0
Overdue
3
9%
Free
15
Developer 15
Rating
Projects
0
0%
Arbitration
0
Overdue
0
Free
16
Developer 16
Rating
(1)
Projects
1
0%
Arbitration
0
Overdue
0
Free
Published: 3 codes
17
Developer 17
Rating
(298)
Projects
478
40%
Arbitration
105
40% / 24%
Overdue
82
17%
Loaded
Published: 2 codes
18
Developer 18
Rating
(8)
Projects
13
38%
Arbitration
0
Overdue
2
15%
Free
19
Developer 19
Rating
Projects
0
0%
Arbitration
0
Overdue
0
Free
Similar orders
EA FOREX 30 - 500 USD
Je cherche un développeur pour créer un robot de trading multi pair Forex, par multi pair j’entends un graphique pour plusieurs pair de façon autonome sans grid ou très légères pour un bon rendement mensuel safe et rentable n’hésitez pas à revenir vers moi
//———————————————————————————————————————————————————————————————————— struct S_MCAV { double matureSum; double totalSum; double value; void Init () { matureSum = 0.0; totalSum = 0.0; value = 0.5; } void AddContext (int ctx) { totalSum += 1.0; if (ctx == 1) matureSum += 1.0; } void ApplyDecay (double rate) { matureSum *= rate; totalSum *= rate; } void Update () {
1. Title Development of a Custom MQL5 Expert Advisor for XAUUSD (MetaTrader 5) 2. Requirements Specification Overview: I am looking for an experienced MQL5 developer to build a robust, fully custom Expert Advisor (EA) for MetaTrader 5 tailored for trading Gold (XAUUSD). Core Specifications & Features: Asset & Timeframe: Designed specifically for XAUUSD. Timeframe should be selectable directly from the EA inputs
Cerco uno sviluppatore MQL5 esperto per sviluppare da zero un Expert Advisor completamente nuovo per XAUUSD su MT5. Non desidero un semplice Expert Advisor basato su indicatori fissi. Desidero un sistema di trading dinamico e adattivo, in grado di adattare il proprio comportamento alle mutevoli condizioni di mercato di XAUUSD. Lo sviluppatore dovrebbe essere libero di combinare qualsiasi tecnica ritenuta opportuna
I am looking for a Senior MQL5 Developer to create a new MetaTrader 5 Expert Advisor from scratch. I will provide a complete Requirements Specification containing objective entry, exit and risk-management rules. This is not a request to copy or decompile an existing product. Project requirements: Clean and modular MQL5 source code. Exact implementation of the supplied strategy. One signal evaluation per configured
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
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 +
1. PROJECT OVERVIEW Development of a custom automated and manual trading bot for NinjaTrader 8, primarily designed for Nasdaq Futures (NQ/MNQ). The bot will contain the original trading strategy, configurable risk management, automatic and manual operating modes, alerts, profit/loss management, partial profit taking, Break Even, backtesting functionality, and the additional configurable contract-averaging system
I need I trading robot with a dashboard for stop and start working 99%accurate profit while scalping me the user only putting password of mt5 then I run it that doesn't take a long time to process a trade and always making sure that altlest it makes 500dollars per day using 0.05 lot size

Project information

Budget
30+ USD
Deadline
to 1 day(s)