Life
Sites
-
Recent Posts
Log In
Categories
Tag Archives: angular
Using Duration in Typescript
I’m converting Java 8 code to Typescript. Java 8 introduced a great Duration class that uses ChronoUnit to specify units such as DAYS or HOURS. You then instantiate a duration using that: Duration.of(3, SECONDS); Duration.of(465, HOURS); Duration can then interact … Continue reading
Posted in Angular, Development, Technology, Typescript
Tagged angular, coding, development, duration, typescript
Leave a comment
Creating a new Angular Site on Google Firebase
Angular is a framework for creating front-ends for websites. Technically, the site is static from a web hosting perspective, meaning that in and of itself it does not have a database, but rather only serves static files from the web … Continue reading
Posted in Angular, Development, Technology, Web
Tagged angular, development, firebase, hosting, web
Leave a comment
Using JSONP in Angular 8
JSONP is one way to get around CORS when getting data from a REST service. It does require a callback feature on the part of the service, which isn’t readily clear in some of the blogs and samples online for … Continue reading
Added Charting to Automated Trading System
This is a continuation of Developing an Automated Trading System. Many of us use very robust charting software, including the popular thinkorswim platform, that does more than I plan to create in my system. The requirement I ran into that … Continue reading