ATAS
|
Represents an Indicator Candle. More...
Public Member Functions | |||
IndicatorCandle (ISupportedPriceInfo dataprovider, IIntCandle parentCandle, decimal tickSize) | |||
Constructor for the IndicatorCandle class. | |||
IEnumerable< PriceVolumeInfo > | GetAllPriceLevels () | ||
Gets all available price levels with associated volume information.
| |||
IEnumerable< PriceVolumeInfo > | GetAllPriceLevels (PriceVolumeInfo cacheItem) | ||
Gets all available price levels with associated volume information and caches the data of the last element in the specified cacheItem.
| |||
PriceVolumeInfo | GetPriceVolumeInfo (decimal price) | ||
Gets the PriceVolumeInfo object associated with the specified price.
| |||
IEnumerable< PriceVolumeInfo > | GetAllPriceLevels () | ||
Gets all available price levels with associated volume information. | |||
IEnumerable< PriceVolumeInfo > | GetAllPriceLevels (PriceVolumeInfo cacheItem) | ||
Gets all available price levels with associated volume information and caches the data of the last element in the specified cacheItem. | |||
PriceVolumeInfo | GetPriceVolumeInfo (decimal price) | ||
Gets the PriceVolumeInfo object associated with the specified price. | |||
Properties | |
decimal | Open [get] |
The opening price of the candle. | |
decimal | High [get] |
The highest price in the candle. | |
decimal | Low [get] |
The lowest price in the candle. | |
decimal | Close [get] |
The closing price of the candle. | |
decimal | Volume [get] |
The total number of traded lots in the candle. | |
decimal | Bid [get] |
The number of traded lots at the best bid price in the candle. | |
decimal | Ask [get] |
The number of traded lots at the best offer price in the candle. | |
decimal | Betweens [get] |
The number of traded lots at the price between bids and asks in the candle. | |
decimal | Ticks [get] |
The number of price changes in the candle. | |
decimal | Delta [get] |
The difference between the number of buys and the number of sales in the candle. | |
DateTime | Time [get] |
Candle opening time. | |
DateTime | LastTime [get] |
The time when the last trade in the candle occurred. | |
decimal | MaxDelta [get] |
The maximum value of the delta that was during the period of the candle. | |
decimal | MinDelta [get] |
The minimum value of the delta that was during the period of the candle. | |
decimal | MaxOI [get] |
The maximum value of open positions that was during the period of the candle. | |
decimal | MinOI [get] |
The minimum value of open positions that was during the period of the candle. | |
decimal | OI [get] |
The number of open positions in the candle. | |
PriceVolumeInfo | MaxVolumePriceInfo [get] |
Gets the PriceVolumeInfo object with the maximum volume. | |
PriceVolumeInfo | MaxTickPriceInfo [get] |
Gets the PriceVolumeInfo object with the maximum tick count. | |
PriceVolumeInfo | MaxAskPriceInfo [get] |
Gets the PriceVolumeInfo object with the maximum ask price. | |
PriceVolumeInfo | MaxBidPriceInfo [get] |
Gets the PriceVolumeInfo object with the maximum bid price. | |
PriceVolumeInfo | MaxTimePriceInfo [get] |
Gets the PriceVolumeInfo object with the maximum time. | |
PriceVolumeInfo | MaxPositiveDeltaPriceInfo [get] |
Gets the PriceVolumeInfo object with the maximum positive delta. | |
PriceVolumeInfo | MaxNegativeDeltaPriceInfo [get] |
Gets the PriceVolumeInfo object with the maximum negative delta. | |
ValueArea | ValueArea [get] |
Gets the ValueArea object which represents value are of candle. | |
Properties inherited from ATAS.Indicators.ISupportedPriceInfo | |
PriceVolumeInfo | MaxVolumePriceInfo [get] |
Gets the PriceVolumeInfo object with the maximum volume. | |
PriceVolumeInfo | MaxTickPriceInfo [get] |
Gets the PriceVolumeInfo object with the maximum tick count. | |
PriceVolumeInfo | MaxAskPriceInfo [get] |
Gets the PriceVolumeInfo object with the maximum ask price. | |
PriceVolumeInfo | MaxBidPriceInfo [get] |
Gets the PriceVolumeInfo object with the maximum bid price. | |
PriceVolumeInfo | MaxTimePriceInfo [get] |
Gets the PriceVolumeInfo object with the maximum time. | |
PriceVolumeInfo | MaxPositiveDeltaPriceInfo [get] |
Gets the PriceVolumeInfo object with the maximum positive delta. | |
PriceVolumeInfo | MaxNegativeDeltaPriceInfo [get] |
Gets the PriceVolumeInfo object with the maximum negative delta. | |
ValueArea | ValueArea [get] |
Gets the ValueArea object which represents value are of candle. | |
Represents an Indicator Candle.
ATAS.Indicators.IndicatorCandle.IndicatorCandle | ( | ISupportedPriceInfo | dataprovider, |
IIntCandle | parentCandle, | ||
decimal | tickSize | ||
) |
Constructor for the IndicatorCandle class.
dataprovider | An object that provides price information. |
parentCandle | An object that provides information about candle data. |
tickSize | Minimum minimum price step. |
IEnumerable< PriceVolumeInfo > ATAS.Indicators.IndicatorCandle.GetAllPriceLevels | ( | ) |
Gets all available price levels with associated volume information.
Implements ATAS.Indicators.ISupportedPriceInfo.
IEnumerable< PriceVolumeInfo > ATAS.Indicators.IndicatorCandle.GetAllPriceLevels | ( | PriceVolumeInfo | cacheItem | ) |
Gets all available price levels with associated volume information and caches the data of the last element in the specified cacheItem.
cacheItem | A PriceVolumeInfo object to caching. |
Implements ATAS.Indicators.ISupportedPriceInfo.
PriceVolumeInfo ATAS.Indicators.IndicatorCandle.GetPriceVolumeInfo | ( | decimal | price | ) |
Gets the PriceVolumeInfo object associated with the specified price.
price | The price for which the PriceVolumeInfo object is to be retrieved. |
Implements ATAS.Indicators.ISupportedPriceInfo.
|
get |
The number of traded lots at the best offer price in the candle.
|
get |
The number of traded lots at the price between bids and asks in the candle.
|
get |
The number of traded lots at the best bid price in the candle.
|
get |
The closing price of the candle.
|
get |
The difference between the number of buys and the number of sales in the candle.
|
get |
The highest price in the candle.
|
get |
The time when the last trade in the candle occurred.
|
get |
The lowest price in the candle.
|
get |
Gets the PriceVolumeInfo object with the maximum ask price.
Implements ATAS.Indicators.ISupportedPriceInfo.
|
get |
Gets the PriceVolumeInfo object with the maximum bid price.
Implements ATAS.Indicators.ISupportedPriceInfo.
|
get |
The maximum value of the delta that was during the period of the candle.
|
get |
Gets the PriceVolumeInfo object with the maximum negative delta.
Implements ATAS.Indicators.ISupportedPriceInfo.
|
get |
The maximum value of open positions that was during the period of the candle.
|
get |
Gets the PriceVolumeInfo object with the maximum positive delta.
Implements ATAS.Indicators.ISupportedPriceInfo.
|
get |
Gets the PriceVolumeInfo object with the maximum tick count.
Implements ATAS.Indicators.ISupportedPriceInfo.
|
get |
Gets the PriceVolumeInfo object with the maximum time.
Implements ATAS.Indicators.ISupportedPriceInfo.
|
get |
Gets the PriceVolumeInfo object with the maximum volume.
Implements ATAS.Indicators.ISupportedPriceInfo.
|
get |
The minimum value of the delta that was during the period of the candle.
|
get |
The minimum value of open positions that was during the period of the candle.
|
get |
The number of open positions in the candle.
|
get |
The opening price of the candle.
|
get |
The number of price changes in the candle.
|
get |
Candle opening time.
|
get |
Gets the ValueArea object which represents value are of candle.
Implements ATAS.Indicators.ISupportedPriceInfo.
|
get |
The total number of traded lots in the candle.