Abu Gefx Indicator for MT5

C++ 전문가 C++ JavaScript

명시

//+------------------------------------------------------------------+ //| Scalping Indicator for MT5                                       | //+------------------------------------------------------------------+ #property indicator_chart_window #property indicator_buffers 3  // RSI input int RSI_Period = 14; // BB input int BB_Period = 20; input double BB_Deviation = 2.0;  double bb_up[], bb_mid[], bb_dn[];  int OnInit() {    SetIndexBuffer(0, bb_up);    SetIndexBuffer(1, bb_mid);    SetIndexBuffer(2, bb_dn);        PlotIndexSetString(0, "BB Upper");    PlotIndexSetString(1, "BB Mid");    PlotIndexSetString(2, "BB Lower");        return(INIT_SUCCEEDED); }  int OnCalculate(const int rates_total, const int prev_calculated, const int begin,                 const double &open[], const double &high[], const double &low[], const double &close[],                 const long &tick_volume[], const long &volume[], const int &spread[]) {        double rsi_val = iRSI(_Symbol, _Period, RSI_Period, PRICE_CLOSE);        double bb_up_val, bb_mid_val, bb_dn_val;    bb_up_val = iBands(_Symbol, _Period, BB_Period, BB_Deviation, 0, PRICE_CLOSE, MODE_UPPER);    bb_mid_val = iBands(_Symbol, _Period, BB_Period, BB_Deviation, 0, PRICE_CLOSE, MODE_MAIN);    bb_dn_val = iBands(_Symbol, _Period, BB_Period, BB_Deviation, 0, PRICE_CLOSE, MODE_LOWER);        bb_up[0] = bb_up_val;    bb_mid[0] = bb_mid_val;    bb_dn[0] = bb_dn_val;        // Visual alert (optional)    if (rsi_val < 30 && close[0] <= bb_dn_val) Comment("BUY SIGNAL");    if (rsi_val > 70 && close[0] >= bb_up_val) Comment("SELL SIGNAL");        return(rates_total); }  

응답함

1
개발자 1
등급
(70)
프로젝트
99
52%
중재
24
21% / 54%
기한 초과
8
8%
작업중
2
개발자 2
등급
(12)
프로젝트
19
37%
중재
1
0% / 100%
기한 초과
1
5%
무료
3
개발자 3
등급
(62)
프로젝트
76
54%
중재
2
0% / 50%
기한 초과
1
1%
작업중
게재됨: 6 코드
4
개발자 4
등급
프로젝트
0
0%
중재
0
기한 초과
0
무료
5
개발자 5
등급
프로젝트
0
0%
중재
0
기한 초과
0
무료
6
개발자 6
등급
프로젝트
0
0%
중재
1
0% / 100%
기한 초과
0
무료
게재됨: 1 코드
7
개발자 7
등급
(2)
프로젝트
2
0%
중재
0
기한 초과
0
무료
8
개발자 8
등급
프로젝트
0
0%
중재
0
기한 초과
0
무료
9
개발자 9
등급
(337)
프로젝트
405
53%
중재
20
55% / 15%
기한 초과
29
7%
작업중
10
개발자 10
등급
(1)
프로젝트
1
0%
중재
1
0% / 100%
기한 초과
0
무료
11
개발자 11
등급
(4)
프로젝트
3
33%
중재
2
0% / 100%
기한 초과
0
무료
비슷한 주문
I need a custom MT5 Expert Advisor + small backend bridge. The EA must: trade ONLY pending orders (BUY STOP / SELL STOP) support dual-trigger logic (one cancels the other) support fixed SL/TP, time-decay cancel, TP1 → BE communicate with a backend via HTTP (WebRequest) The backend: receives market snapshots from MT5 calls OpenAI API returns a structured JSON signal (numbers only) No strategy design needed – logic and
step by step and structure this into a full IEEE 830 / ISO/IEC/IEEE 29148 style Requirements Specification. This format will include: Introduction System Overview Functional and Performance Requirements Traceability Matrix (linking requirements to test cases) Verification and Validation Compliance Standards 1. Introduction 1.1 Purpose The purpose of this document is to define the technical requirements for the
i need an expert to help join 3 model i have in ninjatrader into one, kindly message me and i will be expecting from you and i need this work done in maximum of 4 days, so i need expert that can get it done
BitsoFx 40 - 10000 USD
//+------------------------------------------------------------------+ //| Simple Robo Trader MT5 | //| Works on any pair & timeframe | //+------------------------------------------------------------------+ #property strict // Input settings input double LotSize = 0.01; input int FastMA = 10; input int SlowMA = 30; input int RSIPeriod = 14; input int StopLoss = 200; // in points input int TakeProfit = 400;// in
I am looking for an experienced MQL5 developer to convert a complex TradingView Pine Script (will provide the script from tradingview) into a fully automated MT5 Expert Advisor -bot. The TradingView script includes: Market Structure (BOS, CHoCH, Swing BOS) Strong / Weak High & Low Equilibrium (Premium / Discount zones) Volumetric Order Blocks Fair Value Gaps (FVG / VI / OG) Accumulation & Distribution zones Equal
// Add this to your EA after ExportState() function void SendToBase44(const string state, const string dir, double entry, double sl, double tp) { string url = " https://preview-sandbox--ee0a32a725b788974de435e8cef40b7a.base44.app/api/functions/receiveEAState "; string headers = "Content-Type: application/json\r\n"; string json = "{" "\"symbol\":\""+_Symbol+"\","
1.Sinyal Perdagangan : Sinyal beli: garis MACD utama memotong garis sinyal ke atas (macd_current>signal_current && macd_previous<signal_previous). Sinyal jual: garis MACD utama memotong garis sinyal ke bawah (macd_current<signal_current && macd_previous>signal_previous). Gambar di bawah menunjukkan kasus beli dan jual. 2. Posisi ditutup pada sinyal yang berlawanan: Posisi beli ditutup pada sinyal jual, dan posisi
Hello. I am finding an experienced python developer who can implement my trading strategies into robots. I like trend-following swing trading strategies and am going to automate my idea. More details can be discussed by chatting. If you have similar working experience it can be a plus. Thanks
* Use Fibonacci retracement (with adjusted values) to scale entry points. * Timeframe may differ depending on the projected target; but the Fibonacci conditions remain the same * date range into consideration as well * Applicable to indices, crypto and metals. * Activate entries on the second half of my fib *Usually takes the whole week to unfold (5 - 7 days) * Timeframes to consider 5m/15m, H1/H2 The attached images

프로젝트 정보

예산
30 - 500 USD
기한
에서 1  90 일

고객

넣은 주문2
중재 수0