Page 7 of 29 FirstFirst ... 5 6 7 8 9 17 ... LastLast
Results 61 to 70 of 288
Like Tree135Likes

John Ehlers Toolbox

This is a discussion on John Ehlers Toolbox within the Trading tools forums, part of the Trading Forum category; Cool stuff! I am looking into it right now. It could be possible to add some sort of intelligence algorithm ...

      
   
  1. #61
    Junior Member
    Join Date
    Sep 2013
    Posts
    7
    Cool stuff! I am looking into it right now. It could be possible to add some sort of intelligence algorithm into it and tell us the behavior inside the volume cluster :-)
    Although we could work out what the market makers are doing by human analysis when we get this virtual volume, but what about machine analyzing?

    BTW, I found an interesting predictive indicator? maybe this one is also available? thanks!

    MESA Best Fit.MBEST

    John Ehlers Toolbox-mesa100000005.gif

  2. #62
    Administrator newdigital's Avatar
    Join Date
    Feb 2013
    Posts
    10,473
    Blog Entries
    2910
    Follow newdigital On Twitter Add newdigital on Facebook Add newdigital on Google+ Add newdigital on MySpace
    Add newdigital on Linkedin
    Predicting MESA? I do not know ... May be - Igorad knows as he is the coder (I am not sorry).

    There are many predicting indicators here : Forecasting Indicators, and new indicator created by Igorad for it : NearestNeighbor_v1 indicator
    Premium Trading Forum: subscription, public discussion and latest news
    Trading Forum wiki || MQL5 channel for the forum
    Trading blogs || My blog

  3. #63
    Junior Member
    Join Date
    Sep 2013
    Posts
    7
    Okay, just joined in this wonderful forum today and i may look inside it this weekend. Thank you very much for your warmhearted helps.

  4. #64
    igorad
    Guest
    Hi,

    Please take a look at the MT5 versions of the SwamiRSI and SwamiStochastic.

    - SwamiRSI parameters:
    Code:
    input int                  VisualMode     =      0;   //Visual Mode:0-original,1-trend,2-trend & pullback
    input ENUM_APPLIED_PRICE   Price          =      1;   //Apply to
    input int                  StartLength    =     12;
    input int                  EndLength      =     48; 
    input int                  SampleLength   =     12;   //SampleLength(0-off) 
    input int                  Smooth         =      5;   //Smoothing Period     
    input color                UpTrendColor   =   Lime;   
    input color                DnTrendColor   =    Red; 
    input color                FlatColor      = Yellow;
    input string               UniqueName     = "SwamiRSI";
    input int                  ScaleMode      =      1;   //Scale Mode: 0-J.Ehlers,1-0...100
    input int                  SwamiBars      =    100;
    - SwamiStochastic parameters:
    Code:
    input int                  VisualMode     =      0;   //Visual Mode:0-original,1-trend,2-trend & pullback
    input ENUM_APPLIED_PRICE   Price          =      1;   //Apply to
    input int                  HiLoMode       =      0;   //HiLoMode:0-off,1-on
    input int                  StartLength    =     12;
    input int                  EndLength      =     48; 
    input int                  SampleLength   =     12;   //SampleLength(0-off)
    input int                  PreSmooth      =      3;   //Pre-smoothing Period
    input int                  Smooth         =      9;   //Smoothing Period         
    input color                UpTrendColor   =   Lime;   
    input color                DnTrendColor   =    Red; 
    input color                FlatColor      = Yellow;
    input string               UniqueName     = "SwamiSto";
    input int                  ScaleMode      =      1;   //ScaleMode:0-J.Ehlers,1-0...100
    input int                  SwamiBars      =    100;
    Attachment 2781


    Regards,
    Igor

  5. #65
    Junior Member
    Join Date
    Sep 2013
    Posts
    7

    Bollinger Bands

    Hi everyone,

    Having arrived to this forum only yesterday, i d like to use my first contribution to give my best wishes to our administrators,
    namely to newdigital whose contributions in another forum i appreciated very much.

    Meanwhile, i have a suggestion to make to Igor to complement the excellent work in collecting and coding in mql4 all Ehlers´s Indicators:
    I believe that is of the utmost interest that a version of Bollinger Bands, adaptive to half the length of the dominant cycle as measured in CyclePeriod, becomes available...

    Best regards,

  6. #66
    igorad
    Guest
    Quote Originally Posted by zelivermore View Post
    Hi everyone,

    Having arrived to this forum only yesterday, i d like to use my first contribution to give my best wishes to our administrators,
    namely to newdigital whose contributions in another forum i appreciated very much.

    Meanwhile, i have a suggestion to make to Igor to complement the excellent work in collecting and coding in mql4 all Ehlers´s Indicators:
    I believe that is of the utmost interest that a version of Bollinger Bands, adaptive to half the length of the dominant cycle as measured in CyclePeriod, becomes available...

    Best regards,
    Hi zelivermore,

    Please check out the Adaptive Bollnger Bands indicator with ability to plot both adaptive(MA_Length = 0) and non-adaptive bands(MA_Length > 0).

    Code:
    extern int     TimeFrame         =     0;    // TimeFrame in min
    extern int     Price             =     0;    // Price = 0...10 (see List of Prices)
    extern int     MA_Length         =     0;    // Bollinger Bands Period(0-with adaptive length)  
    extern int     MA_Method         =     0;    // See list above
    extern double  Deviation         =     2;    // Deviation
    extern double  Alpha             =  0.07;    // Cycle Smoothing Factor(eg. 0.07)
    extern int     MedianPeriod      =     5;    // Period of Moving Median
    extern int     DCsmooth          =     5;    // Period of Dominant Cycle Smoothing
    extern double  DCratio           =   0.5;    // Dominant Cycle Ratio (eg. 0.5)
    Attachment 2890

    Regards,
    Igor
    Gus4x and rozer like this.

  7. #67
    Junior Member
    Join Date
    Sep 2013
    Posts
    7

    AdaptiveBBands_v1

    Superlative piece of code!!
    Thank you so much Igor, your work in invaluable.
    I was thinking about a much simpler solution...but this one is totally comprehensive.

    Nevertheless, i am thinking about the possibility of including a feature in the spirit of a MTF indicator, with the option of importing the cycleperiod of another TF and draw the Bands in our default (p.ex., analysing the cycleperiod in the 4H TF and draw our graphics in 1H or 30min TF)?

    If you like the idea, i thank in advance!

  8. #68
    Junior Member
    Join Date
    Sep 2013
    Posts
    7
    Quote Originally Posted by zelivermore View Post
    Superlative piece of code!!
    Thank you so much Igor, your work in invaluable.
    I was thinking about a much simpler solution...but this one is totally comprehensive.

    Nevertheless, i am thinking about the possibility of including a feature in the spirit of a MTF indicator, with the option of importing the cycleperiod of another TF and draw the Bands in our default (p.ex., analysing the cycleperiod in the 4H TF and draw our graphics in 1H or 30min TF)?

    If you like the idea, i thank in advance!
    Never mind?!
    I saw right now that that feature is already available with the external variable "TimeFrame".
    Thanks again!

    Best regards

  9. #69
    Member
    Join Date
    Jun 2013
    Posts
    80
    Quote Originally Posted by igorad View Post
    Hi,

    Please take a look at the most advanced MTF Hilbert SineWave indicator with ability to plot the Support/Resistance levels.

    Code:
    extern int     TimeFrame               =     0;       // TimeFrame in min
    extern int     Price                   =     4;       // Price = 0...6
    extern double  Alpha                   =  0.07;       // Cycle Smoothing Factor
    extern int     MedianPeriod            =     5;       // Period of Moving Median
    extern int     DCsmooth                =     5;       // Period of Dominant Cycle Smoothing
    extern double  AdvanceAngle            =    90;       // Advance Angle for lag compensation
    extern double  LeadSineAngle           =    45;       // Leading Sine Angle
    extern int     SupportResistanceMode   =     0;       // 0-off,1-on
    extern color   SupportColor            = DeepSkyBlue;
    extern color   ResistanceColor         = OrangeRed;
    extern int     LineWidth               =     2;
    extern int     LineStyle               =     0;
    extern string  UniqueName              = "SineWave";

    Attachment 2469


    Attachment 2470


    Regards,
    Igor
    ur this indicator is also so good but in my strips and commodities it's give so much wrong signal
    please do something for this
    add here ATR mod or pa adaptive mode something

  10. #70
    Member
    Join Date
    Jun 2013
    Posts
    80
    Quote Originally Posted by igorad View Post
    Hi All,

    In this thread we'll try to post all tools (indicators & strategies) of famous John Ehlers.

    At the begining, please take a look at the advanced MAMA in which I tried to apply our AllAverages algorithms with(or instead of) the EMA. Also I replaced parameters FastLimit and SlowLimit on more understandable MinPeriod and MaxPeriod. Plus you can find that I use phase smoothing which allows to get new quality of the MAMA.

    Code:
    extern int     TimeFrame         =     0;   //Time Frame in min
    extern int     Price             =     4;   //Price Mode (0...10)
    extern int     MinPeriod         =     3;   //Min Period of MAMA
    extern int     MaxPeriod         =    39;   //Max Period of MAMA
    extern int     MA_Mode           =     1;   //According to list above
    extern int     PhaseSmooth       =     1;   //Period of Phase Smoothing  
    extern int     PhaseSmoothMode   =     1;   //According to list above
    extern int     SignalMode        =     1;   //Switch of Signal mode(0-off,1-on)
    
    extern string  alerts            = "--- Alerts & Emails ---";
    extern int     AlertMode         =     1;   //Alert Mode (0-off,1-on)
    extern int     SoundsNumber      =     5;   //Number of sounds after Signal
    extern int     SoundsPause       =     5;   //Pause in sec between sounds 
    extern string  UpSound           = "alert.wav";
    extern string  DnSound           = "alert2.wav";
    extern int     EmailMode         =     0;   //0-on,1-off   
    extern int     EmailsNumber      =     1;   //0-on,1-off
    extern int     WarningMode       =     0;   //Warning Mode (0-off,1-on)
    Standard MAMA:

    Attachment 891

    T3 MAMA:

    Attachment 892


    Regards,
    Igor
    Please share t3 mama indicatore

Page 7 of 29 FirstFirst ... 5 6 7 8 9 17 ... 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
  •