Announcement

Collapse
No announcement yet.

Signal when ADX is flat

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

  • Signal when ADX is flat

    Hi,

    I trying to get a signal when the ADX is flat or heading up.

    I've tried using this in the attached efs:

    PHP Code:
    hADX >= kADX && gADX >= jADX 
    But it only works when the ADX is heading up.

    Please advise.

    Thank you,
    Dave

    PS I tried using CTRL C and CTRL V to copy code into this post but it's not working, please advise.

  • #2
    Here's the efs

    Sorry..


    Here is the efs that was to be arrached to the last post.
    Attached Files

    Comment


    • #3
      Re: Signal when ADX is flat

      Dave

      But it only works when the ADX is heading up
      Have you checked if there actually are any instances in which both indicators are flat ie where the values of both indicators at the current bar are equal to their values at the prior bar? To do this replace your condition with the following
      PHP Code:
      hADX == kADX && gADX == jADX 
      and run the script. You may find that the condition never occurs (or occurs only very rarely).
      Alex


      Originally posted by MacDaddy
      Hi,

      I trying to get a signal when the ADX is flat or heading up.

      I've tried using this in the attached efs:

      PHP Code:
      hADX >= kADX && gADX >= jADX 
      But it only works when the ADX is heading up.

      Please advise.

      Thank you,
      Dave

      PS I tried using CTRL C and CTRL V to copy code into this post but it's not working, please advise.

      Comment


      • #4
        Flat ADX

        Thanks Alexis!

        Your right on........it's not needed. I pulled my hair out for nothing!

        I do have a question perhaps you can help me with.

        I'm looking for a Bar replay or tick replay (epf) file for 5/25/05.
        I called eSignal and they can't help. Do you have any suggestion where I can get that data?

        Thank you for all your help,
        Dave

        Comment


        • #5
          Re: Flat ADX

          Dave
          You are most welcome.
          As to your question I don't have any suggestions other than that you inquire if anyone has saved that data using the Tick Downloader (which I believe you have already done at this point)
          Alex


          Originally posted by MacDaddy
          Thanks Alexis!

          Your right on........it's not needed. I pulled my hair out for nothing!

          I do have a question perhaps you can help me with.

          I'm looking for a Bar replay or tick replay (epf) file for 5/25/05.
          I called eSignal and they can't help. Do you have any suggestion where I can get that data?

          Thank you for all your help,
          Dave

          Comment

          Working...
          X