ποΈChanges
2025-12-14
Project API
new endpoints:
GET /rest/api/v1/projects/{projectId}/apiKeys/availableEndpoints Returns all REST endpoints that can be assigned to API keys.
GET /rest/api/v1/projects/{projectId}/apiKeys/availableFields Returns all available fields of AccountInformationDTO that can be restricted via API keys.
GET /rest/api/v1/projects/{projectId}/apiKeys/availableFrontendFeatures Returns all frontend features that can be enabled or disabled for API keys.
GET /rest/api/v1/projects/{projectId}/invoices/{invoiceNumber}/details Returns detailed invoice calculation information.
DTO changes:
PerformanceMetricsDTO
member dailyBalanceTransactions added Map of YYYY-MM-DD β net balance transactions (deposits / withdrawals).
member tradesPerMonth removed
TelegramNotificationDTO
member useAlias added If enabled, aliases are used instead of UUIDs for identification.
New DTOs
RestEndpointMetadataDTO
FieldMetadataDTO
FrontendFeatureDTO
2025-12-07
New DTOs
ScoreBreakdownDTO
New DTO that provides a detailed breakdown of the composite signal quality score into individual components.
FeatureOrderTypeFilterDTO
New DTO to control which order types are copied:
allowedOrderTypes: array of enum values [Buy, Sell, BuyLimit, SellLimit, BuyStop, SellStop]. If empty or null, all order types are copied.
DTO changes
PerformanceMetricsDTO
New field score (number, read-only): composite signal quality score (0β100) based on multiple performance metrics.
New field scoreBreakdown (ScoreBreakdownDTO): detailed breakdown of how the score is computed.
FeatureDailyProfitTargetDTO / FeatureWeeklyProfitTargetDTO / FeatureMonthlyProfitTargetDTO
New field pauseInsteadOfClose (boolean, default: false): If true, when the target is reached the copier is paused and no new positions are opened, but existing positions remain open. If false, the existing behavior remains: all positions are closed and new ones are blocked until the next period.
FeatureMultiplierDTO (copier feature)
New field fixMasterBalanceAndEquity (int, default: 0): Allows you to fix the master balance/equity to a specified value for lot size calculation; 0 = deactivated.
New field fixSlaveBalanceAndEquity (int, default: 0): Allows you to fix the slave balance/equity for lot size calculation; 0 = deactivated.
FeatureSignalProviderDTO
New field detailedDescription (string, up to 20 000 chars): Long-form, in-depth explanation of the strategy (entry/exit logic, risk management, timeframes, conditions, etc.).
Short description remains but is clearly positioned as a brief summary.
Feature sets
The new FeatureOrderTypeFilterDTO has been added to the list of available copier features.
2025-11-23
New endpoints:
Account API
GET /rest/api/v1/accounts/{accountId}/slaves Returns all slave accounts currently copying from this master account.
Signal API
GET /rest/api/v1/signals/{signalProviderId}/accounts/{accountId}/auditLogs Retrieve audit logs for API modifications related to a signal providerβs linked account.
DTO changes:
AuditLogDTO
New member: accountAlias (string, read-only) Human-friendly account name to make logs easier to read.
New member: projectName (string, read-only) Project name for easier identification in audit logs.
PerformanceMetricsDTO
New member: score (number, read-only) Composite performance / quality score (0β100) based on multiple metrics.
New member: tradesPerDay (object, read-only) Map of YYYY-MM-DD β trade count for that day.
RiskLimitDTO
New member: fallbackAbsoluteRiskLimit (number) Fallback absolute risk limit in account currency. When active limit is hit and fallback is reached, all positions will be closed.
New member: fallbackRelativeRiskLimit (number) Fallback relative risk limit in account currency. When active limit is hit and fallback is reached, all positions will be closed.
New member: fallbackRiskLimit (number) Fallback percentage risk limit. When active limit is hit and fallback is reached, all positions will be closed.
2025-11-16
New features:
Account API
member 'tradingDisabled' added to AccountDTO
member 'aggregateRiskPerSymbol' added to FeatureRiskPerTradeDTO
member 'activationThresholdPercentage' added to FeatureTrailingStopDTO
Project API
member owner added to ProjectDTO
new endpoints:
GET /rest/api/v1/projects/{projectId}/auditLogs
GET /rest/api/v1/accounts/{accountId}/auditLogs
Signal API
member 'accessAllowed' added to FeatureSignalProviderDTO
member 'contact' (type ContactDTO) added to FeatureSignalProviderDTO
member 'makeVisibleInMarketplace' added to FeatureSignalProviderDTO
New DTOs
AuditLogDTO
ContactDTO
CustomerDTO
PayoutDTO
WisePayoutDetailsDTO
2025-10-19
Account API
member 'customComment' added to CopierDTO
member 'customMagicNumber' added to CopierDTO
2025-09-28
New DTOs
MarketplaceDTO
PerformanceMetricsDTO
Account API
member 'hasMonitorOnlyCopiers' added to AccountDTO
member 'nativeMode' added to AccountDTO
member 'hasDisabledCopiers' added to AccountDTO
member 'compatibilityMode' removed from AccountDTO
member 'isNative' added to AccountInformationDTO
member 'avgDrawdown' added to AccountInformationDTO
member 'maxDrawdown' added to AccountInformationDTO
member 'compatibilityMode' removed from AccountInformationDTO
member 'monitorOnly' added to CopierDTO
Signal API
member 'monitorOnly' added to FeatureSignalFollowerDTO
member 'profileLink' added to FeatureSignalProviderDTO
New endpoints
GET '/rest/api/v1/accounts/{accountId}/performanceMetrics'
GET '/rest/api/v1/marketplace'
GET '/rest/api/v1/signals/{signalProviderId}/accounts/{accountId}/performanceMetrics'
2025-09-14
New DTOs
FeatureLiveDelayDTO
2025-08-25
Account API
member 'reverse' added to FeatureBreakEvenDTO
2025-07-27
New DTOs
FeatureRiskPerTradeDTO
2025-07-20
New DTOs
FeatureSkipPositionDTO
Account API
member 'closeUnmanagedPositions' added to AccountDTO
member 'dedicatedIp' added to AccountDTO
member 'myHomeIp' added to AccountDTO
member 'ignoreCurrency' added to CopierDTO
member 'copyMagicNumber' added to CopierDTO
member 'copyOriginalComment' added to CopierDTO
2025-07-06
Account API
Logs :query parameter logTypeId added
Project API
Logs: query parameter logTypeId added
2025-06-22
New DTOs
FeatureMinimumHoldingTimeDTO
Account API
member 'fixSlaveBalanceAndEquity' added to CopierDTO
new endpoints resyncCopier and resyncStrategyCopier
Type API
RiskTypeDTO
Equity-equity daily
Equity-equity weekly
Equity-equity monthly
Smart reference daily
Smart reference weekly
Smart reference monthly
2025-06-15
Account API
member 'credit' added to AccountInformationDTO
2025-06-08
New DTOs
FeatureWhiteLabelDTO
"accountDuplicationInProjectDetected" added to AccountInformationDTO
"failIfAccountExistsInProject" added to AccountDTO
2025-05-18
Account API
"lockTpSl" added to FeatureTpSlManagementDTO
2025-05-04
Account API
"dailyRelativeProfitTarget" added to FeatureDailyProfitTargetDTO
"weeklyRelativeProfitTarget" added to FeatureWeeklyProfitTargetDTO
"monthlyRelativeProfitTarget" added to FeatureMonthlyProfitTargetDTO
"autoResetIfBalanceIsBelow" added to FeatureDailyProfitTargetDTO
"autoResetIfBalanceIsBelow" added to FeatureWeeklyProfitTargetDTO
"autoResetIfBalanceIsBelow" added to FeatureMonthlyProfitTargetDTO
"relativeRiskLimit" added to RiskLimitDTO
2025-04-20
Account API
"closeAfterInSeconds" added to FeatureKeepAliveTradeDTO
"dailyAbsoluteProfitTarget" added to FeatureDailyProfitTargetDTO
"weeklyAbsoluteProfitTarget" added to FeatureWeeklyProfitTargetDTO
"monthlyAbsoluteProfitTarget" added to FeatureMonthlyProfitTargetDTO
"absoluteRiskLimit" added to RiskLimitDTO
2025-03-23
Type API
"Bybit" added to AccountTypeDTO
2025-03-09
New DTOs
FeatureMaintenanceWindowDTO
2025-02-22
New DTOs
FeatureDelayedExecutionDTO
Account API
member 'usedMargin' added to AccountInformationDTO
member 'freeMargin' added to AccountInformationDTO
2025-02-15
New DTOs
FeatureSocketDTO
FeatureApprovalDTO
Account API
member 'pendingApprovals' added to AccountInformationDTO
2025-02-09
New DTOs
FeatureHftModeDTO
Type API
"Binance" added to AccountTypeDTO
2025-02-02
New DTOs
FeatureTradingWindowsDTO
FeatureTrailingStopDTO
2025-01-26
New DTOs
FeatureBreakEvenDTO
Type API
"MatchTrader" added to AccountTypeDTO
2025-01-18
New features:
New DTOs
FeatureMaxLotSizeDTO
FeatureMaximumLotDTO
FeatureMultiplierDTO
FeatureMaxOpenPositionsDTO
2024-12-08
New features:
Signal API
Bugfixes: none
Breaking changes: none
2024-11-24
New features:
Account API
member 'profitThisMonth' added to AccountInformationDTO
member 'positionMismatch' added to AccountInformationDTO
New DTOs
FeatureExitSignalOverrideDTO
FeatureTpSlManagementDTO
FeatureMyHomeIpDTO
FeatureFallbackSettingDTO
Bugfixes: none
Breaking changes: none
2024-11-10
New features:
Account API
member 'forcePositionLotSize' added to CopierDTO
New DTOs
FeatureSignalProviderDTO
FeatureSignalFollowerDTO
Bugfixes: none
Breaking changes: none
2024-11-02
New features:
Account API
member 'copyOpenPositions' added to CopierDTO
Bugfixes: none
Breaking changes: none
2024-10-27
New DTOs
FeatureDailyProfitTargetDTO
FeatureWeeklyProfitTargetDTO
FeatureMonthlyProfitTargetDTO
Bugfixes: none
Breaking changes: none
2024-10-20
New features:
Account API
member 'hideComment' added to CopierDTO
Bugfixes: none
Breaking changes: none
2024-10-13
New features:
Account API
"openPositions" flag added to AccountInformationDTO
Bugfixes: none
Breaking changes: none
2024-09-28
New features:
New DTOs
FeatureProgressiveTradeSizingDTO
Bugfixes: none
Breaking changes: none
2024-09-07
New features:
New DTOs
FeatureDedicatedIpDTO
FeatureDedicatedIpPoolDTO
ProxyDTO
ProxyRegionDTO
Type API
"proxyRegions" endpoint added
"Berlin" and "Singapore" added as RegionDTO
Account API
Member 'proxy' added to AccountDTO
Bugfixes: none
Breaking changes: none
2024-08-04
New features:
Type API
"TradeLocker" added to AccountTypeDTO
Account API
Member 'reverse' added to CopierDTO
Bugfixes: none
Breaking changes: none
2024-06-23
New features:
New DTOs
FeatureKeepAliveTradeDTO
FeaturePermittedSymbolsDTO
Bugfixes: none
Breaking changes: none
2024-06-09
New features:
Account API
member 'openRetry' added to CopierDTO
Bugfixes: none
Breaking changes: none
2024-05-26
New features:
Trading API added
Account API
Get, add, update and delete a feature
New DTOs
FeatureCopierFilterDTO
Bugfixes: none
Breaking changes: none
2024-05-05
New features:
Type API
"CTrader" added as AccountTypeDTO
"Fixed lot size" and "No scaling" added to ScaleTypeDTO
Bugfixes: none
Breaking changes: none
2024-04-17
New features:
Project API
Get, add, update and delete a feature
New DTOs
FeatureDTO
FeatureSettingDTO
FeatureTelegramNotificationDTO
TelegramNotificationDTO
Bugfixes: none
Breaking changes: none
2024-04-14
New features:
Account API
Get account copier current symbol mappings added
Bugfixes: none
Breaking changes: none
2024-03-02
New features:
AccountTypeDTO
DXtrade (id 3) added
Bugfixes: none
Breaking changes: none
2024-01-16
New features:
Possibility to delete projects
DELETE
Bugfixes: none
Breaking changes: none
2023-12-05
π The inaugural version of MetaCopier.io has been officially launched
Last updated
Was this helpful?