Skip to content

Commit

Permalink
Updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
torreyleonard committed Feb 5, 2019
1 parent cca4c08 commit 492b9fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ But first, you'll need to create a new instance of the Scheduler. Here's an easy
const Scheduler = algotrader.Algorithm.Scheduler;

const openingTask = new Scheduler(function run() {
console.log("Running!);
console.log("Running!");
});

openingTask.onMarketOpen(-5 * 60000).then(nextDate => {
Expand All @@ -424,7 +424,7 @@ openingTask.onMarketOpen(-5 * 60000).then(nextDate => {
const Scheduler = algotrader.Algorithm.Scheduler;

const halfHourTask = new Scheduler(function run() {
console.log("Running!);
console.log("Running!");
});

halfHourTask.every(30, false);
Expand Down

0 comments on commit 492b9fa

Please sign in to comment.