Package | Description |
---|---|
com.dukascopy.api | |
com.dukascopy.api.drawings | |
com.dukascopy.api.indicators |
Modifier and Type | Method and Description |
---|---|
IChartObject |
IChartObject.clone()
Clones the chart object with a random key
|
IChartObject |
IChart.draw(java.lang.String key,
IChart.Type type,
long time1,
double price1)
Deprecated.
- this method is deprecated. please use
IChartObjectFactory create() method() instead. |
IChartObject |
IChart.draw(java.lang.String key,
IChart.Type type,
long time1,
double price1,
long time2,
double price2)
Deprecated.
- this method is deprecated. please use
IChartObjectFactory create() method() instead. |
IChartObject |
IChart.draw(java.lang.String key,
IChart.Type type,
long time1,
double price1,
long time2,
double price2,
long time3,
double price3)
Deprecated.
- this method is deprecated. please use
IChartObjectFactory create() method() instead. |
IChartObject |
IChart.drawUnlocked(java.lang.String key,
IChart.Type type,
long time1,
double price1)
Deprecated.
- this method is deprecated. please use
addToMainChartUnlocked() method instead. |
IChartObject |
IChart.drawUnlocked(java.lang.String key,
IChart.Type type,
long time1,
double price1,
long time2,
double price2)
Deprecated.
- this method is deprecated. please use
addToMainChartUnlocked() method instead.
Draws graphical object that requires up to 2 points. Object can be selected, moved and changed by the user |
IChartObject |
IChart.drawUnlocked(java.lang.String key,
IChart.Type type,
long time1,
double price1,
long time2,
double price2,
long time3,
double price3)
Deprecated.
- this method is deprecated. please use
addToMainChartUnlocked() method instead.
Draws graphical object that requires up to 3 points. Object can be selected, moved and changed by the user |
IChartObject |
IIndicatorPanel.get(java.lang.String chartObjectKey)
Returns
IChartObject instance by key if any exist on this panel. |
IChartObject |
IChartPanel.get(java.lang.String chartObjectKey)
Returns
IChartObject instance by key if any exist on this panel. |
IChartObject |
IChart.get(java.lang.String key)
Returns
IChartObject instance by key if any exist on this panel. |
IChartObject |
IIndicatorPanel.remove(java.lang.String chartObjectKey)
Deletes graphical object from this panel by key.
|
IChartObject |
IChartPanel.remove(java.lang.String chartObjectKey)
Deletes graphical object from this panel by key.
|
IChartObject |
IChart.remove(java.lang.String key)
Deletes graphical object from this panel by key.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<IChartObject> |
IIndicatorPanel.getAll()
Returns all graphical objects on this panel.
|
java.util.List<IChartObject> |
IChartPanel.getAll()
Returns all graphical objects on this panel.
|
java.util.List<IChartObject> |
IChart.getAll()
Returns all graphical objects on this panel.
|
java.util.List<IChartObject> |
IChart.getStrategyChartObjects()
Deprecated.
|
java.util.List<IChartObject> |
IChart.remove(java.util.List<IChartObject> chartObjects)
Deletes graphical objects
|
Modifier and Type | Method and Description |
---|---|
void |
IIndicatorPanel.add(IChartObject chartObject)
Adds object of
IChartObject type to current panel. |
void |
IChartPanel.add(IChartObject chartObject)
Adds object of
IChartObject type to current panel. |
void |
IChart.add(IChartObject chartObject)
Adds object of
IChartObject type to current panel. |
void |
IChart.addToMainChart(IChartObject object)
Deprecated.
Please use
IChart.add(IChartObject) method |
void |
IChart.addToMainChartUnlocked(IChartObject object)
Deprecated.
Please, use method @link
IChart.addToMainChart(IChartObject) There is no objects division onto locked and unlocked anymore |
void |
IChart.addToSubChart(java.lang.Integer subChartId,
int indicatorId,
IChartObject object)
Deprecated.
use
IChart.getIndicatorPanels() and IIndicatorPanel.add(IChartObject) methods |
void |
IChart.addToSubChart(int subPanelIndex,
IChartObject chartObject)
Deprecated.
use
IChart.getIndicatorPanels() and IIndicatorPanel.add(IChartObject) methods |
java.lang.Boolean |
IChart.isChartObjectUnlocked(IChartObject chartObject)
Deprecated.
There is no objects division onto locked and unlocked anymore, so this method will always return false
|
void |
IChart.move(IChartObject objectToMove,
long newTime,
double newPrice)
Moves graphical object to new coordinates.
|
void |
IChart.navigateAndSelectDrawing(IChartObject chartObject)
Navigates to and selects specified drawing.
|
void |
IIndicatorPanel.remove(IChartObject chartObject)
Deletes specified graphical object from this panel.
|
void |
IChartPanel.remove(IChartObject chartObject)
Deletes specified graphical object from this panel.
|
void |
IChart.remove(IChartObject chartObject)
Deletes specified graphical object from this panel.
|
void |
IChart.selectDrawing(IChartObject chartObject)
Select specified drawing.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<IChartObject> |
IChart.remove(java.util.List<IChartObject> chartObjects)
Deletes graphical objects
|
Modifier and Type | Method and Description |
---|---|
<T extends IChartObject> |
IChartObjectFactory.create(java.lang.Class<T> objectClass)
Factory method for creating drawing shapes of given type.
|
<T extends IChartObject> |
IChartObjectFactory.create(java.lang.Class<T> objectClass,
java.lang.Object... args)
Deprecated.
Factory method for creating drawing shapes of given type. Optionally,
accepts additional constructor parameters as
vararg argument. |
<T extends IChartObject> |
IChartObjectFactory.create(java.lang.Class<T> objectClass,
java.lang.String key)
Factory method for creating drawing shapes of given type.
|
Modifier and Type | Method and Description |
---|---|
IChartObject |
IIndicatorChartPanel.get(java.lang.String chartObjectKey)
Returns the instance of
IChartObject created by the indicator by key. |
Modifier and Type | Method and Description |
---|---|
java.util.List<IChartObject> |
IIndicatorChartPanel.getAll()
Returns all graphical objects created by the indicator.
|
java.util.List<IChartObject> |
IIndicatorAppearanceInfo.getChartObjects()
Returns chart objects drawn by the indicator
|
java.util.List<IChartObject> |
IIndicatorChartPanel.removeAll()
Removes all graphical objects created by the indicator.
|
Modifier and Type | Method and Description |
---|---|
void |
IIndicatorChartPanel.add(IChartObject chartObject)
Adds the object of type
IChartObject to the current panel. |
void |
IIndicatorChartPanel.remove(IChartObject chartObject)
Removes the specified graphical object from this panel.
|
Copyright © 2024. All rights reserved.