1. This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.
  2. Welcome back! Thank you for being a part of this Traders Community. Let's discuss and share :)
    Selamat datang kembali! Trimakasih telah menjadi bagian dari Komunitas Trader ini. Mari berdiskusi dan berbagi :)
    Dismiss Notice

RSI notification

Discussion in 'Diskusi Umum' started by Oneilboy, 30 Jul 2020.

  1. Oneilboy

    Oneilboy New Member

    Equity
    Credit
    Ref Point
    Hi,

    is there a possibility to get a notification if the the RSI is below or higher then the levels that I put in MT4 and what pair?
     
  2. blackking

    blackking Well-Known Member Credit Hunter

    Equity
    Credit
    Ref Point
    I think this need to modify indicator with add new code for the alert
    maybe you need contact programmer to working this job, or if you can learn how to attach alert in indicator by own selves its good.
     
  3. Michael Wang

    Michael Wang New Member

    Equity
    Credit
    Ref Point
     
  4. acin acin

    acin acin Member Credit Hunter

    Equity
    Credit
    Ref Point
    Code:
    handle_iRSI=iRSI(_Symbol, _Period, period_RSI, PRICE_CLOSE);
    if(CopyBuffer(handle_iRSI,0,0,5,rsi)!=5) return;
    double rsi_val = NormalizeDouble(rsi[0],2);
    if(rsi_val<30) alert("Price lower than 30% RSI");
    if(rsi_val>70) alert("Price higher than 70% RSI");
    
     

Share This Page