You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We document backtest self-categorization with the new naming and tagging functionalities implemented in QuantConnect/Lean#7683.
Naming:
We provide the QCAlgorithm.Name property which can be set either directly by its setter or with the SetName method. Name is limited to 200 characters, so if the value has more characters, it gets truncated.
Tagging:
Algorithms can now have tags which will be available in the QCAlgorithm.Tags property.
The Tags collection can be directly set with the property setter or using the SetTags method, which will override any exisiting tags.
A single tag can be added using the AddTag method.
The collection can hold up to 20 tags.
As for the name, tags can only have at most 200 characters, or else they will be truncated. Even with the property setter or the SetTags method, they will be checked and truncated if necessary.
Actual Behavior
New feature, not documented.
Checklist
I have completely filled out this template
I have confirmed that this issue exists on the current master branch
I have confirmed that this is not a duplicate issue by searching issues
The text was updated successfully, but these errors were encountered:
Expected Behavior
We document backtest self-categorization with the new naming and tagging functionalities implemented in QuantConnect/Lean#7683.
Naming:
QCAlgorithm.Name
property which can be set either directly by its setter or with theSetName
method. Name is limited to 200 characters, so if the value has more characters, it gets truncated.Tagging:
QCAlgorithm.Tags
property.Tags
collection can be directly set with the property setter or using theSetTags
method, which will override any exisiting tags.AddTag
method.SetTags
method, they will be checked and truncated if necessary.Actual Behavior
New feature, not documented.
Checklist
master
branchThe text was updated successfully, but these errors were encountered: