how can I add trading days? [duplicate]












-1















This question already has an answer here:




  • Adding 15 business days in lubridate

    5 answers



  • add 1 business day to date in R

    3 answers




for example in a date in thee form 07/03/2015 how can I add 30 trading days??



as.Date("07/03/2015", format="%d/%m/%Y") + 30
[1] "2015-04-06"`



this take into account also Sundays and Saturdays how can I add only the trading days? thanks










share|improve this question













marked as duplicate by Ronak Shah r
Users with the  r badge can single-handedly close r questions as duplicates and reopen them as needed.

StackExchange.ready(function() {
if (StackExchange.options.isMobile) return;

$('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');

$hover.hover(
function() {
$hover.showInfoMessage('', {
messageElement: $msg.clone().show(),
transient: false,
position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
dismissable: false,
relativeToBody: true
});
},
function() {
StackExchange.helpers.removeMessages();
}
);
});
});
Nov 12 at 11:48


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.




















    -1















    This question already has an answer here:




    • Adding 15 business days in lubridate

      5 answers



    • add 1 business day to date in R

      3 answers




    for example in a date in thee form 07/03/2015 how can I add 30 trading days??



    as.Date("07/03/2015", format="%d/%m/%Y") + 30
    [1] "2015-04-06"`



    this take into account also Sundays and Saturdays how can I add only the trading days? thanks










    share|improve this question













    marked as duplicate by Ronak Shah r
    Users with the  r badge can single-handedly close r questions as duplicates and reopen them as needed.

    StackExchange.ready(function() {
    if (StackExchange.options.isMobile) return;

    $('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
    var $hover = $(this).addClass('hover-bound'),
    $msg = $hover.siblings('.dupe-hammer-message');

    $hover.hover(
    function() {
    $hover.showInfoMessage('', {
    messageElement: $msg.clone().show(),
    transient: false,
    position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
    dismissable: false,
    relativeToBody: true
    });
    },
    function() {
    StackExchange.helpers.removeMessages();
    }
    );
    });
    });
    Nov 12 at 11:48


    This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.


















      -1












      -1








      -1








      This question already has an answer here:




      • Adding 15 business days in lubridate

        5 answers



      • add 1 business day to date in R

        3 answers




      for example in a date in thee form 07/03/2015 how can I add 30 trading days??



      as.Date("07/03/2015", format="%d/%m/%Y") + 30
      [1] "2015-04-06"`



      this take into account also Sundays and Saturdays how can I add only the trading days? thanks










      share|improve this question














      This question already has an answer here:




      • Adding 15 business days in lubridate

        5 answers



      • add 1 business day to date in R

        3 answers




      for example in a date in thee form 07/03/2015 how can I add 30 trading days??



      as.Date("07/03/2015", format="%d/%m/%Y") + 30
      [1] "2015-04-06"`



      this take into account also Sundays and Saturdays how can I add only the trading days? thanks





      This question already has an answer here:




      • Adding 15 business days in lubridate

        5 answers



      • add 1 business day to date in R

        3 answers








      r date






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 12 at 11:46









      Tommaso Dellolmo

      75




      75




      marked as duplicate by Ronak Shah r
      Users with the  r badge can single-handedly close r questions as duplicates and reopen them as needed.

      StackExchange.ready(function() {
      if (StackExchange.options.isMobile) return;

      $('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
      var $hover = $(this).addClass('hover-bound'),
      $msg = $hover.siblings('.dupe-hammer-message');

      $hover.hover(
      function() {
      $hover.showInfoMessage('', {
      messageElement: $msg.clone().show(),
      transient: false,
      position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
      dismissable: false,
      relativeToBody: true
      });
      },
      function() {
      StackExchange.helpers.removeMessages();
      }
      );
      });
      });
      Nov 12 at 11:48


      This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.






      marked as duplicate by Ronak Shah r
      Users with the  r badge can single-handedly close r questions as duplicates and reopen them as needed.

      StackExchange.ready(function() {
      if (StackExchange.options.isMobile) return;

      $('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
      var $hover = $(this).addClass('hover-bound'),
      $msg = $hover.siblings('.dupe-hammer-message');

      $hover.hover(
      function() {
      $hover.showInfoMessage('', {
      messageElement: $msg.clone().show(),
      transient: false,
      position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
      dismissable: false,
      relativeToBody: true
      });
      },
      function() {
      StackExchange.helpers.removeMessages();
      }
      );
      });
      });
      Nov 12 at 11:48


      This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.


























          1 Answer
          1






          active

          oldest

          votes


















          0














          Is this what you are looking for?



          Create data:



          library(chron)
          dates <- seq.dates("07/03/2015", by = "day", length = 30)


          Generate weekdays:



          dates <- weekdays(as.Date(dates))


          Extract the days of the week:



          remove <- c('Saturday', 'Sunday')
          dates [! dates %in% remove]





          share|improve this answer























          • Edited the post.
            – user113156
            Nov 12 at 12:13










          • I want display thee 30th trading day after "07/03/2015"
            – Tommaso Dellolmo
            Nov 12 at 13:08


















          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          Is this what you are looking for?



          Create data:



          library(chron)
          dates <- seq.dates("07/03/2015", by = "day", length = 30)


          Generate weekdays:



          dates <- weekdays(as.Date(dates))


          Extract the days of the week:



          remove <- c('Saturday', 'Sunday')
          dates [! dates %in% remove]





          share|improve this answer























          • Edited the post.
            – user113156
            Nov 12 at 12:13










          • I want display thee 30th trading day after "07/03/2015"
            – Tommaso Dellolmo
            Nov 12 at 13:08
















          0














          Is this what you are looking for?



          Create data:



          library(chron)
          dates <- seq.dates("07/03/2015", by = "day", length = 30)


          Generate weekdays:



          dates <- weekdays(as.Date(dates))


          Extract the days of the week:



          remove <- c('Saturday', 'Sunday')
          dates [! dates %in% remove]





          share|improve this answer























          • Edited the post.
            – user113156
            Nov 12 at 12:13










          • I want display thee 30th trading day after "07/03/2015"
            – Tommaso Dellolmo
            Nov 12 at 13:08














          0












          0








          0






          Is this what you are looking for?



          Create data:



          library(chron)
          dates <- seq.dates("07/03/2015", by = "day", length = 30)


          Generate weekdays:



          dates <- weekdays(as.Date(dates))


          Extract the days of the week:



          remove <- c('Saturday', 'Sunday')
          dates [! dates %in% remove]





          share|improve this answer














          Is this what you are looking for?



          Create data:



          library(chron)
          dates <- seq.dates("07/03/2015", by = "day", length = 30)


          Generate weekdays:



          dates <- weekdays(as.Date(dates))


          Extract the days of the week:



          remove <- c('Saturday', 'Sunday')
          dates [! dates %in% remove]






          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Nov 12 at 12:13

























          answered Nov 12 at 11:50









          user113156

          7891417




          7891417












          • Edited the post.
            – user113156
            Nov 12 at 12:13










          • I want display thee 30th trading day after "07/03/2015"
            – Tommaso Dellolmo
            Nov 12 at 13:08


















          • Edited the post.
            – user113156
            Nov 12 at 12:13










          • I want display thee 30th trading day after "07/03/2015"
            – Tommaso Dellolmo
            Nov 12 at 13:08
















          Edited the post.
          – user113156
          Nov 12 at 12:13




          Edited the post.
          – user113156
          Nov 12 at 12:13












          I want display thee 30th trading day after "07/03/2015"
          – Tommaso Dellolmo
          Nov 12 at 13:08




          I want display thee 30th trading day after "07/03/2015"
          – Tommaso Dellolmo
          Nov 12 at 13:08



          Popular posts from this blog

          Xamarin.iOS Cant Deploy on Iphone

          Glorious Revolution

          Dulmage-Mendelsohn matrix decomposition in Python