Skip to content

WatchlistSymbolAddedEventArgs

Summary

Occurs when a new symbol is added to the watchlist.

Signature

1
public class WatchlistSymbolAddedEventArgs

Namespace

cAlgo.API

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
 using cAlgo.API;
 namespace cAlgo
 {
     // This sample shows how to use WatchlistSymbolAddedEventArgs
     [Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
     public class WatchlistSymbolAddedEventArgsSample : Indicator
     {
         protected override void Initialize()
         {
             Watchlists.WatchlistSymbolAdded += OnWatchlistSymbolAdded;
         }
         private void OnWatchlistSymbolAdded(WatchlistSymbolAddedEventArgs obj)
         {
             Print("Symbol {0} Added to Watchlist {1}", obj.SymbolName, obj.Watchlist.Name);
         }
         public override void Calculate(int index)
         {
         }
     }
 }
1
2
3
4
5
6
7
8
 import clr
 clr.AddReference("cAlgo.API")
 from cAlgo.API import *
 class Test():    
     def initialize(self):
         api.Watchlists.WatchlistSymbolAdded += self.on_watchlist_symbol_added
     def on_watchlist_symbol_added(self, args):
         print(f"Symbol {args.SymbolName} Added to Watchlist {args.Watchlist.Name}")

See Also

Properties

Watchlist

Summary

Gets the watchlist.

Signature

1
public Watchlist Watchlist {get;}

Return Value

Watchlist

SymbolName

Summary

Gets the symbol name.

Signature

1
public string SymbolName {get;}

Return Value

string