-
Notifications
You must be signed in to change notification settings - Fork 0
/
seeds.rb
65 lines (65 loc) · 1.58 KB
/
seeds.rb
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
Stock.new(
:company => "Google",
:stock_ticker => :GOOG,
:free_cash_flow => 16500,
:num_shares => 332,
:PE_ratio => 25.8,
:dividend_per_share => 0, #Forward Annual Dividend Rate
:dividend_growth_rate => 0, #Forward Annual Dividend Yield
:beta => 1.19,
:cost_of_equity => 0,
:current_stock_price => 0,
:expected_share_value => 0,
:capm_share_value => 0,
:dividend_share_value => 0,
:composite_share_value => 0
)
Stock.new(
:company => "Microsoft",
:stock_ticker => :MSFT,
:free_cash_flow => 31626,
:num_shares => 8350,
:PE_ratio => 17.5,
:dividend_per_share => 0.92,
:dividend_growth_rate => 0.028,
:beta => 1.10,
:cost_of_equity => 0,
:current_stock_price => 0,
:expected_share_value => 0,
:capm_share_value => 0,
:dividend_share_value => 0,
:composite_share_value => 0
)
Stock.new(
:company => "Yahoo!"
:stock_ticker => :YHOO,
:free_cash_flow => -281,
:stock_ticker =>
:num_shares => 1008,
:PE_ratio => 6.67,
:dividend_per_share => 0,
:dividend_growth_rate => 0,
:beta => 0.89,
:cost_of_equity => 0,
:current_stock_price => 0,
:expected_share_value => 0,
:capm_share_value => 0,
:dividend_share_value => 0,
:composite_share_value => 0
)
Stock.new(
:company => "Facebook",
:stock_ticker => :FB,
:free_cash_flow => 1612,
:num_shares => 2420,
:PE_ratio => 872,
:dividend_per_share => 0,
:dividend_growth_rate => 0,
:beta => 1.33,
:cost_of_equity => 0,
:current_stock_price => 10,
:expected_share_value => 0,
:capm_share_value => 0,
:dividend_share_value => 0,
:composite_share_value => 0
)