Can you pease convert this code Metatrader 4

 

n = 7;

R1=WMA(RSI(n),n);

Plot(RSI(n),"RSI7", colorRed, styleLine); 

Plot(R1,"nameR1", colorWhite, styleLine);

StRSI=100*(RSI(n)-LLV(RSI(n),n))/(HHV(RSI(n),n)-LLV(RSI(n),n));

S=WMA(strsi,5);

Plot(S,"MStRSI", colorYellow, 1);

Plot(20,"", 11, styleLine);

Plot(80,"", 11, styleLine);



thank you

 
  1. When you post code please use the CODE button (Alt-S)! (For large amounts of code, attach it.) Please edit your (original) post.
              General rules and best pratices of the Forum. - General - MQL5 programming forum
              Messages Editor

  2. You have only four choices:
    1. Search for it,
    2. Beg at Will code your trading systems for free - Free Expert Advisors - Trading Systems - MQL5 programming forum, or Coding help - MQL4 and MetaTrader 4 - MQL4 programming forum, or Need help with coding - General - MQL5 programming forum, or Free MQL4 To MQL5 Converter - General - MQL5 programming forum, or Requests & Ideas (MQL5 only!).
    3. learn to code it. If you don't learn MQL4/5, there is no common language for us to communicate. If we tell you what you need, you can't code it. If we give you the code, you don't know how to integrate it into yours.
    4. or pay (Freelance) someone to code it.
    We're not going to code it for you (although it could happen if you are lucky or the problem is interesting.) We are willing to help you when you post your attempt (using CODE button) and state the nature of your problem.
              No free help
              urgent help.

  3. It is a stochastic(7) that uses RSI(7) instead of the high/low/close. Take the stochastic that comes with the terminal, add a buffer, fill it with the RSI values. Replace the references with the buffer values. Show us your attempt (using CODE button) and state the nature of your problem.