Page 1 of 4 1 2 3 ... LastLast
Results 1 to 10 of 37
Like Tree9Likes

Custom Candles

This is a discussion on Custom Candles within the Trading tools forums, part of the Trading Forum category; i'm playing custom candles these days, nice visual effects. i share with the NDw community. RSI Custom Candles u can ...

      
   

Hybrid View

  1. #1
    Senior Member levonisyas's Avatar
    Join Date
    Sep 2013
    Location
    Türkiye
    Posts
    122

    Custom Candles

    i'm playing custom candles these days, nice visual effects. i share with the NDw community.
    RSI Custom Candles u can change the overbought/sold levels to 50 if u want to watch the up/down trend.
    extern int RSI_Period =14;
    extern int RSI_Price =0;
    extern int Overbought =70;
    extern int Oversold =30;

    Custom Candles-rsi.jpg


    RSICandles.mq4

  2. #2
    Senior Member levonisyas's Avatar
    Join Date
    Sep 2013
    Location
    Türkiye
    Posts
    122
    This one is also interesting. i inspired from this indicator when building RSICandles
    StochCandles - MQL4 Code Base refers
    Stoch Candlesticks filtered with Heiken Ashi or Heiken Ashi MA. Heiken Ashi filters can be turn on or off

    //---- stoch settings
    Stoch_K = 30,
    Stoch_D = 10,
    Stoch_Slowing = 10,
    Overbought = 80,
    Oversold = 20;

    //---- input parameters
    BarWidth = 1,
    CandleWidth = 3;
    HeikenAshi = true,
    HeikenAshiMA = false;
    HAMA_Method = 1,
    HAMA_Period = 3;

    Custom Candles-stoch.jpg

    StochCandles.mq4

  3. #3
    Senior Member levonisyas's Avatar
    Join Date
    Sep 2013
    Location
    Türkiye
    Posts
    122
    These are EMA candles set.
    Up/Down/Range

    Custom Candles-ema.jpg

    GRaB Candles Long.mq4
    GRaB Candles Range.mq4
    GRaB Candles Short.mq4
    mim1931 likes this.

  4. #4
    Senior Member levonisyas's Avatar
    Join Date
    Sep 2013
    Location
    Türkiye
    Posts
    122
    BB based custom candles (std.deviation levels 2;1)
    Stronger move - darken color
    extern int MyPeriod=24;
    extern double Dev1=1;
    extern double Dev2=2;
    Article i4 GoldenLionTrend v3 - MQL4 Code Base

    Custom Candles-bbcandles.jpg

    BBCandles.mq4

  5. #5
    Senior Member levonisyas's Avatar
    Join Date
    Sep 2013
    Location
    Türkiye
    Posts
    122
    Candles based Raghee Horner method My latest StockTwitsFX blog post: "How long should you argue with a trade?" Official website for trader and author Raghee Horner Official website for trader and author Raghee Horner

    RagheeCandleVagueBars three indicators to use with the Raghee Horner method - MQL4 Code Base

    red for down trend (Raghee Vague < - 30º ),
    green bar for up trend (Raghee Vague > 30 º)
    orange and chartreuse for neutre ( Raghe Vague between -30º and 0 or between 0 and 30º)

    Custom Candles-screenhunter_52-nov.-16-12.16.jpg


    !000RagheeCandleVagueBars .mq4

  6. #6
    Senior Member levonisyas's Avatar
    Join Date
    Sep 2013
    Location
    Türkiye
    Posts
    122
    Multi indicator agreement custom candle
    Enjoy,
    RSI shows us that there is value in a measure of declines vs advances
    Awesome Oscillator showing the direction of the market,
    Adx showing you that it has enough power to make you a decent amount of pips,
    Stochastic oscillator confirming a trend move,
    These 4 indicators working together provides a very reliable entry signal

    Parameters can be change of Stoch Histogram, RSI Custom, Advanced ADX.

    Custom Candles-eurtryh1.png

    ay-TrendFinder-Candles.mq4
    Last edited by levonisyas; 11-17-2013 at 08:12 PM.

  7. #7
    Senior Member adamlo's Avatar
    Join Date
    Jan 2014
    Location
    Malaysia
    Posts
    375
    hi levonisyas, do u have the manual or detail about the ay-Treandfinder- candles? i can't much understand the colour represent. pls advice

  8. #8
    Senior Member levonisyas's Avatar
    Join Date
    Sep 2013
    Location
    Türkiye
    Posts
    122
    Hi adamlo,
    if Awesome Oscillator, RSI, ADX and Stochastic indicators are agree (at the same time all of them) the color is green/up , red/down
    if 3 of them agree (at the same time 3 of them) the color is RoyalBlue/up , IndianRed/down
    if nothing the color is grey
    For information Indicator needed for H4 Trend System @ Forex Factory

  9. #9
    Senior Member adamlo's Avatar
    Join Date
    Jan 2014
    Location
    Malaysia
    Posts
    375
    ahhh okok thanks alot , this is really super useful , by the way, did u change the original setting or u use ur own setting?

  10. #10
    Senior Member levonisyas's Avatar
    Join Date
    Sep 2013
    Location
    Türkiye
    Posts
    122
    1H chart
    extern string spr2 = "»»Stoch Setting";
    extern int StochPeriod1 = 12;
    extern int DPeriod1 = 9;
    extern int SlowingPeriod1 = 6;
    extern string spr3 = "»»ADX Setting";
    extern int ADXPeriod = 14;
    extern int ADXTrending = 22;
    extern string spr4 = "»»RSI Setting";
    extern int RSIPeriod = 28;
    extern int RSIUp = 60;
    extern int RSIDown = 40;

Page 1 of 4 1 2 3 ... LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •