Expert Advisor based on iRSIONARRAY

작업 종료됨

실행 시간 1 일
피고용인의 피드백
great customer... respected human
고객의 피드백
He's a great developer. He is great as a person who fervently serves

명시

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

응답함

1
개발자 1
등급
(36)
프로젝트
50
28%
중재
2
0% / 100%
기한 초과
6
12%
무료
2
개발자 2
등급
(772)
프로젝트
1039
44%
중재
50
8% / 50%
기한 초과
116
11%
무료
3
개발자 3
등급
(39)
프로젝트
55
13%
중재
5
20% / 20%
기한 초과
6
11%
무료
4
개발자 4
등급
(277)
프로젝트
334
55%
중재
14
36% / 29%
기한 초과
1
0%
무료
비슷한 주문
I need a MT5 Prop firm challenge passing EA with strict prop firm rules compliance. Any strategy can be used but win rate should be above 70%. It should have high impact news filter and a dashboard panel to monitor daily drawdown, target profit, current balance, etc. It should not have martingale, grid, hedging, etc
I want a MetaTrader 5 Expert Advisor based on Smart Money Concepts (SMC) and Power of 3 (PO3). Strategy logic: 1. Accumulation (Asian Session) - Define Asian session range (time customizable) - Mark Asian high and low - No trades during this session 2. Manipulation (London Session) - Detect liquidity sweep above Asian high or below Asian low - Must be a clear breakout with rejection (not slow drift) 3. Distribution (
Hello Developers I have a Project to get done! i have a simple strategy can you please create the automated forex ea to execute my trading strategy? i need custom ea for tradingview and mt4/mt5 correction: i need a tradingview indicator created that tells me when to buy or sell. and ea in mt4/mt5
Pro firm setup 30+ USD
Hi, I am starting a futures prop firm. Are you able to help me get data feed for this with no delays and can handle many traders on the platform. Additionally, are you able to handle charts for us
Mam kody EA Bot. Chciałbym je dokończyć, dopracować i ukończyć projekty. Chciałbym otrzymać pliki SET po ukończeniu EA. Jeśli jesteś zainteresowany, skontaktuj się ze mną. Szukam doświadczonego programisty do stworzenia dedykowanego doradcy eksperckiego (EA) do tradingu. Programista powinien posiadać solidną wiedzę z zakresu MT5, logiki strategii, wskaźników, zarządzania ryzykiem i backtestingu. Doświadczenie w
I am looking for an experienced developer to create a custom Expert Advisor (EA) for trading. The developer should have strong knowledge of MT4/MT5, strategy logic, indicators, risk management, and backtesting. Experience in building reliable and professional trading robots is preferred. Please contact me if you have done similar projects before. 9817724000
5.20buy-20.5sell 50 - 1000 USD
⸻ 🧠 Professional AI Prompt (Clear English Version) Act as a professional algorithmic trading engineer with deep expertise in developing automated trading systems for TradingView and MetaTrader. You have strong knowledge of market behavior, trend analysis, and risk management. Your task is to design a fully automated trading strategy based on the following requirements: ⸻ 🎯 Entry Conditions: • Open a BUY trade
I am looking for an experienced MQL5 developer to create a custom technical indicator for MetaTrader 5. The indicator should combine Supertrend logic with Support/Resistance pullback levels to generate high-probability entry signals. 1. Core Logic The indicator must follow a two-step confirmation process: Trend Identification: Use the Supertrend indicator to determine the primary trend. Entry Signal (The
VWAP BB Sniper EA Quantum VWAP Scalper SmartFlow FX Bot Institutional Edge EA 🧠 PRODUCT OVERVIEW VWAP + Bollinger Bands Auto Trading System A high-precision forex scalping bot designed to capture institutional price movements using: VWAP (fair value tracking) Bollinger Bands (volatility & entry timing) 👉 Built for fast, consistent intraday profits
I am a Professional Forex Trader, actively working in the financial markets with a strong focus on how price truly moves. I specialize in logic, market structure, and institutional behavior rather than indicators or guesswork. I have mastered: • Market Structure • Trend Identification • Elliott Wave Theory • Wyckoff Logic My core expertise lies in: • Deep understanding of market structure • Identifying

프로젝트 정보

예산
30+ USD