Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Close from specific times of prior day and present day

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

    Close from specific times of prior day and present day

    I want to code a strategy with these conditions:

    Price at 2pm yesterday is greater than price at 10am yesterday.
    Price at 6am today is greater than price at 2pm yesterday.

    Once I know how to do that I can probably figure out the rest of it.

    Thanks

    #2
    Hello RickyTicky,

    Thank you for your post and welcome to the NinjaTrader Support Forum!

    The conditions would look like the following:
    Code:
    			// set the close of 10 AM yesterday to a double
    			if(ToTime(Time[0]) == ToTime(10,0,0) && Time[0].Day == DateTime.Now.AddDays(-1).Day)
    			{
    				tenAMClose = Close[0];
    			}
    			// set the close of 2 PM yesterday to a double
    			if(ToTime(Time[0]) == ToTime(14,0,0) && Time[0].Day == DateTime.Now.AddDays(-1).Day)
    			{
    				twoPMClose = Close[0];
    			}
    			// compare the two doubles for yesterday's closes
    			if(twoPMClose > tenAMClose)
    			{
    				// do something
    			}
    			// compare today's close at 6 AM to yesterday's at 2 PM
    			if(ToTime(Time[0]) == ToTime(6,0,0) && Close[0] > twoPMClose)
    			{
    				// do something
    			}
    For information on ToTime() please visit the following link: http://www.ninjatrader.com/support/h...nt7/totime.htm
    For information on Time please visit the following link: http://www.ninjatrader.com/support/h...s/nt7/time.htm

    Please let me know if I may be of further assistance.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by kinfxhk, 07-14-2026, 09:39 AM
    0 responses
    125 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 07-13-2026, 10:18 AM
    0 responses
    105 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 07-13-2026, 09:50 AM
    0 responses
    84 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 07-13-2026, 07:21 AM
    0 responses
    104 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 07-11-2026, 02:11 AM
    0 responses
    83 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Working...
    X