1. 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

Suggestion Free RSI - Norepaint by ICQX

Discussion in 'Indicators dan Tools' started by icqx5055, 22 Jan 2016.

  1. icqx5055

    icqx5055 Member Credit Hunter

    Equity
    Credit
    Ref Point
    hey guys:h:

    this is Profitable Scalping Indicator:ok:

    upload_2016-1-22_19-15-44.png
     

    Attached Files:

    • Like Like x 6
    • Agree Agree x 3
  2. Syaleh

    Syaleh New Member

    Equity
    Credit
    Ref Point
    izin dunlut,,....
     
  3. icqx5055

    icqx5055 Member Credit Hunter

    Equity
    Credit
    Ref Point
    PLS ENG
     
  4. Syaleh

    Syaleh New Member

    Equity
    Credit
    Ref Point
    thank's for share
     
    • Like Like x 1
  5. icqx5055

    icqx5055 Member Credit Hunter

    Equity
    Credit
    Ref Point
  6. Syaleh

    Syaleh New Member

    Equity
    Credit
    Ref Point
    nice and easy to understand for newbie like me,, thank's
     
  7. Adam53

    Adam53 Member Credit Hunter

    Equity
    Credit
    Ref Point
    thank's for share :)
     
  8. Awal81

    Awal81 New Member

    Equity
    Credit
    Ref Point
    nice... thanks :)
     
  9. paramitasari

    paramitasari New Member Credit Hunter

    Equity
    Credit
    Ref Point
    ikut sruuupuut...:)
     
  10. rahmat basuki

    rahmat basuki Member Credit Hunter

    Equity
    Credit
    Ref Point
    thanks 4 sharing
     
  11. Fajar Armiyanto

    Fajar Armiyanto Active Member Credit Hunter

    Equity
    Credit
    Ref Point
    thanks for sharing.. please give me permision for dowload. this indi repaint boss icqx5055 ??
     
  12. icqx5055

    icqx5055 Member Credit Hunter

    Equity
    Credit
    Ref Point
    Code:
    */
    #property copyright "Copyright © "
    #property link      "ZX"
    
    #property indicator_separate_window
    #property indicator_levelcolor DarkGreen
    #property indicator_levelstyle 0
    #property indicator_buffers 6
    #property indicator_color1 White
    #property indicator_color2 Fuchsia
    #property indicator_color3 DeepSkyBlue
    #property indicator_color4 Yellow
    #property indicator_color5 LimeGreen
    #property indicator_color6 Black
    #property indicator_level1 30.0
    #property indicator_style2 2
    #property indicator_level2 50.0
    #property indicator_level3 70.0
    
    extern int RSI = 9;
    extern int MA1 = 4;
    extern int MA2 = 3;
    extern int MA3 = 3;
    extern int EnvPeriod = 20;
    extern int EnvDeviat = 1;
    double G_ibuf_100[];
    double G_ibuf_104[];
    double G_ibuf_108[];
    double G_ibuf_112[];
    double G_ibuf_116[];
    double G_ibuf_120[];
    
    int init() {
       SetIndexBuffer(0, G_ibuf_104);
       SetIndexStyle(0, DRAW_LINE);
       SetIndexBuffer(1, G_ibuf_108);
       SetIndexStyle(1, DRAW_LINE);
       SetIndexBuffer(2, G_ibuf_112);
       SetIndexStyle(2, DRAW_LINE);
       SetIndexBuffer(3, G_ibuf_116);
       SetIndexStyle(3, DRAW_LINE);
       SetIndexBuffer(4, G_ibuf_120);
       SetIndexStyle(4, DRAW_LINE);
       SetIndexBuffer(5, G_ibuf_100);
       SetIndexStyle(5, DRAW_NONE);
       IndicatorShortName("freeRSI(" + RSI + ", " + MA1 + ", " + MA2 + ", " + MA3 + ", " + EnvPeriod + ", " + DoubleToStr(EnvDeviat, 2) + ")");
       return (0);
    }
    
    int start() {
       for (int Li_0 = 0; Li_0 < Bars; Li_0++) G_ibuf_100[Li_0] = iRSI(NULL, 0, RSI, PRICE_WEIGHTED, Li_0);
       for (Li_0 = 0; Li_0 < Bars; Li_0++) {
          G_ibuf_116[Li_0] = iEnvelopesOnArray(G_ibuf_100, 0, EnvPeriod, MODE_LWMA, 0, EnvDeviat, MODE_UPPER, Li_0);
          G_ibuf_120[Li_0] = iEnvelopesOnArray(G_ibuf_100, 0, EnvPeriod, MODE_LWMA, 0, EnvDeviat, MODE_LOWER, Li_0);
          G_ibuf_104[Li_0] = iMAOnArray(G_ibuf_100, 0, MA1, 0, MODE_LWMA, Li_0);
       }
       for (Li_0 = 0; Li_0 < Bars; Li_0++) G_ibuf_108[Li_0] = iMAOnArray(G_ibuf_104, 0, MA2, 0, MODE_LWMA, Li_0);
       for (Li_0 = 0; Li_0 < Bars; Li_0++) G_ibuf_112[Li_0] = iMAOnArray(G_ibuf_108, 0, MA3, 0, MODE_LWMA, Li_0);
       return (0);
    }
    
     
  13. sikder abdul rouf

    sikder abdul rouf Member Credit Hunter

    Equity
    Credit
    Ref Point
    please clear us about the indicator ... white cross green then buy/sell or blue cross green then buy/sell ??
     
  14. mohd zamri

    mohd zamri New Member Credit Hunter

    Equity
    Credit
    Ref Point
    can anybody made ea from this...????:p:p:p
     
    • Like Like x 2
  15. pesaok

    pesaok Member Credit Hunter

    Equity
    Credit
    Ref Point
    thanks for sharing this.......
     
    • Useful Useful x 1
  16. ForexStyle

    ForexStyle New Member

    Equity
    Credit
    Ref Point
    thanks .. nice sharing
     
    Last edited: 30 Jan 2016
  17. randy1953

    randy1953 New Member

    Equity
    Credit
    Ref Point
    Thank you this is a nice indie it looks like it would do good on a 60 sec BO trade taking the next candle.
    I need to see how the bands form when live . It may not give enough time
     
    Is it possible to get the mq file for this indie I would like to code in a alert on the cross thanks
     
    I have a coder put alerts on this with arrows when it cross
    Enjoy
    Randy
     

    Attached Files:

    • Like Like x 5
  18. sikder abdul rouf

    sikder abdul rouf Member Credit Hunter

    Equity
    Credit
    Ref Point
    Anyone can make it EA ?? IT will be nice
     
  19. randy1953

    randy1953 New Member

    Equity
    Credit
    Ref Point
    I could make a EA from it but best to trade it manual for a while. I already put alerts arrows and sound alert on it for you
    I suggest when you use it to also use the same RSI in the 2nd window as shown while using the arrows when the alert goes off always check visually on where the cross is.

    Also good news my coder sent me this message.
    No problem , i did some tests and the indi has ITM success rate of 60% based of 10000 signals 6000 are ITM [​IMG] wich is impressive.

    Now 60% is great folks remember this is just a cold test we are not filtering out any news etc.
     
    Last edited: 01 Feb 2016
  20. sikder abdul rouf

    sikder abdul rouf Member Credit Hunter

    Equity
    Credit
    Ref Point
    Okay.. thank you
     
    • Agree Agree x 1

Share This Page