Trabajo finalizado

Plazo de ejecución 11 horas
Comentario del Cliente
Fabio is an AMAZING developer! Plus he was able to completely SATISFY my needs and in TIME! Higly RECOMMENDED!!!
Comentario del Ejecutor
Understandable, smart and very collaborative! Thanks for the interesting project, I hope to work again together!

Tarea técnica

Indicator representing the number of pips per each bar that indicates the range amplitude in pips against the last maximum or minimum

The idea of ​​the indicator


First identify max and min values in the bars (eg. You can do that using a zig zag indicator).
The indicator is aimed to understand what is the maximum distance in terms of pips from the last maximum without a sensible retracement.
When the indicator reaches a certain threshold of retracement given as input parameter than it is reset.


From the last maximum point
Per each subsequent bar the indicator represents two graphs (only positive bars):

  • Graph 1: the highest distance in pips of the bar from the previous identified maximum
  • Graph 2: the % of the distance reached by the current bar compared to the total pips of the distance from the maximum and the last minimum

Example:
If the last maximum is 1.23100, subsequent last minimum is 1.20000, current bar maximum point reaches 1.22000 then the indicator represents 2 graphs:

  • A positive bar of length 1.100 (pips) = 1.23100 – 1.22000
  • A percentage of 35,5% = 1.100 / (1.23100 – 1.20000)


Please consider that the Zig Zag indicator should be visibile on the main graph

Reset of the indicator
There is a threshold to be introduced as an input parameter for the indicator that represents the % of reset (to be compared with the graph 2): let’s call it “K”
If (current bar maximum - last minimum) (last maximum – last minumum) = K then the indicator is reset.
In the previous example:
K = 35%
If the last maximum is 1.23100, subsequent last minimum is 1.20000, current bar maximum point reaches 1.22000 then the indicator represents 2 graphs:
A positive bar of length 1.100 (pips) = 1.23100 – 1.22000
A percentage of 35,5% = 1.100 / (1.23100 – 1.20000)
Then the indicator is reset since it reached the threshold of 35%.

If K = 100% then the current bar maximum should reach the last maximum point (1.23100) in order for the indicator to reset.

From the last minimum point
The indicator behaves the same behavior of the maximum but at the opposite (painting only negative bars)


  • Point 1 red is identified as maximum
  • Point 1 green is identified as subsequent minimum
  • From point 1 green and point 2 red: the indicator shows 2 graphs
    • One graph represents bars each one showing the minimum distance from the point 1 red (ie. The current bar maximum – the last maximum)
    • One graph represents the % of minimum distance of the current bar (ie. Max of current bar versus the last macimum) compared to the total range identified from the distance between point 1 green and point 1 red


If the K threshold is set to 40% then the indicator is reset


Configuration panel
The panel should include:
The configuration parameters of the underlying zig zag indicator
The threshold K level to reset the indicator (ranging from 0% - 100%)




Han respondido

1
Desarrollador 1
Evaluación
(208)
Proyectos
297
54%
Arbitraje
0
Caducado
1
0%
Libre
Ha publicado: 6 ejemplos
2
Desarrollador 2
Evaluación
(195)
Proyectos
395
28%
Arbitraje
155
20% / 52%
Caducado
112
28%
Libre
3
Desarrollador 3
Evaluación
(82)
Proyectos
86
57%
Arbitraje
25
0% / 84%
Caducado
19
22%
Libre
4
Desarrollador 4
Evaluación
(618)
Proyectos
721
33%
Arbitraje
46
48% / 41%
Caducado
14
2%
Trabajando
5
Desarrollador 5
Evaluación
(807)
Proyectos
1127
43%
Arbitraje
47
49% / 23%
Caducado
84
7%
Libre
6
Desarrollador 6
Evaluación
(131)
Proyectos
211
86%
Arbitraje
2
0% / 50%
Caducado
8
4%
Libre
Solicitudes similares
Project Description I am looking for an experienced MQL5/MT5 Expert Advisor developer to develop an automated trading EA for XAUUSD on the M3 timeframe , running on an Exness account . The EA will automate a manual strategy based on SNR/GAP zones , using two setup types: Price Rejection Price Correction The EA should identify valid BUY/SELL setups around predefined SNR/GAP areas, apply configurable RSI, SMA, EMA and
Modification of Trade_Panel_7 7.05 Objective . I have this utility “Trade_Panel_7 7.05” with which I open and close positions. Please refer to attached “Trade Panel Modification.jpg”. It shows an input parameter “Volume Step”. This parameter has the initial value of 0.02 as shown. This feature needs to be amended. Present Status . Value of lot size is increased by this “Volume Step”. I have built a whole series of
Indicador Maximas e Minimas + Super Trend O Indicador MAX/MIN é um indicador de análise técnica para o MetaTrader 5 , desenvolvido para ajudar você a identificar regiões importantes de preço e possíveis oportunidades de compra e venda. O que ele faz MAX/MIN: identifica máximas e mínimas relevantes do mercado e mostra os preços no gráfico. HH / HL / LH / LL: ajuda a visualizar a estrutura do mercado, mostrando quando
please share: Strategy description — entry/exit rules, indicators used, timeframe(s), and instrument(s) (a written explanation, screenshots, or an existing indicator/EA to reference all work) Risk management rules — position sizing method (fixed lot / % risk), stop loss / take profit logic, max drawdown or daily loss limits, and whether martingale/grid/hedging is involved Broker & account details — broker name
I need a unique grid trading system for XAUUSD that combines entry, controlled two-sided grid expansion, DCA (Dollar Cost Averaging) basket profit control, hedging. Unlike traditional grid EAs that only trade against price, this unique grid system should dynamically build positions in both directions based on market movement, allowing flexible adaptation to changing conditions ie the grid needs to dynamically move
I need an experienced MQL5 developer to create a fully automated MT5 Expert Advisor called Ayoub Gold EA , focused exclusively on XAUUSD (Gold) . Main requirements: Platform: MT5 / MQL5. Fully automated BUY and SELL trading on XAUUSD. Must support broker suffixes such as XAUUSD, XAUUSD.f and XAUUSDm. Trading strategy based mainly on Range Breakout with trend confirmation. EMA, ADX and ATR filters. London/New York
Looking for an experienced Sierra Chart ACSIL/C++ developer to customize an existing footprint chart. I need 3 things: 7-Day ATR – calculate and display a configurable 7-day ATR. Custom Footprint – modify my existing footprint chart to match my preferred layout/data display. Automatic LVN – detect and plot Low Volume Nodes automatically based on volume distribution. I already have a working footprint chart, so no
//———————————————————————————————————————————————————————————————————— 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
SPECIFICA TECNICA 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 comportamento alle diverse condizioni di mercato di XAUUSD. Lo sviluppatore può utilizzare tecniche appropriate quali trend Following

Información sobre el proyecto

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