19 lines
542 B
Python
19 lines
542 B
Python
import argparse
|
|
import v2realbot.reporting.metricstoolsimage as mt
|
|
|
|
# Parse the command-line arguments
|
|
# parser = argparse.ArgumentParser(description="Generate trading report image with batch ID")
|
|
# parser.add_argument("batch_id", type=str, help="The batch ID for the report")
|
|
# args = parser.parse_args()
|
|
|
|
# batch_id = args.batch_id
|
|
|
|
# Generate the report image
|
|
res, val = mt.generate_trading_report_image(batch_id="4d7dc163")
|
|
|
|
# Print the result
|
|
if res == 0:
|
|
print("BATCH REPORT CREATED")
|
|
else:
|
|
print(f"BATCH REPORT ERROR - {val}")
|