Specifiche

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

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


Con risposta

1
Sviluppatore 1
Valutazioni
(54)
Progetti
68
59%
Arbitraggio
4
75% / 25%
In ritardo
1
1%
Caricato
2
Sviluppatore 2
Valutazioni
(169)
Progetti
179
46%
Arbitraggio
3
33% / 33%
In ritardo
1
1%
In elaborazione
3
Sviluppatore 3
Valutazioni
Progetti
0
0%
Arbitraggio
0
In ritardo
0
Gratuito
4
Sviluppatore 4
Valutazioni
(12)
Progetti
15
33%
Arbitraggio
5
40% / 20%
In ritardo
1
7%
In elaborazione
Pubblicati: 6 articoli, 34 codici
5
Sviluppatore 5
Valutazioni
Progetti
0
0%
Arbitraggio
0
In ritardo
0
Gratuito
6
Sviluppatore 6
Valutazioni
Progetti
0
0%
Arbitraggio
0
In ritardo
0
Gratuito
7
Sviluppatore 7
Valutazioni
(7)
Progetti
6
0%
Arbitraggio
4
25% / 75%
In ritardo
2
33%
Gratuito
8
Sviluppatore 8
Valutazioni
Progetti
0
0%
Arbitraggio
0
In ritardo
0
Gratuito
9
Sviluppatore 9
Valutazioni
(5)
Progetti
7
29%
Arbitraggio
1
100% / 0%
In ritardo
2
29%
Gratuito
Ordini simili
Master mind 30+ USD
Start ↓ Detect Trend (H4) ↓ Confirm Structure (H1) ↓ Wait for Pullback ↓ Check Indicators ↓ Calculate Confidence Score ↓ Score ≥ 80? ├── No → Wait └── Yes ↓ Calculate Lot Size ↓ Place Order ↓ Set Stop Loss ↓ Set Take Profit ↓ Manage Trade ↓ Move to Break-even ↓ Trail Stop ↓ Close Trade. IF Price > EMA200 (H4) AND EMA50 > EMA200 (H4) AND ADX > 25 AND RSI between 55 and 70 AND MACD Main > Signal AND Bullish engulfing
EA Crafter 500+ USD
Act as a professional Quantitative Developer and Risk Manager. I want to build a systematic trading strategy rulebook that prioritizes capital preservation and statistical edge over raw performance. Please generate a structured trading strategy using the following framework: 1. ASSET CLASS & TIMEFRAME: - Asset: [e.g., Apple (AAPL), Bitcoin (BTC), or EUR/USD] - Timeframe: [e.g., 5-minute, 1-hour, Daily] 2. CORE
Part 1: Project setup Input settings (risk, stop loss, take profit, EMA periods) Indicator initialization Trade management framework Part 2: Trading logic EMA crossover detection Buy/Sell entry rules One-trade-per-symbol check Part 3: Risk management Automatic lot size calculation Stop-loss and take-profit placement Trade execution and error handling Part 4: Final touches On-screen information Optimization
Hello, I am reopening this project with a fully updated and clarified specification. I am looking for a high‑level MQL5 developer who can deliver a clean, stable, and professional Phase 1 version of my: Institutional‑Grade Multi‑Currency MT5 EA (A2SR + SMC + Smart Recovery + Smart Grid + Liquidity + Volatility + Safety Filters) This EA is not a simple indicator conversion or a basic strategy. It is a structured
I have an expert advisor's investor login. I want you to study it and make me the exact same EA. There should be absolutely no differences or mistakes. You should have great observation skills for this aswell
I am looking for an experienced MQL5 or MQL4 developer with a strong background in low-latency algorithmic trading, market data integration, arbitrage and execution optimization. The project involves developing a high-performance HFT Expert Advisor (EA) for XAUUSD or US30 on IC Markets that is designed for robust execution in both demo and live environments. The EA may use market data feeds (such as lmax,one zero or
I am looking for an experienced MQL5 or MQL4 developer with a strong understanding of high-frequency trading (HFT) concepts who can explain how certain HFT-style strategies have historically been able to pass proprietary firm evaluations while also being profitable on demo accounts and capable of transitioning successfully to live trading. I am interested in understanding the legitimate trading logic, execution
I require a custom EA and an accompanying custom indicator built in MQL5 for Meta Trader 4/5. The EA must be fully automated (Algo Trading); Telegram-Signal-Linked and named 'AMK Fx'

Informazioni sul progetto

Budget
30+ USD
Scadenze
a 1 giorno(i)

Cliente

Ordini effettuati1
Numero di arbitraggi0