Page 16 of 29 FirstFirst ... 6 14 15 16 17 18 26 ... LastLast
Results 151 to 160 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; Igor...

      
   
  1. #151
    Junior Member
    Join Date
    Aug 2013
    Posts
    3
    Igor

  2. #152
    igorad
    Guest
    Hi,

    Please re-download the UniversalOscillator because I fixed minor bug.

    Regards,
    Igor

  3. #153
    igorad
    Guest
    Quote Originally Posted by Lunarus View Post
    Hi, I'm interested in J. Ehlers's new indicators based from the page below, it includes codes for many other platforms except metatrader & ctrader platform
    Universal Oscillator - TRADERS’ TIPS - JANUARY 2015
    Simple Decycler & Decycler Oscillator - TRADERS’ TIPS - SEPTEMBER 2015


    I have attempted to code Universal oscillator in calgo here but Im really bad at programming

    Hi Lunarus,

    Please check out the SimpleDecycler and DecyclerOscillator indicators according to the second link.

    Attachment 16112

    Regards,
    Igor

  4. #154
    Junior Member
    Join Date
    Jul 2015
    Posts
    14
    Thank you sir igorad

    Can you update the decycler into your AllAverage collection next time?
    It does sticks close to the generated impulse & doesn't overshoot as much hull


  5. #155
    igorad
    Guest
    Quote Originally Posted by Lunarus View Post
    Thank you sir igorad

    Can you update the decycler into your AllAverage collection next time?
    It does sticks close to the generated impulse & doesn't overshoot as much hull

    Hi Lunarus,

    Just interesting to know what software allows to do such researches?

    To do something similar I developed the updated CycleGenerator script which allows to build rectangles, triangles and pyramids on the offline chart.
    Take a look at the attached screenshot with ALMA(14, red), Decycler(14, yellow), JurikFilter(14, blue) and HMA(14, green)

    Attachment 16119



    Regards,
    Igor

  6. #156
    Junior Member
    Join Date
    Jul 2015
    Posts
    14
    I found this software while searching for learning materials about quant trading programming. I am sure you will benefit more than me from this

    The software is called Zorro Trading Automation which can get it at Zorro Trading Automaton - Download
    There features are listed at Zorro Trading Automaton - Features
    There is a paywall for Zorro to MT4 bridge but we still can use tick data or FXCM demo for forward testing

    You can reproducing the image above with the code below

    Code:
    // compare the impulse responses of some low-lag MAs
    
    function run()
    {
      set(PLOTNOW);
      BarPeriod = 60;
      MaxBars = 500;
      LookBack = 150;
      asset("");   // don't load an asset
      ColorUp = ColorDn = 0;  // don't plot a price curve
      PlotWidth = 800;
      PlotHeight1 = 400;
    
      var *Impulse = series(genSquare(400,400)); // square-wave generator
      int Period = 50;
      plot("Impulse",Impulse[0],0,GREY);
      plot("SMA",SMA(Impulse,Period),0,BLACK);
      plot("EMA",EMA(Impulse,Period),0,0x808000);
      plot("ALMA",ALMA(Impulse,Period),0,0x008000);
      plot("Laguerre",Laguerre(Impulse,2.0/Period),0,0x800000);
      plot("Hull MA",HMA(Impulse,Period),0,0x00FF00);
      plot("Zero-Lag MA",ZMA(Impulse,Period),0,0x00FFFF); 
      plot("Decycle",Decycle(Impulse,Period),0,0xFF00FF);
      plot("LowPass",LowPass(Impulse,Period),0,0xFF0000);
      plot("Smooth",Smooth(Impulse,Period),0,0x0000FF);
    }
    Article reference @ Trend ? Delusion or Reality? | The Financial Hacker

  7. #157
    Junior Member
    Join Date
    May 2013
    Posts
    4
    Quote Originally Posted by igorad View Post
    Hi Fmfx,

    You can find the updated version in this post.

    Regards,
    Igor
    Thank you very much Igor . Can you pls add alert to AdaptiveBBands_v2 600.mq4 ? Alert should come after price touch upper/lower band. Thank you very much

    regards
    fm

  8. #158
    igorad
    Guest
    Quote Originally Posted by Fmfx View Post
    Thank you very much Igor . Can you pls add alert to AdaptiveBBands_v2 600.mq4 ? Alert should come after price touch upper/lower band. Thank you very much

    regards
    fm
    Hi Fmfx,

    Please check out the updated AdaptiveBBands indicator with the advanced popup/email/push alerts.


    Attachment 16311

    Regards,
    Igor
    chartartist likes this.

  9. #159
    Junior Member
    Join Date
    Jun 2015
    Posts
    1
    T3 MAMA is very powerful, Can you share?

  10. #160
    Junior Member
    Join Date
    Feb 2016
    Posts
    1
    Hi,

    I can't see the universaloscillator just an horizontal line and the limits

    I thank you Xavier

Page 16 of 29 FirstFirst ... 6 14 15 16 17 18 26 ... 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
  •