From 4cd75c9753cd84d03299f41df6729170e8e1e51c Mon Sep 17 00:00:00 2001 From: Joe Schr <8218910+TheJoeSchr@users.noreply.github.com> Date: Mon, 15 Jul 2024 20:49:56 +0200 Subject: [PATCH] docs: replace orderflow dataframe with dict in code comment --- docs/advanced-orderflow.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/advanced-orderflow.md b/docs/advanced-orderflow.md index 3b7fac597..22a28fe87 100644 --- a/docs/advanced-orderflow.md +++ b/docs/advanced-orderflow.md @@ -61,7 +61,7 @@ Once activated, several new columns become available in your dataframe: ``` python dataframe["trades"] # Contains information about each individual trade. -dataframe["orderflow"] # Represents a footprint chart dataframe (see below) +dataframe["orderflow"] # Represents a footprint chart dict (see below) dataframe["imbalances"] # Contains information about imbalances in the order flow. dataframe["bid"] # Total bid volume dataframe["ask"] # Total ask volume