Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

Average Daily Volume / Volume

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

    Average Daily Volume / Volume

    Hi,

    I'm coding an indicator made especially for the Market Analyzer.

    Okay, I found the Market Analyzer indicators and I'm trying to use them as a template to create another.

    I'd like to compare the percentage of session completed to the percentage of volume accumulated compared to the Average Daily volume thus giving me an indication of how a stock is progressing volume wise.



    time passed in session / duration of session (6.5 hours)

    compared to:

    Volume accumulated today / Average Daily Volume


    so isn't that:

    ((ToTime(Time[0])-83000)/65000); - in my time zone the open is at 8:30 / session is 6.5 hours

    Darn - this doesn't work as time isn't a base 10 system. Any suggestions how to calculate time passed in session?

    compared to:

    Volume[0]/(SMA(Volume, 200) [0]);



    Okay, I see they are Fundamental Data types. Can I use them like I would a chart indicator. Can these e.values fit into formulas?
    Last edited by stockgoblin; 10-29-2012, 07:20 AM.

    #2
    Stockgoblin,

    You can exploit DateTime objects here. For example,

    if ( FirstBarOfSession )
    {
    // create a new MyTime object and set it to have the current time
    }

    int hours_passed = Math.Abs(MyTime.Hour - DateTime.Now.Hour);

    Note this would only return hours as whole numbers (well integers), so you may also want to track minutes.

    Represents an instant in time, typically expressed as a date and time of day.


    DateTime objects are part of .NET and have a lot of neat functionality built into them.
    Last edited by NinjaTrader_AdamP; 10-29-2012, 07:51 AM.
    Adam P.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by rhyminkevin, Today, 04:58 PM
    3 responses
    47 views
    0 likes
    Last Post Anfedport  
    Started by iceman2018, Today, 05:07 PM
    0 responses
    5 views
    0 likes
    Last Post iceman2018  
    Started by lightsun47, Today, 03:51 PM
    0 responses
    7 views
    0 likes
    Last Post lightsun47  
    Started by 00nevest, Today, 02:27 PM
    1 response
    14 views
    0 likes
    Last Post 00nevest  
    Started by futtrader, 04-21-2024, 01:50 AM
    4 responses
    50 views
    0 likes
    Last Post futtrader  
    Working...
    X