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 Mindset, 04-21-2026, 06:46 AM
    0 responses
    105 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    147 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by M4ndoo, 04-19-2026, 05:54 PM
    0 responses
    71 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by cmoran13, 04-16-2026, 01:02 PM
    0 responses
    125 views
    0 likes
    Last Post cmoran13  
    Started by PaulMohn, 04-10-2026, 11:11 AM
    0 responses
    79 views
    0 likes
    Last Post PaulMohn  
    Working...
    X