Session attribute of CandleSymbol defines trading used to build the candles.
More...
#include <CandleSession.hpp>
|
| const SessionFilter & | getSessionFilter () const &noexcept |
| | Returns a session filter that corresponds to this session attribute.
|
| |
| std::string | changeAttributeForSymbol (const StringLike &symbol) const override |
| | Returns candle event symbol string with this session attribute set.
|
| |
| const std::string & | toString () const &noexcept |
| | Returns string representation of this candle session attribute.
|
| |
Session attribute of CandleSymbol defines trading used to build the candles.
Implementation details
This attribute is encoded in a symbol string with MarketEventSymbols.getAttributeStringByKey, changeAttributeStringByKey, and removeAttributeStringByKey methods.
CandleSession::ANY session is a default. The key to use with these methods is available via CandleSession::ATTRIBUTE_KEY constant. The value that this key shall be set to is equal to the corresponding CandleSession::toString()
◆ changeAttributeForSymbol()
| std::string CandleSession::changeAttributeForSymbol |
( |
const StringLike & | symbol | ) |
const |
|
overridevirtual |
Returns candle event symbol string with this session attribute set.
- Parameters
-
| symbol | original candle event symbol. |
- Returns
- candle event symbol string with this session attribute set.
Implements CandleSymbolAttribute.
References DEFAULT, and toString().
◆ getAttributeForSymbol()
Returns candle session attribute of the given candle symbol string.
The result is CandleSession::DEFAULT if the symbol does not have a candle session attribute.
- Parameters
-
| symbol | The candle symbol string. |
- Returns
- The candle session attribute of the given candle symbol string.
References DEFAULT.
◆ getSessionFilter()
| const SessionFilter & CandleSession::getSessionFilter |
( |
| ) |
const & |
|
noexcept |
Returns a session filter that corresponds to this session attribute.
- Returns
- The session filter that corresponds to this session attribute.
◆ normalizeAttributeForSymbol()
| std::string CandleSession::normalizeAttributeForSymbol |
( |
const StringLike & | symbol | ) |
|
|
staticnoexcept |
Returns candle symbol string with the normalized representation of the candle session attribute.
- Parameters
-
| symbol | candle symbol string. |
- Returns
- The candle symbol string with the normalized representation of the candle session attribute.
References DEFAULT.
◆ parse()
Parses string representation of the candle session attribute into an object.
Any string returned by CandleSession::toString() can be parsed, and a case is ignored for parsing.
- Parameters
-
| s | The string representation of the candle session attribute. |
- Returns
- The candle session attribute (reference).
- Exceptions
-
◆ toString()
| const std::string & CandleSession::toString |
( |
| ) |
const & |
|
noexcept |
Returns string representation of this candle session attribute.
The string representation of the candle session attribute is a lower case string that corresponds to its name. For example, CandleSession::ANY is represented as "any".
- Returns
- string representation of this candle session attribute.
Referenced by changeAttributeForSymbol().
◆ ATTRIBUTE_KEY
| const std::string CandleSession::ATTRIBUTE_KEY = "tho" |
|
static |
The attribute key that is used to store the value of CandleSession in a symbol string using methods of MarketEventSymbols class.
The value of this constant is "tho", which is an abbreviation for "trading hours only". The value that this key shall be set to is equal to the corresponding CandleSession::toString()