명시

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

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


응답함

1
개발자 1
등급
(70)
프로젝트
87
57%
중재
6
67% / 17%
기한 초과
2
2%
로드됨
2
개발자 2
등급
(175)
프로젝트
187
47%
중재
3
33% / 33%
기한 초과
1
1%
로드됨
3
개발자 3
등급
프로젝트
0
0%
중재
0
기한 초과
0
무료
4
개발자 4
등급
(15)
프로젝트
22
45%
중재
6
33% / 33%
기한 초과
2
9%
로드됨
게재됨: 7 기고글, 35 코드
5
개발자 5
등급
프로젝트
0
0%
중재
0
기한 초과
0
무료
6
개발자 6
등급
프로젝트
0
0%
중재
0
기한 초과
0
무료
7
개발자 7
등급
(7)
프로젝트
6
0%
중재
4
25% / 75%
기한 초과
2
33%
무료
8
개발자 8
등급
(3)
프로젝트
9
67%
중재
0
기한 초과
0
작업중
9
개발자 9
등급
(6)
프로젝트
8
38%
중재
1
100% / 0%
기한 초과
2
25%
무료
10
개발자 10
등급
(12)
프로젝트
13
62%
중재
0
기한 초과
0
무료
11
개발자 11
등급
(13)
프로젝트
18
44%
중재
2
50% / 50%
기한 초과
0
무료
12
개발자 12
등급
(15)
프로젝트
20
25%
중재
2
50% / 0%
기한 초과
4
20%
작업중
13
개발자 13
등급
(10)
프로젝트
13
0%
중재
24
0% / 75%
기한 초과
4
31%
작업중
14
개발자 14
등급
(33)
프로젝트
34
41%
중재
0
기한 초과
3
9%
무료
15
개발자 15
등급
프로젝트
0
0%
중재
0
기한 초과
0
무료
16
개발자 16
등급
(1)
프로젝트
1
0%
중재
0
기한 초과
0
무료
게재됨: 3 코드
17
개발자 17
등급
(298)
프로젝트
478
40%
중재
105
40% / 24%
기한 초과
82
17%
로드됨
게재됨: 2 코드
18
개발자 18
등급
(8)
프로젝트
13
38%
중재
0
기한 초과
2
15%
무료
19
개발자 19
등급
프로젝트
0
0%
중재
0
기한 초과
0
무료
비슷한 주문
I need a robust optimization of my MT5 EA, mainly for XAUUSD (Gold). Please optimize the existing adjustable parameters such as entry/exit settings, SL/TP, trailing/break-even settings, and any other strategy parameters that are appropriate. I want the optimization focused on stable profitability, low/moderate drawdown, and robustness rather than simply the highest possible profit. Please use out-of-sample testing
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
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 +
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
ZONDII Scalpers 30+ USD
I need an Expert Advisor called ZONDII Scalpers for MT5 (MQL5). Timeframe: M5 Pairs: XAUUSD / EURUSD BUY when: Price > EMA200 and EMA50 crosses above EMA200 and RSI(14) > 50 SELL when: Price < EMA200 and EMA50 crosses below EMA200 and RSI(14) < 50 Risk: Fixed lot 0.01, SL 300 points, TP 600 points, Trailing start 200 points / step 100 points. Filter: Max spread 30 points. Only 1 trade at a time. Inputs must be
I am looking for a professional MT5 EA developer to build a high-performance trading bot specifically for XAUUSD (Gold). My target is approximately 200% return within 3 months, while keeping the drawdown and risk as controlled as reasonably possible. Requirements: MT5 Expert Advisor (EA) XAUUSD only Fully automated trading Clear risk management Stop Loss and Take Profit on trades No martingale or grid strategy unless
Hello, I’m looking for an experienced MT5 developer to build a professional Expert Advisor (EA) for trading Gold (XAUUSD). My requirements: Platform: MT5 Instrument: XAUUSD (Gold) Fully automatic trading Both BUY and SELL trades Adjustable lot size Stop Loss and Take Profit Trailing Stop / Break Even Daily maximum loss limit Maximum drawdown protection Maximum number of open trades Trading hours/session filter Spread
B6 EA 30 - 50 USD
Develop an Expert Advisor trading trend reversals. Reversal signals will be generated based on Price Action patterns. Trend will be determined based on ADX, Alligator and MACD, while the indicator selection should be available in the EA's input parameters

프로젝트 정보

예산
30+ USD
기한
 1 일