Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Timing Condition

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

    Timing Condition

    Hello

    How can I set a timing condition that will trade at only one specific day, i.e. the first day of the week or the first day of the month?

    I am fiddling with these timing conditions through the wizard for a while now without success. (I'm not experienced editing Ninjacode directly, but I could handle copy/pasting snipplets if there is no other solution).

    thousand thanks for help with this issue!

    #2
    Hello Leexing,

    Thank you for your post.

    You can use the DateTime Structure in C# to achieve this, but you will need to hard code it.

    Below are two conditions; the first for the first day of the week and the second for the first day of the month:
    Code:
    if(Time[0].DayOfWeek == DayOfWeek.Monday)
    {
    //Do something
    }
    
    if(Time[0].Day == 1)
    {
    //Do something
    }
    For information on the DateTime Structure please visit the following link: http://msdn.microsoft.com/en-us/libr...v=vs.110).aspx

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CarlTrading, 03-31-2026, 09:41 PM
    1 response
    68 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    39 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    63 views
    1 like
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    62 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    53 views
    0 likes
    Last Post CarlTrading  
    Working...
    X