Systematic Investor Toolbox

Systematic Investor Toolbox (SIT)

Systematic Investor Toolbox is a collection of tools that I use
in my investment research.

###############################################################################
# Load Systematic Investor Toolbox (SIT)
# https://systematicinvestor.wordpress.com/systematic-investor-toolbox/
###############################################################################
con = gzcon(url('http://www.systematicportfolio.com/sit.gz', 'rb'))
    source(con)
close(con)


###############################################################################
# Load Systematic Investor Toolbox (SIT): Windows only
############################################################################### 
# Load Systematic Investor Toolbox (SIT)
setInternet2(TRUE)
con = gzcon(url('https://github.com/systematicinvestor/SIT/raw/master/sit.gz', 'rb'))
	source(con)
close(con)


###############################################################################
# Load Systematic Investor Toolbox (SIT): from file, if for example you saved sit.gz to c:/temp/sit.gz
############################################################################### 
con = gzcon(file('c:/temp/sit.gz', 'rb'))
	source(con)
close(con)


###############################################################################
# Load Systematic Investor Toolbox (SIT): Requires RCurl package
############################################################################### 
require(RCurl)
sit = getURLContent('https://github.com/systematicinvestor/SIT/raw/master/sit.gz', binary=TRUE, followlocation = TRUE, ssl.verifypeer = FALSE)
	con = gzcon(rawConnection(sit, 'rb'))
	source(con)
close(con)


###############################################################################
# Example Usage:
############################################################################### 
# Run plota test
plota.test()

More to come,

Michael Kapler
TheSystematicInvestor at gmail

  1. Carlos Azevedo
    December 5, 2011 at 5:58 pm

    Dear Sir,

    I am pretty new with R and have seen the wonderfull tools you have developed to backtest strategies and evaluate systems.

    I would like to ask if it is possible to copy the tools – donwload -, how would have to activate and install it.

    Thank you for the blog and information you have been sharing.

    Kind regards

    Carlos Azevedo

  2. December 5, 2011 at 9:38 pm

    Hi Carlos,

    Thank you for reading my blog. To run Systematic Investor Toolbox from your desktop, please download:

    https://github.com/systematicinvestor/SIT/raw/master/sit.gz

    and save sit.gz in c:/temp/ folder (for example)

    Start R session and execute:

    con = gzcon(file('c:/temp/sit.gz', 'rb'))
    	source(con)
    close(con)
    
  3. Carlos Azevedo
    December 6, 2011 at 11:39 am

    Good Morning/afternoon Michael,

    Thank you very much for your reply. I will follow the instructions and install the package.

    I wish you a very nice day and once again thanks for the fantastic tool.

    Kind regards

    Carlos

  1. November 25, 2011 at 3:52 am
  2. November 29, 2011 at 4:15 am
  3. December 2, 2011 at 3:29 am
  4. December 6, 2011 at 3:14 am
  5. December 9, 2011 at 3:59 am
  6. December 13, 2011 at 3:16 am
  7. December 16, 2011 at 3:23 am
  8. December 20, 2011 at 4:59 am
  9. December 30, 2011 at 3:24 am
  10. January 6, 2012 at 3:17 am
  11. January 13, 2012 at 4:31 pm
  12. January 17, 2012 at 7:02 pm
  13. January 19, 2012 at 12:06 am
  14. January 20, 2012 at 7:19 pm
  15. January 29, 2012 at 5:03 am
  16. February 4, 2012 at 8:09 pm
  17. February 13, 2012 at 4:40 am
  18. February 21, 2012 at 4:59 am
  19. February 26, 2012 at 11:58 pm
  20. March 6, 2012 at 5:19 am
  21. March 14, 2012 at 7:28 pm
  22. March 19, 2012 at 5:01 am
  23. March 24, 2012 at 2:36 am
  24. April 3, 2012 at 3:55 am
  25. April 10, 2012 at 2:08 am
  26. April 23, 2012 at 3:10 am
  27. May 1, 2012 at 2:28 am
  28. May 8, 2012 at 3:54 am
  29. June 5, 2012 at 3:32 am
  30. June 12, 2012 at 3:25 am
  31. June 20, 2012 at 4:15 am
  32. June 27, 2012 at 12:58 am
  33. July 4, 2012 at 3:34 am
  34. July 13, 2012 at 4:05 am
  35. July 17, 2012 at 1:59 am
  36. July 31, 2012 at 2:24 am
  37. August 7, 2012 at 2:28 am
  38. August 12, 2012 at 12:59 am
  39. August 14, 2012 at 1:51 am
  40. August 21, 2012 at 12:58 am
  41. September 11, 2012 at 12:45 am
  42. September 18, 2012 at 12:31 am
  43. September 24, 2012 at 2:18 am
  44. September 26, 2012 at 3:01 am
  45. September 27, 2012 at 3:37 am
  46. September 29, 2012 at 3:13 am
  47. October 5, 2012 at 2:07 am
  48. October 7, 2012 at 3:39 pm
  49. October 19, 2012 at 3:25 am
  50. October 26, 2012 at 2:41 am
  51. October 26, 2012 at 11:10 am
  52. November 1, 2012 at 12:57 am
  53. November 6, 2012 at 4:25 am
  54. November 15, 2012 at 4:39 am
  55. November 22, 2012 at 3:39 am
  56. December 1, 2012 at 11:23 pm
  57. December 22, 2012 at 6:12 pm
  58. December 29, 2012 at 3:54 am
  59. January 6, 2013 at 6:58 pm
  60. January 12, 2013 at 2:23 am
  61. January 17, 2013 at 2:57 am
  62. January 20, 2013 at 1:16 am
  63. January 27, 2013 at 2:07 am
  64. February 4, 2013 at 1:15 am
  65. February 12, 2013 at 1:21 am
  66. February 13, 2013 at 5:04 am
  67. February 14, 2013 at 2:00 am
  68. February 15, 2013 at 12:36 am
  69. February 16, 2013 at 12:02 am
  70. February 18, 2013 at 11:45 pm
  71. March 5, 2013 at 4:28 am
  72. March 22, 2013 at 12:49 am
  73. June 1, 2013 at 9:21 pm
  74. July 4, 2013 at 12:34 am
  75. July 12, 2013 at 1:13 am
  76. July 19, 2013 at 1:28 am
  77. July 30, 2013 at 1:09 am
  78. August 5, 2013 at 4:52 pm
  79. August 15, 2013 at 2:49 am
  80. October 24, 2013 at 12:15 am
  81. November 2, 2013 at 12:07 am
  82. November 5, 2013 at 3:25 am
  83. November 5, 2013 at 5:34 am
  84. November 26, 2013 at 1:30 am
  85. December 5, 2013 at 1:27 am
  86. December 7, 2013 at 3:12 am
  87. January 14, 2014 at 3:13 am
  88. February 17, 2014 at 3:49 am
  89. March 10, 2014 at 2:44 am
  90. March 31, 2014 at 3:06 am
  91. April 1, 2014 at 2:46 am
  92. April 8, 2014 at 1:28 am
  93. April 8, 2014 at 9:33 am
  94. April 28, 2014 at 12:49 am
  95. May 3, 2014 at 12:16 am
  96. May 6, 2014 at 11:58 pm
  97. May 14, 2014 at 9:06 am
  98. August 1, 2014 at 3:29 am
  99. February 16, 2016 at 3:26 pm
  100. May 21, 2021 at 6:30 pm
  101. March 24, 2022 at 3:00 pm

Leave a comment