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

How to access tick + volume information threw the history?

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

    How to access tick + volume information threw the history?

    So how to access tick + volume information threw the history? What formulas/functions should i use to get volume of all ticks by 13.02.2008 12:21:49?

    And what syntax would it be?

    TickSize


    Definition

    The minimum fluctuation value; the value of 1 tick for the corresponding instrument.

    Examples
    // Prints the ticksize to the output window
    Print("The ticksize of this instrument is " + TickSize.ToString());

    // Prints the value of the current bar low less one tick size
    double value = Low[0] - TickSize;
    Print(value.ToString());
    Is that what i need? It seems to me that not, because fluctuation != volume..
    ____________________
    Addition:

    the main my target is to automatize (by script) this function:
    Control Center -> Tools -> Historical Data -> Export -> ..

    So i want to make it automatically and get i.e. one hour ticks, two day ticks, one week ticks etc.. Diapasons will be programmed by script.
    Last edited by alexmaster; 12-27-2008, 12:29 PM.

    #2
    You would need to create an indicator/strategy and apply it on a 1 tick chart and filter by time.

    See more information on time.

    - http://www.ninjatrader-support.com/H...eV6/ToDay.html
    - http://www.ninjatrader-support.com/H...V6/ToTime.html
    RayNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by lorem, Yesterday, 09:18 AM
    4 responses
    13 views
    0 likes
    Last Post lorem
    by lorem
     
    Started by Spiderbird, Today, 12:15 PM
    0 responses
    5 views
    0 likes
    Last Post Spiderbird  
    Started by cmtjoancolmenero, Yesterday, 03:58 PM
    12 responses
    42 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by FrazMann, Today, 11:21 AM
    0 responses
    6 views
    0 likes
    Last Post FrazMann  
    Started by geddyisodin, Yesterday, 05:20 AM
    8 responses
    52 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Working...
    X