help me create an expert advisor with the iRSIonarray indicator. Here is the indicator's mql4 code:
//+------------------------------------------------------------------+
//|
iRSIONARRAY.mq4 |
//| Copyright 2019,
MetaQuotes Software Corp. |
//|
https://www.mql5.com |
//+------------------------------------------------------------------+
#property copyright "Copyright 2019, MetaQuotes Software Corp."
#property link "https://www.mql5.com"
#property version "1.00"
#property strict
#property indicator_separate_window
#property indicator_minimum 0
#property indicator_maximum 100
#property indicator_buffers 2
#property indicator_plots 1
#property indicator_level1 30.0
#property indicator_level2 70.0
#property indicator_levelcolor clrRed
#property indicator_levelstyle STYLE_DOT
//--- plot RSIOnArray
#property indicator_label1 "RSIOnArray"
#property indicator_type1 DRAW_LINE
#property indicator_color1 clrBlack
#property indicator_style1 STYLE_SOLID
#property indicator_width1 1
//--- indicator buffers
double RSIOnArrayBuffer[];
double OSMABuffer[];
input int BarsToCompute = 1000000;
input int OSMAFastPer = 12, OSMASlowPer = 26, OSMASignalPer = 9;
input int RSIPer = 14;
//+------------------------------------------------------------------+
//| Custom indicator initialization function
|
//+------------------------------------------------------------------+
int OnInit()
{
//--- indicator buffers mapping
SetIndexBuffer(0,RSIOnArrayBuffer);
SetIndexBuffer(1,OSMABuffer);
//---
return(INIT_SUCCEEDED);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function
|
//+------------------------------------------------------------------+
int OnCalculate(const int rates_total,
const int prev_calculated,
const datetime &time[],
const double &open[],
const double &high[],
const double &low[],
const double &close[],
const long &tick_volume[],
const long &volume[],
const int &spread[])
{
int limit =
MathMin(BarsToCompute,MathMin(rates_total-1,rates_total-prev_calculated));
for (int i=limit; i>=0; i--)
{
OSMABuffer[i] =
iOsMA(_Symbol,_Period,OSMAFastPer,OSMASlowPer,OSMASignalPer,PRICE_CLOSE,i);
RSIOnArrayBuffer[i] = iRSIOnArray(OSMABuffer,0,RSIPer,i);
}
return(rates_total);
}
//+------------------------------------------------------------------+
Take profit = 30
Stop loss = 20
The lot = 0.01
We will use for the positions taken the RSI curve of the indicator above.
Checklist for buying:
- H4, RSI> 70
- M30, RSI make a first peak on the line of 70 then a first trough on the line of 30
- H4, RSI is always> 70
- Position statement in M30.
Note:
- Do not take a long position if in step 4 the RSI < 70
- The checklist is valid if RSI > 70 in step 1 and 2 at the same time.
Checklist for selling:
- H4, RSI <30
- M30, RSI make a first dip on the line of 30 then a first vertex on the line of 70
- H4, RSI is always <30
- Position statement in M30.
Note:
- Do not take a short position if in step 4 the RSI > 30
- The checklist is valid if RSI < 30 in step 1 and 2 at the same time.
Do not forget to put the function that allows you to perform the backtest.
Thank you
相似订单
I am looking for an experienced MT5/MQL5 programmer to build Phase 1 of a larger Expert Advisor project. This first phase is limited to one custom signal only for the EUR/USD. If Phase 1 is completed correctly, additional signals may be added later as separate follow-up projects. The purpose of Phase 1 is to code, test, display, and log this signal accurately using completed M1 bars only. At this stage, I primarily
✅ MT4 EA Developer Checklist (For Your Ladder EA) 1️⃣ Indicator Integration EA reads signals from provided custom indicator (.ex4 or .mq4) Detects “Buy Next” / “Sell Next” signals on current candle Works with arrow-based or buffer-based signals 2️⃣ Next Candle Execution EA does not trade on the candle where the signal appears Orders placed only at first tick of the next candle Timeframes supported: M1, M5, M15
Hi to all, I need a modification of an existing grid EA with the following instructions: Add the following optional external inputs to the attached Expert Advisor: input bool TradeModeAgainstTrend ( TMAT ) = true ; input int CounterTrendLotsToStartTMAT = 0.15 ; input double CoefficientForTrendLots = 0.30 ; input double MaxTrendLot = 0.08 ; input bool OneSideTMATOnly = true ; input double CombinedClosureAmount = 10.0
Hello, i need expert developer that have been develop so many profitable AI bots that work for mt5 and ctrader autonomously if you know you can easily execute this requirement bid for it. NOTE:- YOU MUST COME WITH SAMPLE FOR THE 2 TRADING PLATFORM. While i take a look at your profile and reach out to you thanks
I really liked this training platform. I want to start a good business with this funding amount."I like crypto trading. Does it provide a demo account that is good for learning?"
Hello, I am looking for someone who can help me to build a MT4/MT5 forex EA, by analyzing the trading history. You are responsible to find out trading logic behind the EA and Build a new EA that accurately replicates the existing strategy. I need someone who has proven previous experience to build a new EA by reverse engineering. Thanks
I am looking for an experienced MT4/MT5 developer to analyze my trading history and replicate the strategy in a new Expert Advisor (EA). The developer must have proven experience in reverse engineering strategies, analyzing trading data, and developing EAs across various trading methodologies. A deep understanding of XAUUDS and BTCUSD behavior, as well as chart analysis, is essential. Please note that we do not have
Title: MT5 Forex Trading Robot Development I need a MetaTrader 5 (MT5) Expert Advisor (EA) for automated Forex trading. Requirements: 1. The robot must be fully automated and capable of opening and closing trades without manual intervention. 2. Compatible with MetaTrader 5 (MT5). 3. Adjustable lot size, Stop Loss, and Take Profit settings. 4. Built-in risk management based on account balance. 5. Ability to trade
Looking to develop risk management EA for personal use probably commercially in the future. I want the EA to have a display panel with 0.1, 0.2, 0.5,1,2,3 percent risk management button. I also want BE, partial closure of 0.25,0.5,0.75 and full closure panel on both profit and loss. I’ll also like to include trailing stop, 2 trades max per day and BE+spread option. I’ll be attaching the image for a guidance on what