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 NRITV, Today, 01:15 PM
        2 responses
        8 views
        0 likes
        Last Post NRITV
        by NRITV
         
        Started by frankthearm, Today, 09:08 AM
        7 responses
        31 views
        0 likes
        Last Post NinjaTrader_Clayton  
        Started by maybeimnotrader, Yesterday, 05:46 PM
        5 responses
        26 views
        0 likes
        Last Post NinjaTrader_ChelseaB  
        Started by quantismo, Yesterday, 05:13 PM
        2 responses
        19 views
        0 likes
        Last Post quantismo  
        Started by adeelshahzad, Today, 03:54 AM
        5 responses
        33 views
        0 likes
        Last Post NinjaTrader_BrandonH  
        Working...
        X