From 66577b741f7562a7a0b84258cf74657276a271af Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 6 Sep 2025 10:23:56 +0200 Subject: [PATCH] doc: improve orderbook wording --- docs/strategy-customization.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/strategy-customization.md b/docs/strategy-customization.md index 9cc2b7045..bbf8783c6 100644 --- a/docs/strategy-customization.md +++ b/docs/strategy-customization.md @@ -855,6 +855,8 @@ dataframe, last_updated = self.dp.get_analyzed_dataframe(pair=metadata['pair'], ### *orderbook(pair, maximum)* +Retrieve the current order book for a pair. + ``` python if self.dp.runmode.value in ('live', 'dry_run'): ob = self.dp.orderbook(metadata['pair'], 1)