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 DannyP96, 05-18-2026, 02:38 PM
    1 response
    23 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    115 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 05-10-2026, 08:12 PM
    0 responses
    68 views
    0 likes
    Last Post CarlTrading  
    Started by Hwop38, 05-04-2026, 07:02 PM
    0 responses
    225 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Started by CaptainJack, 04-24-2026, 11:07 PM
    0 responses
    411 views
    0 likes
    Last Post CaptainJack  
    Working...
    X