Announcement

Collapse
No announcement yet.

PNF reversal alert

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

  • PNF reversal alert

    I think it would be helpful to have an alert feature associated with the PNF chart. I would like to be alerted (via a sound) when a reversal takes place. Would it be possible to code something like this?

    I'm not capable of EFS coding (despite a couple attempts) so I hope someone can be of assistance here. Thank you.

  • #2
    Hi,

    There was a really good recent chat on eSignal Alerts you might want to check out. It may not totally address your concern, but it was helpful for identifying what is available now.... just an idea until someone else responds.

    Click here for to read notes on using eSignal Alerts

    For other topics, click here.
    Marc

    Comment


    • #3
      dang3276,

      This code should do the trick for you. It can be made this simple because of the way Point & Figure charts work. Only when a reversal takes place is a new bar built, so the code is alerting you to when a new bar is built.

      PHP Code:
      /************************
      Copyright © eSignal, 2003
      *************************
      Description: This is designed to work with Point & Figure charts
      to play a sound alert with a reversal is made
      */

      function preMain() {
          
      setPriceStudy(true);
          
      setStudyTitle("PNF Reversal Alerts");
      }

      function 
      main() {
          
          
      vBarState getBarState();
              
          if (
      vBarState == BARSTATE_NEWBARAlert.playSound("ding.wav");
                  
          return;


      Attached Files
      Regards,
      Jay F.
      Product Manager
      _____________________________________
      Have a suggestion to improve our products?
      Click Support --> Request a Feature in eSignal 11

      Comment


      • #4
        Jay,

        Thanks for the code! i"m testing it out in real-time today. So far, one reversal and one alert so it's 1-for-1. Thank you for your help. I'll report back on its effectiveness.

        Comment


        • #5
          Hi,

          I look for a alerts function for the PNF chart,
          the PNF breakouts recognizes for a long-short strategy
          click hire (http://stockcharts.com/support/pnfAlerts.html).
          Is one to be found in such a way "Wizard Alert.efs" in the forum?
          Sorry for my bad English.
          Best regards

          Comment


          • #6
            Rodondo,

            What I believe you are looking for is a pretty tall order. Looking at the various patterns from the link you provided, you may want to think about enlisting the help from one of the EFS Consultants that may be able to code something for you. These consultant services are fee based depending on the scope of the coding involved. Hope this gets you started.

            Comment

            Working...
            X