Announcement

Collapse
No announcement yet.

Alerts from Watchlist

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

  • Alerts from Watchlist

    Can alerts be generated from a Watchlist?
    my code

    main
    {
    if(getBarState() == BARSTATE_NEWBAR)
    {
    if(1+1==2) Alert.addToList( getSymbol(), "test", Color.green, Color.black );
    }
    return;
    }
    doesn't seem to produce any results in the EFS Alerts window or the Alerts Log window.

  • #2
    HawkArps
    See this article in the EFS KnowledgeBase
    Alex


    Originally posted by HawkArps View Post
    Can alerts be generated from a Watchlist?
    my code

    main
    {
    if(getBarState() == BARSTATE_NEWBAR)
    {
    if(1+1==2) Alert.addToList( getSymbol(), "test", Color.green, Color.black );
    }
    return;
    }
    doesn't seem to produce any results in the EFS Alerts window or the Alerts Log window.

    Comment

    Working...
    X