require urgne code and explanation
Problem Statement: —————— A Currency broker company has asked us to build a system that notifies them when a currency pair rate reaches the target rate. User configures the currency pair and target rate. The URL to get the Rates in XML form: “http://rates.fxcm.com/RatesXML” Example of the rate: <Rate Symbol=”EURUSD”> <Bid>1.38022</Bid> <Ask>1.38042</Ask> <High>1.38266</High> <Low>1.37634</Low> <Direction>0</Direction> <Last>10:42:43</Last> </Rate> Here “Bid” is the current rate. “Ask” […]