chore: remove unused parameter pairs from populate_dataframe_with_trades

This commit is contained in:
Joe Schr
2024-02-26 11:55:59 +01:00
parent 6bdf6bed7b
commit d15f17a03f
3 changed files with 4 additions and 8 deletions

View File

@@ -78,8 +78,7 @@ def test_public_trades_mock_populate_dataframe_with_trades__check_orderflow(
'stacked_imbalance_range': 3
}}
# Apply the function to populate the data frame with order flow data
df = populate_dataframe_with_trades(config,
dataframe, trades, pair='unitttest')
df = populate_dataframe_with_trades(config, dataframe, trades)
# Extract results from the first row of the DataFrame
results = df.iloc[0]
t = results['trades']
@@ -183,7 +182,7 @@ def test_public_trades_trades_mock_populate_dataframe_with_trades__check_trades(
}
# Populate the DataFrame with trades and order flow data
df = populate_dataframe_with_trades(config, dataframe, trades, pair='unitttest')
df = populate_dataframe_with_trades(config, dataframe, trades)
# --- DataFrame and Trade Data Validation ---