Calculate the exact monetary value of one pip for EURGBP.
Calculate the exact pip value for EURGBP trades. EURGBP has a pip size of 0.0001 and a contract size of 100,000, making each pip worth ~$12.70 (cross pair, varies).
from gfil_calculators.pip_value import calculate_pip_value
result = calculate_pip_value("EURGBP", 1.0, "USD")
print(f"1 pip = ${result['one_pip']}")