Announcement

Collapse
No announcement yet.

Number of trades in the quote window

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

  • Number of trades in the quote window

    How can I display the cumlative number of trades per day in the quote window?

  • #2
    nctrader52
    I do not believe that information is available in the Quote Window.
    Alex

    Comment


    • #3
      Here is what I would do, at least conceptually....

      var numTrades = 0;
      functionmain(){

      numTrades = numTrades +1:
      return numTrades + "";


      this will increment numTrades everytime a trade is made and post the cumulative number of trades in the quote window.

      Comment


      • #4
        David
        That would display the result in the Cursor Window but not in the Quote Window
        Alex

        Comment

        Working...
        X