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 argusthome, 03-08-2026, 10:06 AM
    0 responses
    80 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    46 views
    0 likes
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    29 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Started by TheRealMorford, 03-05-2026, 06:15 PM
    0 responses
    32 views
    0 likes
    Last Post TheRealMorford  
    Started by Mindset, 02-28-2026, 06:16 AM
    0 responses
    66 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Working...
    X