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 set2win, 08-04-2021, 09:23 AM
    39 responses
    1,001 views
    0 likes
    Last Post WaleeTheRobot  
    Started by md4866, Today, 08:15 PM
    0 responses
    7 views
    0 likes
    Last Post md4866
    by md4866
     
    Started by mjbatts91, Yesterday, 04:48 PM
    2 responses
    23 views
    0 likes
    Last Post mjbatts91  
    Started by pibrew, Today, 06:10 PM
    1 response
    21 views
    0 likes
    Last Post NinjaTrader_Manfred  
    Started by actualfacts.2021, 07-25-2021, 03:11 PM
    8 responses
    1,188 views
    0 likes
    Last Post linkcou
    by linkcou
     
    Working...
    X