Skip to content

Commit

Permalink
Merge branch 'master' of github.com:jrmeier/fast_trade
Browse files Browse the repository at this point in the history
  • Loading branch information
jrmeier committed Apr 20, 2021
2 parents 8061f8a + b09500c commit dd73fef
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 @@ -347,7 +347,7 @@ Backtests include all the instructions needed to run the backtest minus the data
- enter: list,
- required
- default: `None`
- description: a list of [Logic](#LogicDetail)'s with instructions to compare the data on each tick. ALL logic items must return True to ENTER the trade.
- description: a list of [Logic](#LogicDetail)'s with instructions to compare the data on each tick. EVERY logic item must return True to ENTER the trade.

- any_enter: list,
- optional
Expand All @@ -357,7 +357,7 @@ Backtests include all the instructions needed to run the backtest minus the data
- exit: list
- required
- default: `None`
- description: a list of [Logic](#LogicDetail)'s with instructions to compare the data on each tick. ANY LOGIC ITEM can return True to EXIT the trade.
- description: a list of [Logic](#LogicDetail)'s with instructions to compare the data on each tick. EVERY LOGIC ITEM must return True to EXIT the trade.

- any_exit: list
- optional
Expand Down

0 comments on commit dd73fef

Please sign in to comment.