Forum

Implement StochasticRSI

Hello MQL4 Community, I hope everyone is doing well. I am currently working on an automated trading strategy and need some assistance in modifying my existing MQL4 code. Specifically, I would like to create a Stochastic RSI indicator similar to the one available on TradingView. Here's a brief

Moving Average and RSI Entry Conditions - Independent Settings

Hei, MQL5 Community I would appreciate your assistance and knowledge regarding an entry condition comprised of two moving averages and the RSI. A set of conditions must be met by the RSI, such as when set to true and then apply a predefined set of requirements as shown in the code below: To clarify

Trailing Stop - Check Parenthesis Precedence

Hello, MQL5 Community Please assist with the following code function: " check operator precedence for possible error; use parentheses to clarify precedence". I have attached an image and snippet of code showing where I get the warning "⚠". Despite my best efforts, I have not been able to resolve

Expert Advisor - Trade Messages Not Printing - Trade Actions

Hello, MQL5 Community Could you please assist me with the following inquiry concerning my EA's messaging problem, as shown below: Journal Entry The EA does not print the reason for the trade not being opened, and vice versa. The "Journal" does not print trade outputs based on the sequence of events

Market Entry Conditions implementation (MA & CCI Filters)

// Buy entry if (MABuyFilter&&CCIBuyFilter) { //here we are assuming that the TakeProfit and StopLoss are entered in Pips ticket = OrderSend ( Symbol (), OP_BUY, Lots, Ask, vSlippage, Bid - StopLoss * vPoint, Bid + TakeProfit * vPoint, "Set by

Locate MA Cross Condition In ***

Hello MQL5 Community I discovered an EA with two MA conditions and would like to use the conditions from the EA. The only problem I'm having right now is finding the condition in the long strings of code. The author of the EA gave permission to modify the code. I would appreciate your assistance

Implement 2 MA Cross with CCI filter

Hello MQL5 Community, I am currently developing an EA and would like your assistance in implementing 2 MA Cross and CCI Filter conditions to confirm entry as either OP BUY or OP SELL market conditions. I'd like to have a choice for both conditions before using them as "True or False." The idea is to

Unexpected and Unbalanced Parentheses

Hello MQL5 Community, I'd appreciate it if you could help me with the following errors in my code. The first is at the beginning of my "int OnInit()" code, and the second is at the end: "return(point);" I had previously made some minor changes to the code in order to resolve other errors. I'm having

Implement a time based EA (Limit trading sessions to specific Hours)

Hello MQL5 Community, I am currently developing an EA based on two MAs and CCI Cross conditions. I'd like to implement a time-based trading strategy and would appreciate your assistance. As I am in the process of learning coding. I've received helpful advice from the community as well as materials

Implement two conditions to enter a trade_ MA and CCI. (EA)

Hei MQL5 Community, I've been working on two entry conditions for my EA. I am still new to coding and would appreciate your assistance in providing your expertise where my code lacks the necessary conditions. The Strategy: 1. The MA filter check is a Boolean that can be either true or false. 2. As