Skip to content

Commit bb6e33c

Browse files
committed
docs: remove methods that are not considered as public interface
1 parent f529b7b commit bb6e33c

File tree

1 file changed

+0
-44
lines changed

1 file changed

+0
-44
lines changed

docs/trade-object.md

Lines changed: 0 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -166,50 +166,6 @@ Sample return value: ETH/BTC had 5 trades, with a total profit of 1.5% (ratio of
166166
{"pair": "ETH/BTC", "profit": 0.015, "count": 5}
167167
```
168168

169-
### get_enter_tag_performance
170-
171-
Returns performance grouped by enter_tag.
172-
173-
``` python
174-
from freqtrade.persistence import Trade
175-
176-
# ...
177-
performance = Trade.get_enter_tag_performance('ETH/USDT') # or None for all pairs
178-
```
179-
180-
### get_exit_reason_performance
181-
182-
Returns performance grouped by exit_reason.
183-
184-
``` python
185-
from freqtrade.persistence import Trade
186-
187-
# ...
188-
performance = Trade.get_exit_reason_performance('ETH/USDT') # or None for all pairs
189-
```
190-
191-
### get_mix_tag_performance
192-
193-
Returns performance grouped by enter_tag + exit_reason combination.
194-
195-
``` python
196-
from freqtrade.persistence import Trade
197-
198-
# ...
199-
performance = Trade.get_mix_tag_performance('ETH/USDT') # or None for all pairs
200-
```
201-
202-
### get_best_pair
203-
204-
Get the best performing pair with closed trades.
205-
206-
``` python
207-
from freqtrade.persistence import Trade
208-
209-
# ...
210-
best_pair = Trade.get_best_pair()
211-
```
212-
213169
### get_trading_volume
214170

215171
Get total trading volume based on orders.

0 commit comments

Comments
 (0)