Compare commits

...

8 Commits

Author SHA1 Message Date
Vyacheslav Demidyuk c9d1f504c5 Merge pull request #274 from vdemydiuk/dependabot/nuget/MtApi5/Newtonsoft.Json-13.0.2
Bump Newtonsoft.Json from 12.0.2 to 13.0.2 in /MtApi5
2023-02-21 09:54:28 +02:00
Vyacheslav Demidyuk aa42a121b0 Merge pull request #269 from vdemydiuk/dependabot/nuget/MtApi/Newtonsoft.Json-13.0.1
Bump Newtonsoft.Json from 8.0.3 to 13.0.1 in /MtApi
2023-02-21 09:54:14 +02:00
dependabot[bot] b5aef472c5 Bump Newtonsoft.Json from 12.0.2 to 13.0.2 in /MtApi5
Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 12.0.2 to 13.0.2.
- [Release notes](https://github.com/JamesNK/Newtonsoft.Json/releases)
- [Commits](https://github.com/JamesNK/Newtonsoft.Json/compare/12.0.2...13.0.2)

---
updated-dependencies:
- dependency-name: Newtonsoft.Json
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-12-08 05:23:05 +00:00
dependabot[bot] e683b16f32 Bump Newtonsoft.Json from 8.0.3 to 13.0.1 in /MtApi
Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 8.0.3 to 13.0.1.
- [Release notes](https://github.com/JamesNK/Newtonsoft.Json/releases)
- [Commits](https://github.com/JamesNK/Newtonsoft.Json/compare/8.0.3...13.0.1)

---
updated-dependencies:
- dependency-name: Newtonsoft.Json
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-06-22 18:34:03 +00:00
Vyacheslav Demidyuk 2c24ec4371 Merge pull request #248 from joecklau/patch-1
Fix: error-checking condition was inverted.
2021-02-10 18:11:06 +02:00
Vyacheslav Demidyuk b06e907489 Merge pull request #247 from vdemydiuk/dependabot/nuget/MTApiService/log4net-2.0.10
Bump log4net from 2.0.5 to 2.0.10 in /MTApiService
2021-02-10 18:09:25 +02:00
Joe 879a907c5c Fix: error-checking condition was inverted.
Similar to previously fix on Ln 5359 in void Execute_SymbolInfoString() by hectorli #173 update IF checking (commit 26de553 on 27 Aug 2019), same error-checking condition was also inverted in Ln 2948 in void Execute_iBandsOnArray().
2021-01-30 17:29:58 +08:00
dependabot[bot] 70fb0a32b8 Bump log4net from 2.0.5 to 2.0.10 in /MTApiService
Bumps [log4net](https://github.com/apache/logging-log4net) from 2.0.5 to 2.0.10.
- [Release notes](https://github.com/apache/logging-log4net/releases)
- [Changelog](https://github.com/apache/logging-log4net/blob/master/ReleaseInstructions.txt)
- [Commits](https://github.com/apache/logging-log4net/commits/rel/2.0.10)

Signed-off-by: dependabot[bot] <support@github.com>
2021-01-29 20:11:26 +00:00
4 changed files with 5 additions and 5 deletions
Executable → Regular
+1 -1
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="ILMerge" version="2.13.0307" targetFramework="net40" />
<package id="log4net" version="2.0.5" targetFramework="net40" />
<package id="log4net" version="2.0.10" targetFramework="net40" />
<package id="MSBuild.ILMerge.Task" version="1.0.5" targetFramework="net40" />
</packages>
+1 -1
View File
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Newtonsoft.Json" version="8.0.3" targetFramework="net45" />
<package id="Newtonsoft.Json" version="13.0.1" targetFramework="net45" />
</packages>
Executable → Regular
+1 -1
View File
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Newtonsoft.Json" version="12.0.2" targetFramework="net40" />
<package id="Newtonsoft.Json" version="13.0.2" targetFramework="net40" />
</packages>
+2 -2
View File
@@ -2945,7 +2945,7 @@ void Execute_iBandsOnArray()
}
param_index++;
if (getIntValue(ExpertHandle, param_index, total, _error))
if (!getIntValue(ExpertHandle, param_index, total, _error))
{
PrintParamError("iBandsOnArray", "total", _error);
sendErrorResponse(ExpertHandle, -1, _error, _response_error);
@@ -8313,4 +8313,4 @@ void ExecuteRequest_SymbolInfoTick(JSONObject *jo, string &response)
joTick.put("Volume", new JSONNumber(tick.volume));
response = CreateSuccessResponse("Tick", joTick);
}
}