├── .editorconfig ├── .github └── workflows │ └── dotnet.yml ├── .gitignore ├── Chart ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── Chart.csproj ├── ComponentComposer.cs ├── Controls │ ├── CanvasContainerControl.cs │ ├── CanvasControl.cs │ ├── CanvasImageControl.cs │ ├── ChartControl.xaml │ └── ChartControl.xaml.cs ├── Decorators │ ├── AxisDecorator.cs │ ├── BaseDecorator.cs │ ├── CrossDecorator.cs │ ├── GridDecorator.cs │ └── LabelDecorator.cs ├── Enums │ ├── ChartTypeEnum.cs │ └── PositionEnum.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Models │ ├── BaseModel.cs │ ├── InputAreaModel.cs │ ├── InputModel.cs │ ├── InputSeriesModel.cs │ └── InputShapeModel.cs ├── Series │ ├── AreaSeries.cs │ ├── ArrowSeries.cs │ ├── BarSeries.cs │ ├── BaseSeries.cs │ ├── CandleSeries.cs │ └── LineSeries.cs ├── Services │ └── LogService.cs └── Shapes │ ├── BaseShape.cs │ └── LineShape.cs ├── Client ├── App.config ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── Client.csproj ├── Controls │ ├── ActiveOrdersControl.xaml │ ├── ActiveOrdersControl.xaml.cs │ ├── ActivePositionsControl.xaml │ ├── ActivePositionsControl.xaml.cs │ ├── MenuItemControl.xaml │ ├── MenuItemControl.xaml.cs │ ├── OrdersControl.xaml │ ├── OrdersControl.xaml.cs │ ├── PositionsControl.xaml │ ├── PositionsControl.xaml.cs │ ├── StatementExpanderControl.xaml │ ├── StatementExpanderControl.xaml.cs │ ├── StatementsControl.xaml │ ├── StatementsControl.xaml.cs │ ├── TimeSeriesControl.xaml │ └── TimeSeriesControl.xaml.cs ├── Strategies │ ├── BaseStrategy.cs │ ├── ComboStrategy.cs │ ├── ImbalanceStrategy.cs │ └── ReverseStrategy.cs └── Windows │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── PopupWindow.xaml │ └── PopupWindow.xaml.cs ├── Core ├── Collections │ ├── IndexCollection.cs │ ├── NameCollection.cs │ ├── TimeCollection.cs │ └── TimeSpanCollection.cs ├── Core.csproj ├── Enums │ ├── ActionEnum.cs │ ├── CurrencyEnum.cs │ ├── EnvironmentEnum.cs │ ├── InstrumentTypeEnum.cs │ ├── NameEnum.cs │ ├── OperationEnum.cs │ ├── OptionSideEnum.cs │ ├── OrderSideEnum.cs │ ├── OrderStatusEnum.cs │ ├── OrderTimeSpanEnum.cs │ ├── OrderTypeEnum.cs │ ├── ShapeEnum.cs │ └── StatusEnum.cs ├── Indicators │ ├── AverageTrueRangeIndicator.cs │ ├── ImbalanceIndicator.cs │ ├── MovingAverageIndicator.cs │ ├── PerformanceIndicator.cs │ ├── RelativeStrengthIndicator.cs │ └── ScaleIndicator.cs ├── Managers │ ├── CalculationManager.cs │ ├── ConversionManager.cs │ └── InstanceManager.cs ├── Messages │ ├── BaseMessage.cs │ └── TransactionMessage.cs ├── Models │ ├── AccountModel.cs │ ├── BaseModel.cs │ ├── Charts │ │ ├── ChartDataModel.cs │ │ └── ChartModel.cs │ ├── ExpandoModel.cs │ ├── GatewayModel.cs │ ├── IndicatorModel.cs │ ├── Instruments │ │ ├── InstrumentFutureModel.cs │ │ ├── InstrumentModel.cs │ │ └── InstrumentOptionModel.cs │ ├── Points │ │ ├── PointBarModel.cs │ │ └── PointModel.cs │ ├── ProcessorModel.cs │ ├── ResponseModel.cs │ ├── StateModel.cs │ ├── TimeModel.cs │ └── Transactions │ │ ├── TransactionModel.cs │ │ ├── TransactionOrderModel.cs │ │ └── TransactionPositionModel.cs └── Services │ ├── CacheService.cs │ ├── ClientService.cs │ ├── LogService.cs │ └── ScheduleService.cs ├── Data └── Quotes │ ├── GOOG │ └── GOOGL ├── Evaluation ├── Collections │ └── TimeSpanCollectionTests.cs ├── Evaluation.csproj └── Statistics │ └── StatisticsTests.cs ├── Gateway ├── Alpaca │ ├── Gateway.Alpaca.csproj │ ├── GatewayClient.cs │ ├── MapInput.cs │ └── MapOutput.cs ├── Gemini │ ├── Gateway.Gemini.csproj │ ├── GatewayClient.cs │ ├── MapInput.cs │ └── MapOutput.cs ├── Oanda │ ├── Gateway.Oanda.csproj │ ├── GatewayClient.cs │ ├── Maps │ │ ├── DealStatusMap.cs │ │ ├── OrderStatusMap.cs │ │ ├── OrderTimeSpanMap.cs │ │ └── OrderTypeMap.cs │ └── Models │ │ ├── InputAccountItemModel.cs │ │ ├── InputAccountModel.cs │ │ ├── InputDealListModel.cs │ │ ├── InputDealModel.cs │ │ ├── InputOrderListModel.cs │ │ ├── InputOrderModel.cs │ │ ├── InputPointModel.cs │ │ └── InputPriceModel.cs ├── Simulation │ ├── Gateway.Simulation.csproj │ ├── GatewayClient.cs │ └── GatewayClientGenerator.cs └── Tradier │ ├── Gateway.Tradier.csproj │ ├── GatewayClient.cs │ ├── Maps │ └── DealStatusMap.cs │ └── Models │ ├── InputOptionItemModel.cs │ ├── InputOptionModel.cs │ └── InputPointModel.cs ├── LICENSE ├── README.md ├── Score ├── AHPR.cs ├── CAGR.cs ├── Change.cs ├── EdgeRatio.cs ├── FrameMetrics.cs ├── GHPR.cs ├── KestnerRatio.cs ├── MAE.cs ├── MAR.cs ├── MFE.cs ├── MartinRatio.cs ├── Metrics.cs ├── RegressionCorrelation.cs ├── Score.csproj ├── SeriesMetrics.cs ├── SharpeRatio.cs ├── SortinoRatio.cs ├── StandardScore.cs └── SterlingRatio.cs ├── Screens └── Panels.png └── Solution.sln /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/.gitignore -------------------------------------------------------------------------------- /Chart/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Chart/App.xaml -------------------------------------------------------------------------------- /Chart/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Chart/App.xaml.cs -------------------------------------------------------------------------------- /Chart/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Chart/AssemblyInfo.cs -------------------------------------------------------------------------------- /Chart/Chart.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Chart/Chart.csproj -------------------------------------------------------------------------------- /Chart/ComponentComposer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Chart/ComponentComposer.cs -------------------------------------------------------------------------------- /Chart/Controls/CanvasContainerControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Chart/Controls/CanvasContainerControl.cs -------------------------------------------------------------------------------- /Chart/Controls/CanvasControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Chart/Controls/CanvasControl.cs -------------------------------------------------------------------------------- /Chart/Controls/CanvasImageControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Chart/Controls/CanvasImageControl.cs -------------------------------------------------------------------------------- /Chart/Controls/ChartControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Chart/Controls/ChartControl.xaml -------------------------------------------------------------------------------- /Chart/Controls/ChartControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Chart/Controls/ChartControl.xaml.cs -------------------------------------------------------------------------------- /Chart/Decorators/AxisDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Chart/Decorators/AxisDecorator.cs -------------------------------------------------------------------------------- /Chart/Decorators/BaseDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Chart/Decorators/BaseDecorator.cs -------------------------------------------------------------------------------- /Chart/Decorators/CrossDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Chart/Decorators/CrossDecorator.cs -------------------------------------------------------------------------------- /Chart/Decorators/GridDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Chart/Decorators/GridDecorator.cs -------------------------------------------------------------------------------- /Chart/Decorators/LabelDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Chart/Decorators/LabelDecorator.cs -------------------------------------------------------------------------------- /Chart/Enums/ChartTypeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Chart/Enums/ChartTypeEnum.cs -------------------------------------------------------------------------------- /Chart/Enums/PositionEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Chart/Enums/PositionEnum.cs -------------------------------------------------------------------------------- /Chart/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Chart/MainWindow.xaml -------------------------------------------------------------------------------- /Chart/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Chart/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Chart/Models/BaseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Chart/Models/BaseModel.cs -------------------------------------------------------------------------------- /Chart/Models/InputAreaModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Chart/Models/InputAreaModel.cs -------------------------------------------------------------------------------- /Chart/Models/InputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Chart/Models/InputModel.cs -------------------------------------------------------------------------------- /Chart/Models/InputSeriesModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Chart/Models/InputSeriesModel.cs -------------------------------------------------------------------------------- /Chart/Models/InputShapeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Chart/Models/InputShapeModel.cs -------------------------------------------------------------------------------- /Chart/Series/AreaSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Chart/Series/AreaSeries.cs -------------------------------------------------------------------------------- /Chart/Series/ArrowSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Chart/Series/ArrowSeries.cs -------------------------------------------------------------------------------- /Chart/Series/BarSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Chart/Series/BarSeries.cs -------------------------------------------------------------------------------- /Chart/Series/BaseSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Chart/Series/BaseSeries.cs -------------------------------------------------------------------------------- /Chart/Series/CandleSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Chart/Series/CandleSeries.cs -------------------------------------------------------------------------------- /Chart/Series/LineSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Chart/Series/LineSeries.cs -------------------------------------------------------------------------------- /Chart/Services/LogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Chart/Services/LogService.cs -------------------------------------------------------------------------------- /Chart/Shapes/BaseShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Chart/Shapes/BaseShape.cs -------------------------------------------------------------------------------- /Chart/Shapes/LineShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Chart/Shapes/LineShape.cs -------------------------------------------------------------------------------- /Client/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Client/App.config -------------------------------------------------------------------------------- /Client/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Client/App.xaml -------------------------------------------------------------------------------- /Client/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Client/App.xaml.cs -------------------------------------------------------------------------------- /Client/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Client/AssemblyInfo.cs -------------------------------------------------------------------------------- /Client/Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Client/Client.csproj -------------------------------------------------------------------------------- /Client/Controls/ActiveOrdersControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Client/Controls/ActiveOrdersControl.xaml -------------------------------------------------------------------------------- /Client/Controls/ActiveOrdersControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Client/Controls/ActiveOrdersControl.xaml.cs -------------------------------------------------------------------------------- /Client/Controls/ActivePositionsControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Client/Controls/ActivePositionsControl.xaml -------------------------------------------------------------------------------- /Client/Controls/ActivePositionsControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Client/Controls/ActivePositionsControl.xaml.cs -------------------------------------------------------------------------------- /Client/Controls/MenuItemControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Client/Controls/MenuItemControl.xaml -------------------------------------------------------------------------------- /Client/Controls/MenuItemControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Client/Controls/MenuItemControl.xaml.cs -------------------------------------------------------------------------------- /Client/Controls/OrdersControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Client/Controls/OrdersControl.xaml -------------------------------------------------------------------------------- /Client/Controls/OrdersControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Client/Controls/OrdersControl.xaml.cs -------------------------------------------------------------------------------- /Client/Controls/PositionsControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Client/Controls/PositionsControl.xaml -------------------------------------------------------------------------------- /Client/Controls/PositionsControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Client/Controls/PositionsControl.xaml.cs -------------------------------------------------------------------------------- /Client/Controls/StatementExpanderControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Client/Controls/StatementExpanderControl.xaml -------------------------------------------------------------------------------- /Client/Controls/StatementExpanderControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Client/Controls/StatementExpanderControl.xaml.cs -------------------------------------------------------------------------------- /Client/Controls/StatementsControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Client/Controls/StatementsControl.xaml -------------------------------------------------------------------------------- /Client/Controls/StatementsControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Client/Controls/StatementsControl.xaml.cs -------------------------------------------------------------------------------- /Client/Controls/TimeSeriesControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Client/Controls/TimeSeriesControl.xaml -------------------------------------------------------------------------------- /Client/Controls/TimeSeriesControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Client/Controls/TimeSeriesControl.xaml.cs -------------------------------------------------------------------------------- /Client/Strategies/BaseStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Client/Strategies/BaseStrategy.cs -------------------------------------------------------------------------------- /Client/Strategies/ComboStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Client/Strategies/ComboStrategy.cs -------------------------------------------------------------------------------- /Client/Strategies/ImbalanceStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Client/Strategies/ImbalanceStrategy.cs -------------------------------------------------------------------------------- /Client/Strategies/ReverseStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Client/Strategies/ReverseStrategy.cs -------------------------------------------------------------------------------- /Client/Windows/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Client/Windows/MainWindow.xaml -------------------------------------------------------------------------------- /Client/Windows/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Client/Windows/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Client/Windows/PopupWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Client/Windows/PopupWindow.xaml -------------------------------------------------------------------------------- /Client/Windows/PopupWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Client/Windows/PopupWindow.xaml.cs -------------------------------------------------------------------------------- /Core/Collections/IndexCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Collections/IndexCollection.cs -------------------------------------------------------------------------------- /Core/Collections/NameCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Collections/NameCollection.cs -------------------------------------------------------------------------------- /Core/Collections/TimeCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Collections/TimeCollection.cs -------------------------------------------------------------------------------- /Core/Collections/TimeSpanCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Collections/TimeSpanCollection.cs -------------------------------------------------------------------------------- /Core/Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Core.csproj -------------------------------------------------------------------------------- /Core/Enums/ActionEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Enums/ActionEnum.cs -------------------------------------------------------------------------------- /Core/Enums/CurrencyEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Enums/CurrencyEnum.cs -------------------------------------------------------------------------------- /Core/Enums/EnvironmentEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Enums/EnvironmentEnum.cs -------------------------------------------------------------------------------- /Core/Enums/InstrumentTypeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Enums/InstrumentTypeEnum.cs -------------------------------------------------------------------------------- /Core/Enums/NameEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Enums/NameEnum.cs -------------------------------------------------------------------------------- /Core/Enums/OperationEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Enums/OperationEnum.cs -------------------------------------------------------------------------------- /Core/Enums/OptionSideEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Enums/OptionSideEnum.cs -------------------------------------------------------------------------------- /Core/Enums/OrderSideEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Enums/OrderSideEnum.cs -------------------------------------------------------------------------------- /Core/Enums/OrderStatusEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Enums/OrderStatusEnum.cs -------------------------------------------------------------------------------- /Core/Enums/OrderTimeSpanEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Enums/OrderTimeSpanEnum.cs -------------------------------------------------------------------------------- /Core/Enums/OrderTypeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Enums/OrderTypeEnum.cs -------------------------------------------------------------------------------- /Core/Enums/ShapeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Enums/ShapeEnum.cs -------------------------------------------------------------------------------- /Core/Enums/StatusEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Enums/StatusEnum.cs -------------------------------------------------------------------------------- /Core/Indicators/AverageTrueRangeIndicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Indicators/AverageTrueRangeIndicator.cs -------------------------------------------------------------------------------- /Core/Indicators/ImbalanceIndicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Indicators/ImbalanceIndicator.cs -------------------------------------------------------------------------------- /Core/Indicators/MovingAverageIndicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Indicators/MovingAverageIndicator.cs -------------------------------------------------------------------------------- /Core/Indicators/PerformanceIndicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Indicators/PerformanceIndicator.cs -------------------------------------------------------------------------------- /Core/Indicators/RelativeStrengthIndicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Indicators/RelativeStrengthIndicator.cs -------------------------------------------------------------------------------- /Core/Indicators/ScaleIndicator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Indicators/ScaleIndicator.cs -------------------------------------------------------------------------------- /Core/Managers/CalculationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Managers/CalculationManager.cs -------------------------------------------------------------------------------- /Core/Managers/ConversionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Managers/ConversionManager.cs -------------------------------------------------------------------------------- /Core/Managers/InstanceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Managers/InstanceManager.cs -------------------------------------------------------------------------------- /Core/Messages/BaseMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Messages/BaseMessage.cs -------------------------------------------------------------------------------- /Core/Messages/TransactionMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Messages/TransactionMessage.cs -------------------------------------------------------------------------------- /Core/Models/AccountModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Models/AccountModel.cs -------------------------------------------------------------------------------- /Core/Models/BaseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Models/BaseModel.cs -------------------------------------------------------------------------------- /Core/Models/Charts/ChartDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Models/Charts/ChartDataModel.cs -------------------------------------------------------------------------------- /Core/Models/Charts/ChartModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Models/Charts/ChartModel.cs -------------------------------------------------------------------------------- /Core/Models/ExpandoModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Models/ExpandoModel.cs -------------------------------------------------------------------------------- /Core/Models/GatewayModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Models/GatewayModel.cs -------------------------------------------------------------------------------- /Core/Models/IndicatorModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Models/IndicatorModel.cs -------------------------------------------------------------------------------- /Core/Models/Instruments/InstrumentFutureModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Models/Instruments/InstrumentFutureModel.cs -------------------------------------------------------------------------------- /Core/Models/Instruments/InstrumentModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Models/Instruments/InstrumentModel.cs -------------------------------------------------------------------------------- /Core/Models/Instruments/InstrumentOptionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Models/Instruments/InstrumentOptionModel.cs -------------------------------------------------------------------------------- /Core/Models/Points/PointBarModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Models/Points/PointBarModel.cs -------------------------------------------------------------------------------- /Core/Models/Points/PointModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Models/Points/PointModel.cs -------------------------------------------------------------------------------- /Core/Models/ProcessorModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Models/ProcessorModel.cs -------------------------------------------------------------------------------- /Core/Models/ResponseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Models/ResponseModel.cs -------------------------------------------------------------------------------- /Core/Models/StateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Models/StateModel.cs -------------------------------------------------------------------------------- /Core/Models/TimeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Models/TimeModel.cs -------------------------------------------------------------------------------- /Core/Models/Transactions/TransactionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Models/Transactions/TransactionModel.cs -------------------------------------------------------------------------------- /Core/Models/Transactions/TransactionOrderModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Models/Transactions/TransactionOrderModel.cs -------------------------------------------------------------------------------- /Core/Models/Transactions/TransactionPositionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Models/Transactions/TransactionPositionModel.cs -------------------------------------------------------------------------------- /Core/Services/CacheService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Services/CacheService.cs -------------------------------------------------------------------------------- /Core/Services/ClientService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Services/ClientService.cs -------------------------------------------------------------------------------- /Core/Services/LogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Services/LogService.cs -------------------------------------------------------------------------------- /Core/Services/ScheduleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Core/Services/ScheduleService.cs -------------------------------------------------------------------------------- /Data/Quotes/GOOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Data/Quotes/GOOG -------------------------------------------------------------------------------- /Data/Quotes/GOOGL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Data/Quotes/GOOGL -------------------------------------------------------------------------------- /Evaluation/Collections/TimeSpanCollectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Evaluation/Collections/TimeSpanCollectionTests.cs -------------------------------------------------------------------------------- /Evaluation/Evaluation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Evaluation/Evaluation.csproj -------------------------------------------------------------------------------- /Evaluation/Statistics/StatisticsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Evaluation/Statistics/StatisticsTests.cs -------------------------------------------------------------------------------- /Gateway/Alpaca/Gateway.Alpaca.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Gateway/Alpaca/Gateway.Alpaca.csproj -------------------------------------------------------------------------------- /Gateway/Alpaca/GatewayClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Gateway/Alpaca/GatewayClient.cs -------------------------------------------------------------------------------- /Gateway/Alpaca/MapInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Gateway/Alpaca/MapInput.cs -------------------------------------------------------------------------------- /Gateway/Alpaca/MapOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Gateway/Alpaca/MapOutput.cs -------------------------------------------------------------------------------- /Gateway/Gemini/Gateway.Gemini.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Gateway/Gemini/Gateway.Gemini.csproj -------------------------------------------------------------------------------- /Gateway/Gemini/GatewayClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Gateway/Gemini/GatewayClient.cs -------------------------------------------------------------------------------- /Gateway/Gemini/MapInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Gateway/Gemini/MapInput.cs -------------------------------------------------------------------------------- /Gateway/Gemini/MapOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Gateway/Gemini/MapOutput.cs -------------------------------------------------------------------------------- /Gateway/Oanda/Gateway.Oanda.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Gateway/Oanda/Gateway.Oanda.csproj -------------------------------------------------------------------------------- /Gateway/Oanda/GatewayClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Gateway/Oanda/GatewayClient.cs -------------------------------------------------------------------------------- /Gateway/Oanda/Maps/DealStatusMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Gateway/Oanda/Maps/DealStatusMap.cs -------------------------------------------------------------------------------- /Gateway/Oanda/Maps/OrderStatusMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Gateway/Oanda/Maps/OrderStatusMap.cs -------------------------------------------------------------------------------- /Gateway/Oanda/Maps/OrderTimeSpanMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Gateway/Oanda/Maps/OrderTimeSpanMap.cs -------------------------------------------------------------------------------- /Gateway/Oanda/Maps/OrderTypeMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Gateway/Oanda/Maps/OrderTypeMap.cs -------------------------------------------------------------------------------- /Gateway/Oanda/Models/InputAccountItemModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Gateway/Oanda/Models/InputAccountItemModel.cs -------------------------------------------------------------------------------- /Gateway/Oanda/Models/InputAccountModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Gateway/Oanda/Models/InputAccountModel.cs -------------------------------------------------------------------------------- /Gateway/Oanda/Models/InputDealListModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Gateway/Oanda/Models/InputDealListModel.cs -------------------------------------------------------------------------------- /Gateway/Oanda/Models/InputDealModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Gateway/Oanda/Models/InputDealModel.cs -------------------------------------------------------------------------------- /Gateway/Oanda/Models/InputOrderListModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Gateway/Oanda/Models/InputOrderListModel.cs -------------------------------------------------------------------------------- /Gateway/Oanda/Models/InputOrderModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Gateway/Oanda/Models/InputOrderModel.cs -------------------------------------------------------------------------------- /Gateway/Oanda/Models/InputPointModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Gateway/Oanda/Models/InputPointModel.cs -------------------------------------------------------------------------------- /Gateway/Oanda/Models/InputPriceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Gateway/Oanda/Models/InputPriceModel.cs -------------------------------------------------------------------------------- /Gateway/Simulation/Gateway.Simulation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Gateway/Simulation/Gateway.Simulation.csproj -------------------------------------------------------------------------------- /Gateway/Simulation/GatewayClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Gateway/Simulation/GatewayClient.cs -------------------------------------------------------------------------------- /Gateway/Simulation/GatewayClientGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Gateway/Simulation/GatewayClientGenerator.cs -------------------------------------------------------------------------------- /Gateway/Tradier/Gateway.Tradier.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Gateway/Tradier/Gateway.Tradier.csproj -------------------------------------------------------------------------------- /Gateway/Tradier/GatewayClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Gateway/Tradier/GatewayClient.cs -------------------------------------------------------------------------------- /Gateway/Tradier/Maps/DealStatusMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Gateway/Tradier/Maps/DealStatusMap.cs -------------------------------------------------------------------------------- /Gateway/Tradier/Models/InputOptionItemModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Gateway/Tradier/Models/InputOptionItemModel.cs -------------------------------------------------------------------------------- /Gateway/Tradier/Models/InputOptionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Gateway/Tradier/Models/InputOptionModel.cs -------------------------------------------------------------------------------- /Gateway/Tradier/Models/InputPointModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Gateway/Tradier/Models/InputPointModel.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/README.md -------------------------------------------------------------------------------- /Score/AHPR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Score/AHPR.cs -------------------------------------------------------------------------------- /Score/CAGR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Score/CAGR.cs -------------------------------------------------------------------------------- /Score/Change.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Score/Change.cs -------------------------------------------------------------------------------- /Score/EdgeRatio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Score/EdgeRatio.cs -------------------------------------------------------------------------------- /Score/FrameMetrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Score/FrameMetrics.cs -------------------------------------------------------------------------------- /Score/GHPR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Score/GHPR.cs -------------------------------------------------------------------------------- /Score/KestnerRatio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Score/KestnerRatio.cs -------------------------------------------------------------------------------- /Score/MAE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Score/MAE.cs -------------------------------------------------------------------------------- /Score/MAR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Score/MAR.cs -------------------------------------------------------------------------------- /Score/MFE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Score/MFE.cs -------------------------------------------------------------------------------- /Score/MartinRatio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Score/MartinRatio.cs -------------------------------------------------------------------------------- /Score/Metrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Score/Metrics.cs -------------------------------------------------------------------------------- /Score/RegressionCorrelation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Score/RegressionCorrelation.cs -------------------------------------------------------------------------------- /Score/Score.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Score/Score.csproj -------------------------------------------------------------------------------- /Score/SeriesMetrics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Score/SeriesMetrics.cs -------------------------------------------------------------------------------- /Score/SharpeRatio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Score/SharpeRatio.cs -------------------------------------------------------------------------------- /Score/SortinoRatio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Score/SortinoRatio.cs -------------------------------------------------------------------------------- /Score/StandardScore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Score/StandardScore.cs -------------------------------------------------------------------------------- /Score/SterlingRatio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Score/SterlingRatio.cs -------------------------------------------------------------------------------- /Screens/Panels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Screens/Panels.png -------------------------------------------------------------------------------- /Solution.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemiusgreat/Terminal-Desktop/HEAD/Solution.sln --------------------------------------------------------------------------------