Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Dr. Elders Impulse System

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Dr. Elders Impulse System

    Good day Traders and Developers.
    If anyone already has scripted Elders Impulse System for 8th version, could you share it here please.
    And if the person doing so kind and has time could that be illustrated as code as well.
    Thank you in advance.

    P.S I found the code for 7th version but nothing for 8th so far.

    Regads.

    #2
    Dear Traders and developers.
    The code posted below for another program might help. At least to get an idea for script writers, unfortunately I am not the one.
    But this system is very useful in trading.
    If anyone will have some free time might put a hand on this.

    //
    // @author LazyBear
    //
    // If you use this code in its original/modified form, do drop me a note.
    //
    study("Elder Impulse System [LazyBear]", shorttitle="EIS_LB")
    useCustomResolution=input(false, type=bool)
    customResolution=input("D", type=resolution)
    source = security(tickerid, useCustomResolution ? customResolution : period, close)
    showColorBars=input(false, type=bool)
    lengthEMA = input(13)
    fastLength = input(12, minval=1), slowLength=input(26,minval=1)
    signalLength=input(9,minval=1)

    calc_hist(source, fastLength, slowLength) =>
    fastMA = ema(source, fastLength)
    slowMA = ema(source, slowLength)
    macd = fastMA - slowMA
    signal = sma(macd, signalLength)
    macd - signal

    get_color(emaSeries, macdHist) =>
    g_f = (emaSeries > emaSeries[1]) and (macdHist > macdHist[1])
    r_f = (emaSeries < emaSeries[1]) and (macdHist < macdHist[1])
    g_f ? green : r_f ? red : blue

    b_color = get_color(ema(source, lengthEMA), calc_hist(source, fastLength, slowLength))
    bgcolor(b_color, transp=0)
    barcolor(showColorBars ? b_color : na)


    Picture attached as well.

    Regards
    Attached Files

    Comment


      #3
      Hello tatarmalay,


      Thank you for your posts.


      I was able to locate an Elder Impulse System indicator for NinjaTrader 8 on our Support forum, available at the below link.
      http://www.ninjatrader.com/support/f...d=8&linkid=679
      Shawn B.NinjaTrader Customer Service

      Comment


        #4
        Hello Shawn,
        Thank you very much for the link.
        But I have a question.
        When I Export files into NT it appears in strategies section.
        As I know strategy will initiate entries and exits as per settings, technically its automatic trading system.
        I was looking for a chart style like equivolume or candle style.
        I would like to initiate trading based on my discretion but to be facilitated by Impulse chart style.
        Is there anywhere chart style script available?
        I might be wrong in my thoughts kindly correct me.
        Thank you in advance.

        Regards,

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by rbeckmann05, Yesterday, 06:48 PM
        1 response
        12 views
        0 likes
        Last Post bltdavid  
        Started by llanqui, Today, 03:53 AM
        0 responses
        6 views
        0 likes
        Last Post llanqui
        by llanqui
         
        Started by burtoninlondon, Today, 12:38 AM
        0 responses
        10 views
        0 likes
        Last Post burtoninlondon  
        Started by AaronKoRn, Yesterday, 09:49 PM
        0 responses
        15 views
        0 likes
        Last Post AaronKoRn  
        Started by carnitron, Yesterday, 08:42 PM
        0 responses
        11 views
        0 likes
        Last Post carnitron  
        Working...
        X