Skip to content

Instantly share code, notes, and snippets.

@revodavid
Created June 8, 2017 22:23
Show Gist options
  • Select an option

  • Save revodavid/e7894c02415794d68a18bb3adda7f323 to your computer and use it in GitHub Desktop.

Select an option

Save revodavid/e7894c02415794d68a18bb3adda7f323 to your computer and use it in GitHub Desktop.
library(doAzureParallel)
# generate a credentials json file "cluster", then...
registerDoAzureParallel(cluster)
# Run 5 million option pricing simulations
closingPrices <- foreach(i = 1:50, .combine='c') %dopar% {
replicate(100000, getClosingPrice())
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment