Skip to content

Commit

Permalink
Fix typo (#1308)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChiahungTai committed Oct 7, 2022
1 parent bee05f5 commit b22ecd1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion qlib/backtest/decision.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ def clip_time_range(self, start_time: pd.Timestamp, end_time: pd.Timestamp) -> T

class BaseTradeDecision(Generic[DecisionType]):
"""
Trade decisions ara made by strategy and executed by executor
Trade decisions are made by strategy and executed by executor
Motivation:
Here are several typical scenarios for `BaseTradeDecision`
Expand Down
2 changes: 1 addition & 1 deletion qlib/utils/index_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Licensed under the MIT License.
"""
Motivation of index_data
- Pandas has a lot of user-friendly interfaces. However, integrating too much features in a single tool bring to much overhead and makes it much slower than numpy.
- Pandas has a lot of user-friendly interfaces. However, integrating too much features in a single tool bring too much overhead and makes it much slower than numpy.
Some users just want a simple numpy dataframe with indices and don't want such a complicated tools.
Such users are the target of `index_data`
Expand Down

0 comments on commit b22ecd1

Please sign in to comment.