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 Jon17, Today, 04:33 PM
    0 responses
    1 view
    0 likes
    Last Post Jon17
    by Jon17
     
    Started by Javierw.ok, Today, 04:12 PM
    0 responses
    6 views
    0 likes
    Last Post Javierw.ok  
    Started by timmbbo, Today, 08:59 AM
    2 responses
    10 views
    0 likes
    Last Post bltdavid  
    Started by alifarahani, Today, 09:40 AM
    6 responses
    41 views
    0 likes
    Last Post alifarahani  
    Started by Waxavi, Today, 02:10 AM
    1 response
    21 views
    0 likes
    Last Post NinjaTrader_LuisH  
    Working...
    X