html5
play

HTML5 M ICHEL A NDR CTO MAN @ SAXOBANK . COM @michelandre71 AGENDA - PowerPoint PPT Presentation

H IGH PERFORMANCE TRADING APPLICATIONS USING HTML5 M ICHEL A NDR CTO MAN @ SAXOBANK . COM @michelandre71 AGENDA Saxo Bank Primer: Setting the Scene Why application performance matters Defining performance .


  1. H IGH PERFORMANCE TRADING APPLICATIONS USING HTML5 M ICHEL A NDRÉ CTO MAN @ SAXOBANK . COM @michelandre71

  2. AGENDA • Saxo Bank Primer: Setting the Scene • Why application performance matters – Defining “ performance” . • Factors affecting performance – R eal and self-imposed constraints • Case-Study – Presenting SaxoTrader GO – Walk through of architectural & technical choices (Magically it ended up with 7 steps to… .)

  3. S AXO BANK: S ETTING THE S CENE NATIONALITIES 59 S POKEN LANGUAGES IN THE BANK 40 OFFICES 25 countries NO. OF FX TRADES PER DAY 170,000 MAX NO TRADES / S ECOND >1300 MAX NO PRICES / S ECOND >400 000 DAILY AVERAGE TURNOVER 100 billion DKK NO. OF COUNTRIES WITH RETAIL CLIENTS 190 S AXOTRADER LANGUAGES 25 GROS S PROFIT <15 cents per 1,000 US D traded FINANCIAL INS TRUMENTS more than 30,000 RECEIVED PRICES PER DAY 5-6 billion MAX CONCURRENT US ERS ~15.000. EMPLOYEES >1300

  4. S AXO BANK TECHNOLOGY & BUS INES S MODEL PROVIDER OF PRICES SAXO BANK AND CLIENTS PRODUCTS 12 Private SAXO BANK’S ONLINE Large International TRADING Banks White Label Clients PLATFORM BANKS, BROKERAGES, ETC. USING 50 SAXO BANK’S TRADING PLATFORM Exchanges Institutions/ NASDAQ, NYSE, OMX, LSE, GLOBEX, EUREX, ETC. Corporates ASSET MANAGERS, FINANCIAL 25 ADVISORS, INTRODUCING BROKERS Other Trading Facilities CHI-X, TURQUOISE, ETC.

  5. PERFORMANCE… AND WHY IT MA TTERS ..

  6. PERFORMANCE • R esponse Times: The 3 Important Limits: (Jakob Nielsen 1993) 0.1 second: the limit for the user feeling that the system reacts – instantaneously 1.0 second: the limit for the users flow of thought. – 10 seconds: the limit for keeping the user’s attention. – • Amazon reports 100 ms in page load time cost 1% in sales (2006). • Google experiment showed 0.5 s increased delay causes 20% drop in traffic. (2006) • Nearly 60% of web users say they expect a website to load on their mobile phone in 3 seconds or less… 50% are willing to wait 5 seconds or less for an application to load before exiting (Compuware, 2011) • Tabb group on trading systems: 5 ms latency could result in 1% drop in flow. (2008)

  7. TRADING CURRENCY – TRADING ON QUOTE Liquidit y 1. 07546/ 1. 07566 Liquidit y Liquidit y 1. 07546/ 1. 07566 Liquidit y Liquidit y

  8. TRADING CURRENCY – TRADING ON QUOTE Liquidit y 1. 07546/ 1. 07566 BUY 25. 000 Liquidit y EURUSD @ 1. 07566 Liquidit y 1. 07546/ 1. 07566 Liquidit y Liquidit y

  9. TRADING CURRENCY – TRADING ON QUOTE Liquidit y 1. 07546/ 1. 07566 BUY 25. 000 Liquidit y EURUSD @ 1. 07566 Liquidit y 1. 07546/ 1. 07566 Liquidit y Liquidit y

  10. S O FOR US PERFORMANCE MEANS Applicat ion Load Time: From st art ing app (hit t ing URL) t o login complet ed and app ready: Fast enough t o keep t he client around. (<5 s). UI R esponsiveness: Visual feedback on user act ion in applicat ion, it should feel immediat e (~100 ms). --- but scrolling must also be smoot h (~40 mS) Syst em R esponsiveness: Visual feedback on user act ion involving whole syst em (such as order confirmat ion) (<< 1s). (Price) Lat ency: User can accept t he lat est price, so his t rade will not get rej ect ed (~300-500 ms). And remember people are trading with real money in fast moving markets, so psychologically they must also feel that they have the best tool and control.

  11. F ACTORS AFFECTING PERFORMANCE (PHYS ICAL) 0 km ~ 0 ms round-trip Liquidity Copenhagen Copenhagen Copenhagen 9996 km ~ 67 ms round-trip Liquidity New York Singapore Liquidity Singapore 15992 km ~ 107 ms round-trip Liquidity Sydney Sydney Connect…. • Fetch login page • Login • Fetch Application • Fetch User Data • Start Trading • *) Unrealistically best case J based on speed of light in direct point to point.

  12. F ACTORS AFFECTING PERFORMANCE (S ELF IMPOS ED) Strategic decision to build on REST based OpenAPI – and dogfood Speed ”Purity” APX § Need to support White Label Customizations (Logos, Layouts, Configurability) § There is significant business logic in the application and we cannot afford to build both a web and multiple native applications. § And keep them updated!

  13. CAS E S TUDY S AXOTRADER GO…

  14. AN APPLICA TION WITH MANY F AS T CHANGING ELEMENTS ..

  15. WHA T HAPPENS ? DNS, SSL Request to load application Receive App Connect DNS, SSL DNS, SSL Connect Connect Receive Receive Receive referred referred referred resource resource resource Connect to service layer User Dat a DNS, SSL St reaming Connect Subscribe t o dat a Now the application is ready

  16. CURE 1: GET RID OF THE WEB S ER VER Traditional Web Page/App Delivery Web- Output Building web page request Traditionally slow as we depend on • dynamic data Often hard to cache • Service DB We can’t get rid of the latency to the • data center App separated out from dynamic data Pre build package of Web- Output html/js/css request • Very fast as it is just static resources • Caches well at multiple stages: Server, CDN Edge Node and in browser cache locally.

  17. CURE 2: US E A CDN WITH S S L OFFLOADING • Large application vs small sets of dynamic data • Initial load of application depends on range of network related factors – DNS, connect time, SSL connection time, Network package negotiation (TCP Initial Window Size) – Power Save on phones is a separate problem – The network route to your servers may not be the most efficient possible – Prefetch may “ warmup” connections. <link rel=“prefetch” href=https://streaming.saxotrader.com/openapi/isalive”> Hack J and not always supported where you need it the most. • Engaging with a CDN can “ auto” solve a lot of these issues

  18. CURE 2: US E A CDN WITH S S L OFFLOADING

  19. CURE 2: US E A CDN WITH S S L OFFLOADING

  20. CURE 3: US ING S TREAMING TECHNOLOGY TO PUS H OUT UPDA TES Stream of Δ s Response Request Snapshot Subscribe Streaming Servers Open API Servers Ref Data Performance Trading Portfolio Deltas from Snapshot are calculated & streamed Internal Network High performance message bus D

  21. CURE 4: COMPROMIS ING ON RES PONS IVE DES IGN Y ou want to optimize for download size Y ou want to optimize for number of http requests Y ou can make a website look nice across all devices with R WD – Do you want t o load CSS f or all plat f orms always? – Is it really t he same app scaled down/ up or a dif f erent one built f rom t he same building blocks? – If you have a lot of code you may have t o have dif f erent delivery approach depending on what t he consuming device Often understood as: can handle, reducing t he benef it of RWD Have CSS rules for scaling (and rearranging UI • We have chosen to have 3 different elements) Conditionally load images/icons of different size • applications bundled for desktop, tablets and Have one code base that dynamically scales • phones – RWD ensures t hat we handle t he dif f erent f orm f act ors wit hin each cat egory

  22. EXAMPLE 1: S AXOTRADER GO FOR DES KTOP

  23. EXAMPLE 2: S AXOTRADER GO FOR MOBILE User defined watch-list Positions in the market Charts and financial studies

  24. THROUGHOUT THIS … REMEMBER THE Y -S LOW RULES . * And remember, there is always a balance J Also remember: This is hard work… • But it pays off • *) http://yslow.org/

  25. CURE 5: US E THE APPLICA TION CACHE • Intended for “ offline” applications • We use it to cache the entire static part of the application • It performs better because all the application has to do is check whether there are changes to the manifest file, rather than all other resources • NOTE: Hard to force update a cached application. The user can get stuck

  26. A GAME J CURE 6: TREA T THE APPLICA TION AS IF IT WAS • We receive a lot of updates from the server • The user needs to be able to interact with the application instantly • Updating the DOM is expensive. Even more so if it involves layout • Do you know the framerate your application can maintain? • R emember the chart? It represents completely different challenges

  27. A GAME J CURE 6: TREA T THE APPLICA TION AS IF IT WAS

  28. A GAME J CURE 6: TREA T THE APPLICA TION AS IF IT WAS

  29. A GAME J CURE 6: TREA T THE APPLICA TION AS IF IT WAS

  30. A GAME J CURE 6: TREA T THE APPLICA TION AS IF IT WAS

  31. CURE 7: MEAS URE CONTINUOUS LY AND IN DEPTH Externally using Dynatrace

  32. CURE 7: MEAS URE CONTINUOUS LY AND IN DEPTH Externally using Dynatrace In App using custom tools

  33. CURE 7: MEAS URE CONTINUOUS LY AND IN DEPTH Externally using Dynatrace In App using custom tools At API layer using LogParser + inhouse tools

  34. CURE 7: MEAS URE CONTINUOUS LY AND IN DEPTH Externally using Dynatrace In App using custom tools At API layer using LogParser + inhouse tools

  35. In Conclusion: Performance is critically important, especially in trading applications The combination of HTML5 and (Open)API’s is attractive from a business and technology perspective. Building a high performance HTML5 application is entirely possible! But you must make some architectual decisions (such as push technology) And you must pay attention to detail. All the time.

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend