expert rs i stochastic ma

expert rs i stochastic ma
Download ALL MT4 experts (885)
YouTube Video Thumbnail



Similar MetaTrader Tools

expert rs i stochastic ma

Info

The expert rs i stochastic ma is a Expert Advisor for MetaTrader 4 that this expert advisor uses three indicators: ma(150), rsi(3) with the levels of 80 and 20, stochastic(6, 3, 3) with the levels of 70 and 30. these parameters can be changed and customized.

Usage

This tool is typically used for automated trading on major forex pairs and gold.

Platform

This Expert Advisor works exclusively on MetaTrader 4 (both build 600+ and newer versions).

Setup

Place the downloaded file in MQL4/Experts folder via File ? Open Data Folder in MetaTrader 4.


How to Install and Use expert rs i stochastic ma

1. Installation: Open the "File" menu, select "Open Data Folder," navigate to MQL/Experts, paste your file, and restart the terminal.

2. Activation: Drag the EA from the Navigator onto a chart, ensure "Allow live trading" is checked in the Common tab, and verify the AutoTrading button is green.

3. Optimization: Right-click your chart, choose "Expert List," click "Properties" to adjust inputs, and save your preferred setup as a set file for future use.

4. Maintenance: Regularly check the "Experts" tab in the terminal window to monitor trade logs and potential execution errors.

Frequently Asked Questions

Q: Why is my EA not opening trades? A: Check the "AutoTrading" button, ensure "Allow live trading" is enabled, and verify your broker allows automated trading on your account type.

Q: Can I run multiple EAs on one chart? A: No, each chart can only host one active EA; however, you can open multiple charts for different currency pairs to run several EAs.

Q: What does the "smiley face" icon mean? A: A smiley face in the top-right corner of the chart indicates the EA is successfully running; a frowny face means it is disabled.

What this tool does

this expert advisor uses three indicators: ma(150), rsi(3) with the levels of 80 and 20, stochastic(6, 3, 3) with the levels of 70 and 30.

Typical Use Case

This Expert Advisor excels in automated trading and technical analysis on MetaTrader 4.

Compatible Platform & Setup

This Expert Advisor works on MetaTrader 4. Place the file in the MQL4/Experts folder and restart the terminal.

Description & Settings

Related: e-trailing2: enhanced trailing stop expert advisor - another powerful expert for MetaTrader 4 traders.


this expert advisor uses three indicators: ma(150), rsi(3) with the levels of 80 and 20, stochastic(6, 3, 3) with the levels of 70 and 30. these parameters can be changed and customized. also, the input parameters of the expert advisor need to be changed if the used quotes are not 5-digit.

Also recommended: e-signal of trade expert advisor - similar expert with strong performance on MetaTrader 4.

1. the
direction
of the deal entry is based on the ma (moving average). only one deal per each side can be opened.

if bid > ma, then consider the buy direction.

if ask < ma, then consider the sell direction.2. the position
entry
when the rsi and stochastic conditions are met.

buy if rsi and stochastic are below the minimum level, i.e. rsi < 20 and stochastic < 30.

sell if rsi and stochastic are above the maximum level, i.e. rsi > 80 and stochastic > 70.
3.
exit
the deal by stochastic.
exit in the green in points.

(trailing stop = 0) if the trailing stop in the input parameters is zero, then close the position once the stochastic reaches the opposite level, if the deal is in green in points.
b) close if the position is buy and stochastic > 70 and openprice <= bid s) close if the position is sell and stochastic < 30 and openprice >= ask

(trailing stop > 0) if the trailing stop is set in the input parameters, then once the stochastic reaches the opposite level, the stop loss is trailed every time a new candlestick is opened on a specified distance from the price. it can be seen in the first figure. as a result, closed by trailing stop. it should be noted that a negative closure is also possible here, as stop loss does not get into the breakeven immediately at times.
closure at a loss in points.

(allow loss = 0) if allow loss in the input parameters is equal to 0, then close the position once the stochastic reaches the opposite level, if the deal is at a loss in points.
b) close if the position is buy and stochastic > 70 and openprice > bid s) close if the position is sell and stochastic < 30 and openprice < ask

(allow loss > 0) if allow loss is set in the input parameters, and the position is out of the deal entry zone by stochastic, and the deal is at a loss by the specified amount or more, then the position is closed. b) close if the position is buy and stochastic > 30 and openprice - bid >= allow loss in pointss) close if the position is sell and stochastic < 70 and ask - openprice >= allow loss in points
important! the purpose of this expert advisor is researching the market and the rsi and the stochastic indicators. if this ea gets thought through, then a result with good profit may be obtained.

You may also like: e-news-lucky$ - automated news trading expert advisor - excellent alternative for expert users on MetaTrader 4.

Source Code

#property copyright "robotfx"
#property link "https://robotfx.org"
#property version   "1.00"
#property strict
extern string             nameind1           = "___________rsi__________"; // rsi 
extern int                rsi_period         = 3;                          // rsi period
extern enum_applied_price rsi_applied_price  = price_close;                // rsi applied price
extern int                rsi_up_level       = 80;                         // level up - rsi 
extern int                rsi_dn_level       = 20;                         // level down - rsi 
extern string             nameind2           = "________stochastic______"; // stochastic

.......

Leave your opinion, ask a question, share some knowledge

Limitations & Risk Warning

  • This tool is provided for educational and testing purposes only.
  • Past performance does not guarantee future results.
  • Trading involves substantial risk of loss. Use on a demo account first.
  • Results may vary depending on market conditions, broker, and settings.
  • We recommend thorough backtesting and forward testing before using with real funds.
© ROBOTFX Free educational tools by RobotFX. Use entirely at your own risk; we are not liable for any financial losses incurred.