Bars¶
Summary¶
Represents the Bars interface - the collection of Bar objects.
Signature
1 |
|
Namespace¶
cAlgo.API
Examples¶
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
|
Methods¶
Last¶
Summary
Gets the last bar in the chart.
Signature
1 |
|
Parameters
Name | Type | Description |
---|---|---|
index | int |
Return Value
Bar
LoadMoreHistory¶
Summary
Loads more historical bars. Method returns the number of loaded bars that were added to the beginning of the collection.
Signature
1 |
|
Return Value
int
LoadMoreHistoryAsync (2)¶
LoadMoreHistoryAsync (1 of 2)
Summary
Loads more historical bars asynchronously.
Signature
1 |
|
Return Value
void
LoadMoreHistoryAsync (2 of 2)
Summary
Loads more historical bars asynchronously.
Signature
1 |
|
Parameters
Name | Type | Description |
---|---|---|
callback | Action | The callback that will be called after history loaded |
Return Value
void
GetPrices¶
Summary
Returns a data series from current Bars based on passed PriceType.
Signature
1 |
|
Parameters
Name | Type | Description |
---|---|---|
priceType | PriceType | Price Type |
Return Value
DataSeries
Properties¶
Item¶
Signature
1 |
|
Return Value
Bar
LastBar¶
Summary
Gets the last bar in the chart.
Signature
1 |
|
Return Value
Bar
Count¶
Summary
Gets the number of bars.
Signature
1 |
|
Return Value
int
TimeFrame¶
Summary
Get the timeframe.
Signature
1 |
|
Return Value
TimeFrame
SymbolName¶
Summary
Gets the symbol name.
Signature
1 |
|
Return Value
string
OpenPrices¶
Summary
Gets the Open price bars data.
Signature
1 |
|
Return Value
DataSeries
HighPrices¶
Summary
Gets the High price bars data.
Signature
1 |
|
Return Value
DataSeries
LowPrices¶
Summary
Gets the Low price bars data.
Signature
1 |
|
Return Value
DataSeries
ClosePrices¶
Summary
Gets the Close price bars data.
Signature
1 |
|
Return Value
DataSeries
TickVolumes¶
Summary
Gets the Tick volumes data.
Signature
1 |
|
Return Value
DataSeries
MedianPrices¶
Summary
Gets the Median prices data (High + Low) / 2.
Signature
1 |
|
Return Value
DataSeries
TypicalPrices¶
Summary
Gets the Typical prices data (High + Low + Close) / 2.
Signature
1 |
|
Return Value
DataSeries
WeightedPrices¶
Summary
Gets the Weighted prices data (High + Low + 2 * Close) / 4.
Signature
1 |
|
Return Value
DataSeries
OpenTimes¶
Summary
Gets the open bar time data.
Signature
1 |
|
Return Value
TimeSeries
Events¶
HistoryLoaded¶
Summary
Occurs when more history is loaded due to chart scroll on the left or due to API call.
Signature
1 |
|
Reloaded¶
Summary
Occurs when bars are refreshed due to reconnect.
Signature
1 |
|
Tick¶
Summary
Occurs when a new Tick arrives.
Signature
1 |
|
BarOpened¶
Summary
Occurs when the last bar is closed and a new bar is opened.
Signature
1 |
|
BarClosed¶
Summary
Occurs when a new bar is opened; the event is called for the previous (closed) bar.
Signature
1 |
|