Skip to content

WatchlistRemovedEventArgs

Summary

Occurs when a watchlist is removed from the marketwatch.

Signature

1
public class WatchlistRemovedEventArgs

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 WatchlistRemovedEventArgs
     [Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
     public class WatchlistRemovedEventArgsSample : Indicator
     {
         protected override void Initialize()
         {
             Watchlists.Removed += OnWatchlistsRemoved;
         }
         private void OnWatchlistsRemoved(WatchlistRemovedEventArgs obj)
         {
             Print("Watchlist {0} removed", 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.Removed += self.on_watchlists_removed
     def on_watchlists_removed(self, args):
         print(f"Watchlist {args.Watchlist.Name} removed")

See Also

Properties

Watchlist

Summary

Gets the watchlist.

Signature

1
public Watchlist Watchlist {get;}

Return Value

Watchlist