-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
computing precisely a set of Observable[T] to generate
- Loading branch information
1 parent
681f8e4
commit 5e60132
Showing
16 changed files
with
52 additions
and
44 deletions.
There are no files selected for viewing
12 changes: 6 additions & 6 deletions
12
...function/_ifunctionifunctioniobservableiorderifunctionsideifunctionfloatifunctionfloat.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
from marketsim.gen._out._iobservable._iobservablebool import IObservablebool | ||
from marketsim.gen._out._observable._observableobject import Observableobject | ||
from marketsim.event import Conditional_Impl | ||
class Observablebool(Conditional_Impl, IObservablebool): | ||
_types = [] | ||
|
||
_types.append(Observableobject) | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
from marketsim.gen._out._iobservable._iobservablefloat import IObservablefloat | ||
from marketsim.gen._out._observable._observableobject import Observableobject | ||
from marketsim.event import Conditional_Impl | ||
class Observablefloat(Conditional_Impl, IObservablefloat): | ||
_types = [] | ||
|
||
_types.append(Observableobject) | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
from marketsim.gen._out._icandlestick import ICandleStick | ||
from marketsim.gen._out._iobservable._iobservableicandlestick import IObservableICandleStick | ||
from marketsim.gen._out._observable._observableobject import Observableobject | ||
from marketsim.event import Conditional_Impl | ||
class ObservableICandleStick(Conditional_Impl, IObservableICandleStick): | ||
_types = [] | ||
|
||
_types.append(Observableobject) | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
from marketsim.gen._out._iorder import IOrder | ||
from marketsim.gen._out._iobservable._iobservableiorder import IObservableIOrder | ||
from marketsim.gen._out._observable._observableobject import Observableobject | ||
from marketsim.event import Conditional_Impl | ||
class ObservableIOrder(Conditional_Impl, IObservableIOrder): | ||
_types = [] | ||
|
||
_types.append(Observableobject) | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
from marketsim.gen._out._ivolumelevels import IVolumeLevels | ||
from marketsim.gen._out._iobservable._iobservableivolumelevels import IObservableIVolumeLevels | ||
from marketsim.gen._out._observable._observableobject import Observableobject | ||
from marketsim.event import Conditional_Impl | ||
class ObservableIVolumeLevels(Conditional_Impl, IObservableIVolumeLevels): | ||
_types = [] | ||
|
||
_types.append(Observableobject) | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
from marketsim.gen._out._iobservable._iobservableobject import IObservableobject | ||
from marketsim.event import Conditional_Impl | ||
class Observableobject(Conditional_Impl, IObservableobject): | ||
_types = [] | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
from marketsim.gen._out._side import Side | ||
from marketsim.gen._out._iobservable._iobservableside import IObservableSide | ||
from marketsim.gen._out._observable._observableobject import Observableobject | ||
from marketsim.event import Conditional_Impl | ||
class ObservableSide(Conditional_Impl, IObservableSide): | ||
_types = [] | ||
|
||
_types.append(Observableobject) | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters