Public/MT4/Update-MT4SymbolConfig.ps1
|
function Update-MT4SymbolConfig { <# .SYNOPSIS Patch symbol config #> [CmdletBinding(SupportsShouldProcess)] param( [Parameter()][string] $TradePlatform, [Parameter(Mandatory)][string] $Symbol, [Parameter()][object] $Body, [Parameter()][Nullable[guid]] $CacheId, [Parameter()][int] $CacheTimeout, [Parameter()][string] $IdempotencyKey ) if (-not $PSCmdlet.ShouldProcess('MT4/SymbolConfig')) { return } $reqArgs = @{ Method = 'Patch'; Path = "/api/v2/MT4/{tradePlatform}/SymbolConfig/$([uri]::EscapeDataString([string]$Symbol))"; TradePlatform = $TradePlatform; Body = $Body } if ($PSBoundParameters.ContainsKey('CacheId')) { $reqArgs.CacheId = $CacheId } if ($PSBoundParameters.ContainsKey('CacheTimeout')) { $reqArgs.CacheTimeout = $CacheTimeout } if ($PSBoundParameters.ContainsKey('IdempotencyKey')) { $reqArgs.IdempotencyKey = $IdempotencyKey } Invoke-MyWebApiRequest @reqArgs } |