Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
from StockExchangeStream[price >= 20] 
insert into StockQuoteStreamselect symbol, price as priceInUSD, currency:fromUSDtoEUR(price, 0.75) as priceInEUDR priceInEUR 
insert into StockQuoteStream;

Given below is a sample code that implements the above function.

...