Tâche terminée
Temps d'exécution 1 jour
Commentaires du client
Great job! Coded exactly to spec! Thank you
Commentaires de l'employé
Thanks a lot!
Spécifications
- Currently there is an existing Indicator that has a math calculation for pair basket heat.
- At the moment it does not have any buffers only a simple display.
This is the outline of the current indicator
Tree Arrays are defined
code line 51
string mk[28] = {"EURUSD", "GBPUSD", "AUDUSD", "USDJPY", "USDCHF", "USDCAD", "EURAUD", "EURCAD", "EURCHF", "EURGBP", "EURJPY", "GBPJPY", "GBPCHF", "NZDUSD", "AUDCAD", "AUDJPY", "CHFJPY","AUDNZD", "NZDJPY", "NZDCAD", "NZDCHF", "GBPNZD", "EURNZD", "GBPCAD", "GBPAUD", "AUDCHF", "CADCHF", "CADJPY"};
code line 59
string cc[8] = {"USD", "EUR", "GBP", "CHF", "JPY", "CAD", "AUD", "NZD"};
code line 62
double ccv[28][2];
The OnCalculate Strength() function
routine iterates through array
mk and cc to build the strength profile and then fills array with the a numeric value representing
the strength
code line 116 - Is the Strength function
void Strength() { int r; double x; double y; int j = 0; double rgs = 0; for(int z = 0; z < ArraySize(cc) ;z++) { rgs = 0; j = 0; for (int i = 0; i < ArraySize(mk); i++) { r = 0; x = 0; y = 0; symb.Name(mk[i]); if (cc[z] == StringSubstr(symb.Name(), 0, 3) || cc[z] == StringSubstr(symb.Name(), 3, 3)) { symb.Name(mk[i]); double h = H(symb.Name(), PERIOD_D1, 0); double l = L(symb.Name(), PERIOD_D1, 0); x = (h - l) * symb.Point(); if (x == 0.0) continue; double price = symb.Bid() + symb.Ask() / 2.0; y = 100.0 * ( price - 1.0 ) / x * ( symb.Point() ); if (y > 3.0) r = 1; if (y > 10.0) r = 2; if (y > 25.0) r = 3; if (y > 40.0) r = 4; if (y > 50.0) r = 5; if (y > 60.0) r = 6; if (y > 75.0) r = 7; if (y > 90.0) r = 8; if (y > 97.0) r = 9; j++; if (cc[z] == StringSubstr(symb.Name(), 3, 3)) r = 9 - r; rgs += r; } } if (j > 0) rgs /= j; else rgs = 0; ccv[z][0] = rgs; ccv[z][1] = z; } }
What I need done is the following
- Using the buffers already added to the Indicator, add the code necessary to fill the 8 buffers with the final value from the variable rgs
- You will find that rgs is already placing the strength in the cvv. So in addition to this, place this value in the correct buffer array.
Répondu
1
Évaluation
Projets
1464
72%
Arbitrage
122
29%
/
48%
En retard
358
24%
Travail
Publié : 3 articles
Commandes similaires
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
Maximas e Minimas + Super Trend
35+ USD
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
Hello Traders, Have a trading strategy or idea you want to automate? I specialize exclusively in MQL5 development, helping traders turn their concepts into professional trading solutions. Custom Expert Advisors — automate your strategy and reduce manual execution Custom Indicators — transform your market ideas into powerful trading tools Fix & Debug — identify errors and get your existing code working properly
I DO NOT need any programming or strategy development. I already have a working NinjaTrader 8 automated strategy based on a 3/5 EMA crossover. I need you to run my existing strategy through NinjaTrader Strategy Analyzer/Optimizer, test the existing adjustable parameters, and find robust settings with the best profit factor and lowest reasonable drawdown. I will provide the existing NinjaScript ZIP. I do not want the
I'm looking for an experienced developer to create an automated gold trading bot. The bot should be compatible with MetaTrader 4/5 and TradingView. Key Requirements: - Automated trading bot - Compatible with MetaTrader 4/5 and TradingView - Implement scalping and swing trading strategies Ideal Skills and Experience: - Proficiency in trading algorithms - Experience with gold trading - Familiarity with MetaTrader and
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
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
Hello, I need a custom NON-REPAINT MT5 indicator that gives sell/buy arrow signals 1–2 candlesticks before a spike on Crash and boom indices respectively occurs. Requirements: Works perfectly on MT5 Shows arrows before the spike (1–2 candles earlier). Non-repaint – once the arrow appears, it must stay. Should be accurate, not quantity — only quality signals. Must work on both demo and live accounts. I want the
Trading view to thinkorswim
30+ USD
Hello, I saw an indicator on TradingView and would like to know if you will be able to convert it for use on Thinkorswim platform? Thanks. if anyone can help me with it kindly do well to bid it urgent thanks looking forward too see you
Simthandile sim new indicator
40 - 300 USD
calcVolume( void ) { //--- MqlRates rates[]; if ( CopyRates ( _Symbol , PERIOD_CURRENT , startTime, endTime, rates) > 0 ) { double rangeHigh = rates[ 0 ].high, rangeLow = rates[ 0 ].low; int count = MathAbs ( iBarShift ( _Symbol , PERIOD_CURRENT , startTime) - iBarShift ( _Symbol , PERIOD_CURRENT , endTime)) + 1 ; //---VERTICAL PRICE RANGE for ( int b = 0
Informations sur le projet
Budget
30+ USD