-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Osama/DERG-1441/add accumulator profit value to accumulator barriers (#…
…288) - Add profit to accumulators barrier component
- Loading branch information
1 parent
60f70dc
commit 25d1398
Showing
23 changed files
with
631 additions
and
278 deletions.
There are no files selected for viewing
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
14 changes: 14 additions & 0 deletions
14
...isualization/annotations/barriers/accumulators_barriers/accumulators_active_contract.dart
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,14 @@ | ||
/// Used to hold the active active accumulators contract information. | ||
class AccumulatorsActiveContract { | ||
/// Initializes [AccumulatorsActiveContract]. | ||
const AccumulatorsActiveContract({ | ||
required this.profit, | ||
required this.currency, | ||
}); | ||
|
||
/// Profit value of the current contract. | ||
final double? profit; | ||
|
||
/// The currency of the current contract. | ||
final String? currency; | ||
} |
207 changes: 0 additions & 207 deletions
207
...sualization/annotations/barriers/accumulators_barriers/accumulators_barriers_painter.dart
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.