mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-06 04:57:44 +00:00
refresh with new QT DLL
This commit is contained in:
Binary file not shown.
@@ -377,21 +377,6 @@
|
||||
Mediates a history meta data with available data types and intervals on vendor side
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:TradingPlatform.BusinessLayer.Integration.HistoryMetadata.AllowedHistoryTypes">
|
||||
<summary>
|
||||
History data types
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:TradingPlatform.BusinessLayer.Integration.HistoryMetadata.AllowedBasePeriods">
|
||||
<summary>
|
||||
History intervals
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:TradingPlatform.BusinessLayer.Integration.HistoryMetadata.AllowedPeriods">
|
||||
<summary>
|
||||
History intervals
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:TradingPlatform.BusinessLayer.Integration.MessageAsset.Id">
|
||||
<summary>
|
||||
Asset id bearer
|
||||
@@ -1948,7 +1933,7 @@
|
||||
<param name="toTime"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:TradingPlatform.BusinessLayer.Symbol.GetHistory(TradingPlatform.BusinessLayer.HistoryAggregation,TradingPlatform.BusinessLayer.HistoryType,System.DateTime,System.DateTime)">
|
||||
<member name="M:TradingPlatform.BusinessLayer.Symbol.GetHistory(TradingPlatform.BusinessLayer.HistoryAggregation,System.DateTime,System.DateTime)">
|
||||
<summary>
|
||||
Gets historical data according to aggregation and other parameters
|
||||
</summary>
|
||||
@@ -2965,21 +2950,11 @@
|
||||
Gets HistoricalData symbol
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:TradingPlatform.BusinessLayer.HistoricalData.Period">
|
||||
<summary>
|
||||
Gets HistoricalData Period
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:TradingPlatform.BusinessLayer.HistoricalData.Aggregation">
|
||||
<summary>
|
||||
Gets HistoricalData aggregation
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:TradingPlatform.BusinessLayer.HistoricalData.HistoryType">
|
||||
<summary>
|
||||
Gets HistoricalData history type
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:TradingPlatform.BusinessLayer.HistoricalData.FromTime">
|
||||
<summary>
|
||||
Gets HistoricalData left time boundary
|
||||
|
||||
@@ -43,15 +43,28 @@ jobs:
|
||||
|
||||
- name: SonarCloud Scanner Start
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|
||||
run: |
|
||||
if [[ ${{ github.event_name }} == 'pull_request' ]]; then
|
||||
PR_PARAMS="/d:sonar.pullrequest.key=${{ github.event.pull_request.number }} \
|
||||
/d:sonar.pullrequest.branch=${{ github.head_ref }} \
|
||||
/d:sonar.pullrequest.base=${{ github.base_ref }}"
|
||||
elif [[ ${{ github.event_name }} == 'push' ]]; then
|
||||
BRANCH_PARAMS="/d:sonar.branch.name=${{ github.ref_name }}"
|
||||
else
|
||||
BRANCH_PARAMS="/d:sonar.branch.name=${{ github.ref_name }}"
|
||||
fi
|
||||
|
||||
dotnet sonarscanner begin \
|
||||
/k:"mihakralj_QuanTAlib" \
|
||||
/o:"mihakralj" \
|
||||
/d:sonar.token="${{ secrets.SONAR_TOKEN }}" \
|
||||
/d:sonar.host.url="https://sonarcloud.io" \
|
||||
/d:sonar.cs.dotcover.reportsPaths=dotcover* \
|
||||
/d:sonar.scanner.scanAll=false
|
||||
/d:sonar.scanner.scanAll=false \
|
||||
/d:sonar.scm.provider=git \
|
||||
$PR_PARAMS $BRANCH_PARAMS
|
||||
|
||||
- name: Build
|
||||
run: |
|
||||
@@ -216,7 +229,10 @@ jobs:
|
||||
|
||||
build_publish:
|
||||
needs: [SonarCloud, Code_Coverage, CodeQL, Codacy_Scan, SecurityCodeScan]
|
||||
if: success()
|
||||
if: |
|
||||
success() &&
|
||||
(github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/dev')) ||
|
||||
github.event_name == 'workflow_dispatch'
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
|
||||
Reference in New Issue
Block a user