Calculate the exact monetary value of one pip for ADAUSD.
Calculate the exact pip value for ADAUSD trades. ADAUSD has a pip size of 0.0001 and a contract size of 1 ADA, making each pip worth $0.0001 per lot.
from gfil_calculators.pip_value import calculate_pip_value
result = calculate_pip_value("ADAUSD", 1.0, "USD")
print(f"1 pip = ${result['one_pip']}")