_WS.RunScript(sagr.feedToken, Client_code, script, TASK);


  • On the GitHub page at https://github.com/angel-one/smartapi-dotnet, what is the meaning of mw, sfi and dp in TASK: mw|sfi|dp ?

    TASK: mw|sfi|dp appears under the section for ------Socket Sample Code to get stock quotes------ . This is the snippet in which TASK: mw|sfi|dp appears, in the inline conmment // :

    _WS.ConnectforStockQuote(sagr.feedToken, Client_code);
    if (_WS.IsConnected())
    {
       string script = "", TASK="";  // SCRIPT: nse_cm|2885, mcx_fo|222900  TASK: mw|sfi|dp
    
       _WS.RunScript(sagr.feedToken, Client_code, script, TASK);
       _WS.MessageReceived += WriteResult;
       
      _WS.Close(true); to stop and close socket connection
    }
    exitEvent.WaitOne();