-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStockExchange.java
More file actions
79 lines (62 loc) · 1.91 KB
/
StockExchange.java
File metadata and controls
79 lines (62 loc) · 1.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
package com.company;
import java.util.*;
public class StockExchange {
//two arraylists for NSE and BSE each
static ArrayList<Stock> NSE = new ArrayList<Stock>();
ArrayList<Stock> BSE = new ArrayList<Stock>();
//StockExchange constructor
StockExchange(){
}
//method to add stocks
public static void addStocks(String ticker, String type, double O, double H, double L, double C) {
NSE.add(new Stock(ticker, type, O, H, L, C));
}
//method to print stocks in NSE
public void print(){
for(Stock i: NSE){
System.out.println(i.toString());
}
// for(Stock i: BSE){
// System.out.println(i.toString());
// }
}
//method to delete stocks
public void delStocks(Stock stock) {
for (int i = 0; i < NSE.size(); i++) {
if (stock.ticker.equals(NSE.get(i).ticker)){
NSE.remove(stock);
}
}
}
//method to get all stocks in stock market
public void getAllStocks() {
for (Stock i : NSE) {
System.out.println(i);
}
for (Stock i : BSE) {
System.out.println(i);
}
}
//method to get stocks sectorwise
public void getStockBySector(String sector) {
for (int i = 0; i < NSE.size(); i++) {
if (NSE.get(i).type.equals(sector))
System.out.println(NSE.get(i));
}
}
//method to check ticker and returning the stock if ticker matches
public boolean checkTicker(String scrip){
for(int i =0;i<NSE.size();i++)
{
if(scrip.equals(NSE.get(i).ticker))
return true;
}
return false;
}
// @Override
// public String toString() {
// return "StockExchange{" +
// "BSE=" + BSE +
// '}';
// }
}