Skip to content

Instantly share code, notes, and snippets.

@clintonyeb
Created May 19, 2020 02:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save clintonyeb/5815752e7a0ad2d6f543005c8d9cb265 to your computer and use it in GitHub Desktop.
Save clintonyeb/5815752e7a0ad2d6f543005c8d9cb265 to your computer and use it in GitHub Desktop.
import { Component, OnInit } from '@angular/core';
import { AppService } from './app.service';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
})
export class AppComponent implements OnInit {
currency = '';
currencies;
tickCount = 0;
pipDiff = 0;
buyOrSell = '';
ticker = 0;
movavg = 0;
webSocket;
averages;
constructor(private appService: AppService) {}
ngOnInit(): void {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment