Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Ticks by bid and ask color

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

    Ticks by bid and ask color

    Hi to everyone!
    I want colorize current real time ticks by ask or bid (red and green colors).

    I do it like that:

    protected override void OnMarketData(MarketDataEventArgs e)
    {
    if (e.MarketDataType == MarketDataType.Last)
    {

    //buy tick
    if(e.Price >=e.MarketData.Ask.Price)
    color = Color.Green;
    //sell tick
    else if(e.Price <= e.MarketData.Bid.Price)
    color = Color.Red;

    }

    }

    ...but this is dont work correctly such as "time&sales" windows in NT. Colors are different. Whats wrong?

    Thanks!
    Last edited by s21462; 06-28-2011, 05:55 AM.

    #2
    Welcome to our forums - unfortunately we could not disclose the Time and Sales code used, what colors are you then comparing to? It would make several distinctions between at ask, above ask, below bid and at bid.

    Comment


      #3
      Originally posted by NinjaTrader_Bertrand View Post
      Welcome to our forums - unfortunately we could not disclose the Time and Sales code used, what colors are you then comparing to? It would make several distinctions between at ask, above ask, below bid and at bid.
      Thanks!

      Colors in time&sales


      For example - ticks color in Time&Sales windows is green (at ask, or above ask), but in indicator (see code) color of the same tick different (sometimes colors is same).
      Can you tell me, correctly I determine color of current tick in the code or not, please.

      Comment


        #4
        I believe the code should do what you seek - to compare please ensure the update intervals of the chart vs the time sales window are set the same so you're seeing the correct timing.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Geovanny Suaza, 02-11-2026, 06:32 PM
        0 responses
        647 views
        0 likes
        Last Post Geovanny Suaza  
        Started by Geovanny Suaza, 02-11-2026, 05:51 PM
        0 responses
        369 views
        1 like
        Last Post Geovanny Suaza  
        Started by Mindset, 02-09-2026, 11:44 AM
        0 responses
        108 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by Geovanny Suaza, 02-02-2026, 12:30 PM
        0 responses
        572 views
        1 like
        Last Post Geovanny Suaza  
        Started by RFrosty, 01-28-2026, 06:49 PM
        0 responses
        573 views
        1 like
        Last Post RFrosty
        by RFrosty
         
        Working...
        X