Trading Bot for MT5

MQL5 エキスパート Python

指定

//+------------------------------------------------------------------+ //| 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
評価
(15)
プロジェクト
19
16%
仲裁
5
40% / 40%
期限切れ
0
2
開発者 2
評価
(2295)
プロジェクト
2889
63%
仲裁
123
44% / 25%
期限切れ
428
15%
仕事中
3
開発者 3
評価
(12)
プロジェクト
19
37%
仲裁
1
0% / 100%
期限切れ
1
5%
4
開発者 4
評価
(9)
プロジェクト
19
16%
仲裁
3
67% / 0%
期限切れ
0
5
開発者 5
評価
(22)
プロジェクト
31
55%
仲裁
1
0% / 0%
期限切れ
1
3%
仕事中
6
開発者 6
評価
(248)
プロジェクト
254
30%
仲裁
0
期限切れ
3
1%
パブリッシュした人: 2 codes
7
開発者 7
評価
(496)
プロジェクト
965
74%
仲裁
27
19% / 67%
期限切れ
100
10%
取り込み中
パブリッシュした人: 1 article, 6 codes
8
開発者 8
評価
プロジェクト
0
0%
仲裁
0
期限切れ
0
9
開発者 9
評価
(3)
プロジェクト
3
33%
仲裁
0
期限切れ
0
仕事中
10
開発者 10
評価
(3)
プロジェクト
1
100%
仲裁
3
0% / 100%
期限切れ
0
11
開発者 11
評価
(1)
プロジェクト
1
0%
仲裁
2
0% / 0%
期限切れ
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
Hi, I’m looking for someone with real Build Alpha experience to help set up an index-trading ruleset inside Build Alpha. Important: This work cannot be done without full access to Build Alpha . You must already own a Build Alpha licence and actively use the platform. Please do not apply if you do not currently have Build Alpha. What needs to be set up in Build Alpha 1. Session and Time Rules • Fixed GMT trading
An Expert Advisor (EA) robot that uses market movement-based indicators is an automated program designed for platforms like MetaTrader 4 or 5 (MT4/MT5) that monitors price fluctuations and triggers trades based on predefined technical rules. These robots, often used for trend following, scalping, or breakout strategies, analyze price action, moving averages, or volatility to automatically enter and exit trades
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
Description: We are seeking a highly skilled developer to build a high-precision BTC scalping brain. The goal is to create a robust ML-driven model that analyzes live order book data for ultra-short-term opportunities and generates actionable trading signals, paired with a real-time execution engine to place trades on MT5. Responsibilities: Design and implement real-time data ingestion from Binance BTC order book
Project Summary We are looking for a highly experienced MetaTrader 5 (MT5) developer to build a pattern-based Expert Advisor (EA) focused on low-time-interval automation (15-second & 30-second logic). This is a pure MT5 project — no external platforms, no shortcuts. It should be very clean ,Efficient ,Precised ,Accurate ,No copy paste ,Low latency. If you have real experience with MT5 tick-based logic and
1.RSI strategy for gold , use RSI to identify overbought (above 70)and oversold (below 30) conditions. .Implement entry signals when RSI crosses these thresholds. 2.Risk management , set a maximum percentage of account equity per trade 1-2 % . Implement stop loss and take profit levels to limit loses and lock in gains. .Apply a maximum draw down limit to prevent significant losses. 3. Trade execution , ensure proper
I need a professional developer to build a Telegram-to-MetaTrader trade copier system. Project overview: - A Telegram bot will read trade signals from a Telegram channel - Trades will be automatically executed on MT4 and/or MT5 accounts - The system must support copying trades to multiple MetaTrader accounts - Execution should work even when the user is offline Functional requirements: - Structured signal format
Convert the indicator available in trade view named "Support resistance diagonal" by Pikusov to use in MT5 platform. Also need get some alerts in mobile (any social media app/ MT5) if crossing the support/ resistance lines

プロジェクト情報

予算
30 - 300 USD
締め切り
最低 1 最高 90 日

依頼者

出された注文2
裁定取引数0