Skip to content
This repository has been archived by the owner on Feb 16, 2020. It is now read-only.

Commit

Permalink
made it clear that profit is based on simulated trades
Browse files Browse the repository at this point in the history
  • Loading branch information
askmike committed Jun 3, 2013
1 parent 62da6eb commit b1f06a6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions logger.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,21 +87,21 @@ Logger.prototype.report = function() {

log.info(
'(PROFIT REPORT)',
'original balance:\t',
'original simulated balance:\t',
round(this.start.balance),
this.reportIn
);

log.info(
'(PROFIT REPORT)',
'current balance:\t',
'current simulated balance:\t',
round(this.current.balance),
this.reportIn
);

log.info(
'(PROFIT REPORT)',
'profit:\t\t\t',
'simulated profit:\t\t',
round(this.profit),
this.reportIn,
'(' + round(this.relativeProfit) + '%)'
Expand Down

0 comments on commit b1f06a6

Please sign in to comment.