Announcement

Collapse
No announcement yet.

Alert Price in List

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

  • Alert Price in List

    Simple Question.

    HOW DO I RETURN ALERT PRICE IN TO THE ALERT LIST?

    I use Formula Wizard to write my EFS. I get the desired alerts and the shape on my chart appears. Great. However, The alert signal do not return the price of the alert on alert list (nor anywhere).

    This is my Alert line entry:

    Alert.addToList(getSymbol(), "Buy Now", Color.RGB(160,160,164), Color.RGB(0,255,0))

  • #2
    Re: Alert Price in List

    bcsolomon
    You need to add that value in the "Description" property of the alert eg
    Alert.addToList(getSymbol(), "Buy Now "+close(0), Color.RGB(160,160,164), Color.RGB(0,255,0))
    Alex


    Originally posted by bcsolomon
    Simple Question.

    HOW DO I RETURN ALERT PRICE IN TO THE ALERT LIST?

    I use Formula Wizard to write my EFS. I get the desired alerts and the shape on my chart appears. Great. However, The alert signal do not return the price of the alert on alert list (nor anywhere).

    This is my Alert line entry:

    Alert.addToList(getSymbol(), "Buy Now", Color.RGB(160,160,164), Color.RGB(0,255,0))

    Comment


    • #3
      Thanks that totally did it.

      I will put my next issue is a seperate post.

      Comment


      • #4
        bcsolomon
        You are welcome
        Alex


        Originally posted by bcsolomon
        Thanks that totally did it.

        I will put my next issue is a seperate post.

        Comment

        Working...
        X