Skip to content

WatchlistSymbolRemovedEventArgs

Summary

Occurs when the symbol is removed from the watchlist.

Signature

1
public class WatchlistSymbolRemovedEventArgs

Namespace

cAlgo.API

Properties

Name Description
Watchlist { get; } Gets the watchlist.
SymbolName { get; } Gets the symbol name.

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 WatchlistSymbolRemovedEventArgs
     [Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
     public class WatchlistSymbolRemovedEventArgsSample : Indicator
     {
         protected override void Initialize()
         {
             Watchlists.WatchlistSymbolRemoved += Watchlists_WatchlistSymbolRemoved;
         }
         private void Watchlists_WatchlistSymbolRemoved(WatchlistSymbolRemovedEventArgs obj)
         {
             Print("Symbol {0} removed from watchlist {1}", obj.SymbolName, obj.Watchlist.Name);
         }
         public override void Calculate(int index)
         {
         }
     }
 }

See Also


Last update: March 30, 2023