Hello im quite new to python / oanda trading platform Im trying to determine the times where trade volumes are highest to reduce trading costs
My imported libraries are as follows: import pandas as pd import numpy as np import tpqoa import datetime from datetime import datetime, timedelta import time import re
This is my current code used to get certain instrument data. However on oanda website and online I am unable to find how I can determine the volume of trades say give a certain granularity (say 1 hr)
api.get_history(instrument = instrument, start = past, end = now, granularity = "M30", price = "M", localize = False)
Iam wondering if anyone can help. Thank you!