ish_manager 0.1.8.433 → 0.1.8.434
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/controllers/ish_manager/iro_purses_controller.rb +8 -5
- data/app/views/ish_manager/application/_main_header_admin.haml +1 -1
- data/app/views/ish_manager/iro_positions/_form.haml +3 -0
- data/app/views/ish_manager/iro_purses/index.haml +8 -0
- data/app/views/ish_manager/iro_purses/show.haml +9 -4
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f59ba038998f76d3d5ecdcb6eb2f77479f920c263afe1d43ee460cf50ce3d544
|
4
|
+
data.tar.gz: f0644f8f8d78f5d4a28d890a0448b29c967ed409d06a809a006a4eede8aff31a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a86169cf6c2e4b5c32474bca91829d70e78de53dad447e2f88d9cf1e3a9c52ecad7f9776a3ee480997a2109fab55e1cfbe967ad595ee52d6a25840a9dbc890a8
|
7
|
+
data.tar.gz: 28999bf3f30065d70c73698e26c1a46f194c4fbdc46c1cd75b4bcc346dcf732c3b11f315144b91ce74db1f69703eb8817acf1978f53e07e01832694cbecf3812
|
@@ -23,6 +23,11 @@ class ::IshManager::IroPursesController < IshManager::ApplicationController
|
|
23
23
|
authorize! :edit, @iro_purse
|
24
24
|
end
|
25
25
|
|
26
|
+
def index
|
27
|
+
@iro_purses = Iro::Purse.all
|
28
|
+
authorize! :index, Iro::Purse
|
29
|
+
end
|
30
|
+
|
26
31
|
def new
|
27
32
|
@iro_purse = Iro::Purse.new
|
28
33
|
authorize! :new, @iro_purse
|
@@ -32,13 +37,11 @@ class ::IshManager::IroPursesController < IshManager::ApplicationController
|
|
32
37
|
@purse = Iro::Purse.find params[:id]
|
33
38
|
authorize! :my, @purse
|
34
39
|
|
35
|
-
@strategies =
|
36
|
-
|
37
|
-
|
40
|
+
@strategies = Iro::CoveredCallStrategy.all
|
38
41
|
underlyings = Tda::Stock.get_quotes( @strategies.map(&:ticker).compact.uniq.join(",") )
|
39
|
-
json_puts! underlyings, 'out'
|
42
|
+
# json_puts! underlyings, 'out'
|
40
43
|
underlyings.each do |ticker, v|
|
41
|
-
puts! v[:mark], 'ze mark'
|
44
|
+
# puts! v[:mark], 'ze mark'
|
42
45
|
Iro::CoveredCallStrategy.where( ticker: ticker ).update( current_underlying_strike: v[:mark] )
|
43
46
|
end
|
44
47
|
|
@@ -91,11 +91,16 @@
|
|
91
91
|
%td.begin-on= pp_date p.opened_on
|
92
92
|
%td.price= p.opened_price
|
93
93
|
%td.to-open
|
94
|
-
|
94
|
+
- this_to_open = p.opened_price * 100 * p.quantity - 0.66 * p.quantity
|
95
|
+
= pp_amount( this_to_open )
|
95
96
|
%td.begin-delta= sprintf('%.2f', p.opened_delta ) rescue nil
|
96
|
-
%td
|
97
|
-
|
98
|
-
%td.
|
97
|
+
%td.to-close
|
98
|
+
= p.current_price
|
99
|
+
%td.net
|
100
|
+
- this_net = ( p.opened_price - p.current_price ) * 100 * p.quantity - 0.65 * 2 * p.quantity
|
101
|
+
= pp_money( this_net )
|
102
|
+
%td.netp
|
103
|
+
= pp_percent( this_net / this_to_open )
|
99
104
|
%td= sprintf('%.2f', p.current_delta ) rescue nil
|
100
105
|
%td= (p.expires_on.to_date - p.opened_on).to_i
|
101
106
|
%td.must-roll= pp_bool p.must_roll?
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ish_manager
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.8.
|
4
|
+
version: 0.1.8.434
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- piousbox
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-05-
|
11
|
+
date: 2023-05-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -638,6 +638,7 @@ files:
|
|
638
638
|
- app/views/ish_manager/iro_positions/roll.haml
|
639
639
|
- app/views/ish_manager/iro_purses/_form.haml
|
640
640
|
- app/views/ish_manager/iro_purses/edit.haml
|
641
|
+
- app/views/ish_manager/iro_purses/index.haml
|
641
642
|
- app/views/ish_manager/iro_purses/new.haml
|
642
643
|
- app/views/ish_manager/iro_purses/show.haml
|
643
644
|
- app/views/ish_manager/iro_purses/show_gameui.haml
|