Convert custom pinescript indicator to MT4

MQL4 Indicatori In conversione

Lavoro terminato

Tempo di esecuzione 7 giorni

Specifiche

Dears Developer,

I am looking for an expert coder to complete a small pinescript  to mt4:


Here is the code.

if you can convert it today within a few hours please let me know.


//@version=4

// This source code is subject to the terms of the Mozilla Public License 2.0 at https://mozilla.org/MPL/2.0/

// © RedKTrader


study("Comp_Ratio_MA", shorttitle = "CoRa Wave", overlay = true, resolution ="")


// ======================================================================    

// Compound Ratio Weight MA function

// Compound Ratio Weight is where the weight increases in a "logarithmicly linear" way (i.e., linear when plotted on a log chart) - similar to compound ratio

// the "step ratio" between weights is consistent - that's not the case with linear-weight moving average (WMA), or EMA 

// another advantage is we can significantly reduce the "tail weight" - which is "relatively" large in other MAs and contributes to lag

//

// Compound Weight ratio     r = (A/P)^1/t - 1

// Weight at time t         A = P(1 + r)^t 

//                            = Start_val * (1 + r) ^ index

// Note: index is 0 at the furthest point back -- num periods = length -1

//

f_adj_crwma(source, length, Start_Wt, r_multi) =>

    numerator = 0.0, denom = 0.0, c_weight = 0.0

    //Start_Wt = 1.0    // Start Wight is an input in this version - can also be set to a basic value here.

    End_Wt = length     // use length as initial End Weight to calculate base "r"

    r = pow((End_Wt / Start_Wt),(1 / (length - 1))) - 1

    base = 1 + r * r_multi

    for i = 0 to length -1

        c_weight    := Start_Wt * pow(base,(length - i))

        numerator   := numerator + source[i] * c_weight 

        denom       := denom + c_weight

    numerator / denom    

// ====================================================================== ==   


data        = input(title = "Source",                 type = input.source,      defval = hlc3)

length      = input(title = "length",                 type = input.integer,     defval = 20,  minval = 1)

r_multi     = input(title = "Comp Ratio Multiplier",  type = input.float,       defval = 2.0, minval = 0, step = .1)

smooth      = input(title = "Auto Smoothing",         type = input.bool,        defval = true,                    group = "Smoothing")

man_smooth  = input(title = "Manual Smoothing",       type = input.integer,     defval = 1, minval = 1, step = 1, group = "Smoothing")


s           = smooth ? max(round(sqrt(length)),1) : man_smooth

cora_raw    = f_adj_crwma(data, length, 0.01, r_multi)    

cora_wave   = wma(cora_raw, s)


c_up        = color.new(color.aqua, 0)

c_dn        = color.new(#FF9800   , 0)

cora_up     = cora_wave > cora_wave[1]

plot(cora_wave, title="Adjustible CoRa_Wave", color = cora_up ? c_up : c_dn, linewidth = 3)


Con risposta

1
Sviluppatore 1
Valutazioni
(38)
Progetti
50
10%
Arbitraggio
1
0% / 0%
In ritardo
8
16%
Gratuito
2
Sviluppatore 2
Valutazioni
(132)
Progetti
178
39%
Arbitraggio
4
25% / 50%
In ritardo
14
8%
Gratuito
3
Sviluppatore 3
Valutazioni
(94)
Progetti
190
66%
Arbitraggio
8
25% / 50%
In ritardo
2
1%
Gratuito
4
Sviluppatore 4
Valutazioni
(315)
Progetti
353
71%
Arbitraggio
6
50% / 33%
In ritardo
20
6%
Caricato
Ordini simili
Требуется напи сать пользовательский форекс-индикатор на основе стандартного индикатора ZigZag для торговой платформы МТ5 с фильтрацией колен (граней) по их минимальной длине. Пояснение: используя стандартный индикатор ZigZag для МТ5, добавить в его настройки функцию\опцию задания минимальной длины граней зигзага (чтобы индикатор игнорировал мелкие грани, а рисовал \ отмечал только те грани, длина которых составляет
ZigZag based on oscillators is needed The idea of ​​the indicator Create a ZigZag indicator, which is constructed based on extreme values determined using oscillators. It can use any classical normalized oscillator, which has overbought and oversold zones. The algorithm should first be executed with the WPR indicator, then similarly add the possibility to draw a zigzag using the following indicators: CCI Chaikin RSI
TrendPulse EMA Wick EA 50 - 200 USD
EA specification for MT5 developer (coder‑ready spec) You can copy‑paste this directly into an MQL5 Freelance job. --- 1. General * Platform: MetaTrader 5 (MT5) * Type: Expert Advisor (EA) * Markets: Major FX pairs (configurable list via inputs) * Execution: Market orders only * Timeframes: EA must work on any timeframe, but I will mainly use it on M15–H1 --- 2. Indicators & definitions * EMA 20: Exponential Moving
looking for a highly experienced mql5 developer to build a professional trading ea based on multi timeframe top down analysis and market structure concepts the system should combine higher timeframe context with lower timeframe execution and provide both precise logic and clean visual representation on chart ⸻ core requirements • implementation of multi timeframe logic higher timeframe bias combined with lower
Hey I need help with the development of my ea. I am using a built in indicator and a custom indicator. It shouldn't take too long. I will tell you the conditions and then I just need some help with the coding but I have some experience. Thanks we can chat on whatsap or telegram
I am looking for an experienced MQL4/MQL5 developer to build a custom MT4 indicator from scratch or cracking my ex4 file that i provide to you. I already have an existing indicator (EX4) which produces highly accurate buy/sell signals. I want a similar indicator developed based on its observable behavior and signal structure. my existing indicator is pc id protected so you have to do PC ID security bypass and source
RSI indicator 130 - 150 USD
The Relative Strength Index (RSI) is a technical momentum indicator measuring the speed and change of price movements, scaled from 0 to 100 to identify overbought (>70) or oversold (<30) conditions. Developed by J. Welles Wilder Jr., it helps traders spot potential trend reversals or corrections.Imagine a stock, XYZ, is trending upwards.Overbought Signal: The price increases sharply, and the RSI rises to 75. This
📌 Project Overview: I need a full Smart Trade Management System for MetaTrader 4/5. This is a complete trading ecosystem, not a simple EA. 📌 Core Features: Smart Money Management (risk-based lot calculation) Advanced Trading Toolbox (TradingView-style drawing tools) Central Master Dashboard (risk, filters, account control) Multi-account monitoring (MT4/MT5 synchronization) Real-time monitoring (spread, equity
Hi, I am looking for someone to create me a trading indicator that will scalp the market 30-90 pips successfully in high volumes, I would like to be able to bridge this to create a signal channel for my community so it would need to have buy and sell indication on the indicator we run quite small stop losses so execution of trades can’t go in to draw down much alternatively create me a MT5 EA bot that scalps the
Alert indicator 30+ USD
I want an alert indicator using moving average and another one is customized indicator, but i don't have it's source file. is it possible? if yes let me know we will discuss further

Informazioni sul progetto

Budget
30+ USD
Scadenze
a 1 giorno(i)