public interface IChartPanel
| Modifier and Type | Method and Description |
|---|---|
void |
add(IChartObject chartObject)
Adds object of
IChartObject type to current panel. |
IChartPanel |
add(IIndicator indicator)
Adds indicator to the current panel.
|
IChartPanel |
add(IIndicator indicator,
java.lang.Object[] optParams)
Adds indicator to the current panel by specifying initial optional parameters values
If optParams equals to null - default ones will be taken instead
|
IChartPanel |
add(IIndicator indicator,
java.lang.Object[] optParams,
java.awt.Color[] outputColors,
OutputParameterInfo.DrawingStyle[] outputDrawingStyles,
int[] outputWidths)
Adds indicator to the current panel by specifying initial optional parameters values, curves colors, drawing styles and line widths
If optParams equals to null - default ones will be taken instead
If output params are nulls - default ones will be taken instead
|
IChartPanel |
add(IIndicator indicator,
java.lang.Object[] optParams,
IFinancialInstrument financialInstrument,
Period period,
OfferSide offerSide)
Deprecated.
|
IChartPanel |
add(IIndicator indicator,
java.lang.Object[] optParams,
IFinancialInstrument financialInstrument,
Period period,
OfferSide offerSide,
OfferSide[] offerSides,
IIndicators.AppliedPrice[] appliedPrices,
java.awt.Color[] outputColors,
OutputParameterInfo.DrawingStyle[] outputDrawingStyles,
int[] outputWidths)
Deprecated.
|
IChartPanel |
add(IIndicator indicator,
java.lang.Object[] optParams,
Instrument instrument,
Period period,
OfferSide offerSide)
Adds indicator to the current panel by specifying initial optional parameters values
and indicator advanced settings
If optParams equals to null - default ones will be taken instead
If instrument, period or offerSide equals to null - values from chart will be taken instead
|
IChartPanel |
add(IIndicator indicator,
java.lang.Object[] optParams,
Instrument instrument,
Period period,
OfferSide offerSide,
OfferSide[] offerSides,
IIndicators.AppliedPrice[] appliedPrices,
java.awt.Color[] outputColors,
OutputParameterInfo.DrawingStyle[] outputDrawingStyles,
int[] outputWidths)
Adds indicator to the current panel by specifying initial optional parameters values,
indicator advanced settings, data sides/types for each input, output params
If optParams equals to null - default ones will be taken instead
If instrument, period or offerSide equals to null - values from chart will be taken instead
If offerSides or appliedPrices equals to null - default ones will be taken instead
If output params are nulls - default ones will be taken instead
|
IChartPanel |
add(IIndicator indicator,
java.lang.Object[] optParams,
Instrument instrument,
Period period,
OfferSide offerSide,
Period basePeriod)
Adds indicator to the current panel by specifying initial optional parameters values
and indicator advanced settings
If optParams equals to null - default ones will be taken instead
If instrument, period or offerSide equals to null - values from chart will be taken instead
If basePeriod equals to null - no base period will be used
|
IChartPanel |
add(IIndicator indicator,
java.lang.Object[] optParams,
Instrument instrument,
Period period,
OfferSide offerSide,
Period basePeriod,
OfferSide[] offerSides,
IIndicators.AppliedPrice[] appliedPrices,
java.awt.Color[] outputColors,
OutputParameterInfo.DrawingStyle[] outputDrawingStyles,
int[] outputWidths)
Adds indicator to the current panel by specifying initial optional parameters values,
indicator advanced settings, data sides/types for each input, output params
If optParams equals to null - default ones will be taken instead
If instrument, period or offerSide equals to null - values from chart will be taken instead
If basePeriod equals to null - no base period will be used
If offerSides or appliedPrices equals to null - default ones will be taken instead
If output params are nulls - default ones will be taken instead
|
IChartPanel |
add(IIndicator indicator,
java.lang.Object[] optParams,
OfferSide[] offerSides,
IIndicators.AppliedPrice[] appliedPrices)
Adds indicator to the current panel by specifying initial optional parameters values
and data sides/types for each input
If optParams equals to null - default ones will be taken instead
If offerSides or appliedPrices equals to null - default ones will be taken instead
|
IChartPanel |
add(IIndicator indicator,
java.lang.Object[] optParams,
Period basePeriod)
Adds indicator to the current panel by specifying initial optional parameters values
If optParams equals to null - default ones will be taken instead
If basePeriod equals to null - no base period will be used
|
IChartPanel |
add(IIndicator indicator,
java.lang.Object[] optParams,
Period basePeriod,
java.awt.Color[] outputColors,
OutputParameterInfo.DrawingStyle[] outputDrawingStyles,
int[] outputWidths)
Adds indicator to the current panel by specifying initial optional parameters values, curves colors, drawing styles and line widths
If optParams equals to null - default ones will be taken instead
If basePeriod equals to null - no base period will be used
If output params are nulls - default ones will be taken instead
|
IChartPanel |
add(IIndicator indicator,
java.lang.Object[] optParams,
Period basePeriod,
OfferSide[] offerSides,
IIndicators.AppliedPrice[] appliedPrices)
Adds indicator to the current panel by specifying initial optional parameters values
and data sides/types for each input
If optParams equals to null - default ones will be taken instead
If basePeriod equals to null - no base period will be used
If offerSides or appliedPrices equals to null - default ones will be taken instead
|
void |
addMouseListener(boolean asynchronous,
IChartPanelMouseListener chartMouseListener)
Adds the specified mouse listener to receive mouse events from
this chart panel.
|
IChartObject |
get(java.lang.String chartObjectKey)
Returns
IChartObject instance by key if any exist on this panel. |
java.util.List<IChartObject> |
getAll()
Returns all graphical objects on this panel.
|
java.util.List<IIndicatorAppearanceInfo> |
getIndicatorApperanceInfos()
Returns indicator appearance information on the chart panel
|
java.util.List<IIndicator> |
getIndicators()
Returns all indicators on the chart panel.
|
double |
getMaxPrice()
Returns maximal value of price scale
|
double |
getMinPrice()
Returns minimal value of price scale
|
java.util.List<IChartPanelMouseListener> |
getMouseListeners()
Returns an array of all the mouse listeners
registered on this component.
|
void |
remove(IChartObject chartObject)
Deletes specified graphical object from this panel.
|
IChartObject |
remove(java.lang.String chartObjectKey)
Deletes graphical object from this panel by key.
|
void |
removeAll()
Removes all graphical objects from this panel.
|
void |
removeIndicator(IIndicator indicator)
Remove specified indicator from this panel.
|
void |
removeMouseListener(IChartPanelMouseListener chartMouseListener)
Removes the specified mouse listener so that it no longer
receives mouse events from this component.
|
void add(IChartObject chartObject)
IChartObject type to current panel.
Please note that only one instance of object can be added per chart.chartObject - - instance of IChartObject super type.java.lang.IllegalArgumentException - - if object is already present on chart.IChartPanel add(IIndicator indicator)
indicator - as IIndicatorjava.lang.IllegalStateException - trying to apply to main panel indicator designed for sub panel.IChartPanel add(IIndicator indicator, java.lang.Object[] optParams)
indicator - as IIndicatoroptParams - as Object[]java.lang.IllegalStateException - trying to apply indicator designed for main panel to sub panel and vice versa.IChartPanel add(IIndicator indicator, java.lang.Object[] optParams, Period basePeriod)
indicator - as IIndicatoroptParams - as Object[]basePeriod - base period for unstable period indicatorsjava.lang.IllegalStateException - trying to apply indicator designed for main panel to sub panel and vice versa.IChartPanel add(IIndicator indicator, java.lang.Object[] optParams, Instrument instrument, Period period, OfferSide offerSide)
indicator - as IIndicatoroptParams - as Object[]instrument - as Instrumentperiod - as PeriodofferSide - as OfferSidejava.lang.IllegalStateException - trying to apply indicator designed for main panel to sub panel and vice versa.IChartPanel add(IIndicator indicator, java.lang.Object[] optParams, Instrument instrument, Period period, OfferSide offerSide, Period basePeriod)
indicator - as IIndicatoroptParams - as Object[]instrument - as Instrumentperiod - as PeriodofferSide - as OfferSidebasePeriod - base period for unstable period indicatorsjava.lang.IllegalStateException - trying to apply indicator designed for main panel to sub panel and vice versa.@Deprecated IChartPanel add(IIndicator indicator, java.lang.Object[] optParams, IFinancialInstrument financialInstrument, Period period, OfferSide offerSide)
indicator - as IIndicatoroptParams - as Object[]financialInstrument - as IFinancialInstrumentperiod - as PeriodofferSide - as OfferSidejava.lang.IllegalStateException - trying to apply indicator designed for main panel to sub panel and vice versa.IChartPanel add(IIndicator indicator, java.lang.Object[] optParams, OfferSide[] offerSides, IIndicators.AppliedPrice[] appliedPrices)
indicator - as IIndicatoroptParams - as Object[]offerSides - as OfferSide[]appliedPrices - as AppliedPrice[]java.lang.IllegalStateException - trying to apply indicator designed for main panel to sub panel and vice versa.IChartPanel add(IIndicator indicator, java.lang.Object[] optParams, Period basePeriod, OfferSide[] offerSides, IIndicators.AppliedPrice[] appliedPrices)
indicator - as IIndicatoroptParams - as Object[]basePeriod - base period for unstable period indicatorsofferSides - as OfferSide[]appliedPrices - as AppliedPrice[]java.lang.IllegalStateException - trying to apply indicator designed for main panel to sub panel and vice versa.IChartPanel add(IIndicator indicator, java.lang.Object[] optParams, java.awt.Color[] outputColors, OutputParameterInfo.DrawingStyle[] outputDrawingStyles, int[] outputWidths)
indicator - as IIndicatoroptParams - as Object[]outputColors - as Color[]outputDrawingStyles - as DrawingStyle[]outputWidths - as int[]java.lang.IllegalStateException - trying to apply indicator designed for main panel to sub panel and vice versa.IChartPanel add(IIndicator indicator, java.lang.Object[] optParams, Period basePeriod, java.awt.Color[] outputColors, OutputParameterInfo.DrawingStyle[] outputDrawingStyles, int[] outputWidths)
indicator - as IIndicatoroptParams - as Object[]basePeriod - base period for unstable period indicatorsoutputColors - as Color[]outputDrawingStyles - as DrawingStyle[]outputWidths - as int[]java.lang.IllegalStateException - trying to apply indicator designed for main panel to sub panel and vice versa.IChartPanel add(IIndicator indicator, java.lang.Object[] optParams, Instrument instrument, Period period, OfferSide offerSide, OfferSide[] offerSides, IIndicators.AppliedPrice[] appliedPrices, java.awt.Color[] outputColors, OutputParameterInfo.DrawingStyle[] outputDrawingStyles, int[] outputWidths)
indicator - as IIndicatoroptParams - as Object[]instrument - as Instrumentperiod - as PeriodofferSide - as OfferSideofferSides - as OfferSide[]appliedPrices - as AppliedPrice[]outputColors - as Color[]outputDrawingStyles - as DrawingStyle[]outputWidths - as int[]java.lang.IllegalStateException - trying to apply indicator designed for main panel to sub panel and vice versa.IChartPanel add(IIndicator indicator, java.lang.Object[] optParams, Instrument instrument, Period period, OfferSide offerSide, Period basePeriod, OfferSide[] offerSides, IIndicators.AppliedPrice[] appliedPrices, java.awt.Color[] outputColors, OutputParameterInfo.DrawingStyle[] outputDrawingStyles, int[] outputWidths)
indicator - as IIndicatoroptParams - as Object[]instrument - as Instrumentperiod - as PeriodofferSide - as OfferSidebasePeriod - base period for unstable period indicatorsofferSides - as OfferSide[]appliedPrices - as AppliedPrice[]outputColors - as Color[]outputDrawingStyles - as DrawingStyle[]outputWidths - as int[]java.lang.IllegalStateException - trying to apply indicator designed for main panel to sub panel and vice versa.@Deprecated IChartPanel add(IIndicator indicator, java.lang.Object[] optParams, IFinancialInstrument financialInstrument, Period period, OfferSide offerSide, OfferSide[] offerSides, IIndicators.AppliedPrice[] appliedPrices, java.awt.Color[] outputColors, OutputParameterInfo.DrawingStyle[] outputDrawingStyles, int[] outputWidths)
indicator - as IIndicatoroptParams - as Object[]financialInstrument - as IFinancialInstrumentperiod - as PeriodofferSide - as OfferSideofferSides - as OfferSide[]appliedPrices - as AppliedPrice[]outputColors - as Color[]outputDrawingStyles - as DrawingStyle[]outputWidths - as int[]java.lang.IllegalStateException - trying to apply indicator designed for main panel to sub panel and vice versa.java.util.List<IIndicator> getIndicators()
java.util.List<IIndicatorAppearanceInfo> getIndicatorApperanceInfos()
IChartObject get(java.lang.String chartObjectKey)
IChartObject instance by key if any exist on this panel.chartObjectKey - unique idjava.util.List<IChartObject> getAll()
double getMinPrice()
double getMaxPrice()
void removeIndicator(IIndicator indicator)
indicator - instance of IIndicator interfaceIChartObject remove(java.lang.String chartObjectKey)
chartObjectKey - key of object to removevoid remove(IChartObject chartObject)
chartObject - object to removejava.lang.NullPointerException - if chartObject is nullvoid removeAll()
void addMouseListener(boolean asynchronous,
IChartPanelMouseListener chartMouseListener)
chartMouseListener is null,
no exception is thrown and no action is performed.asynchronous - if true listener will be triggered in AWT thread asynchronously with strategy thread, otherwise will be synchronized. Use false as default if not sure.chartMouseListener - the mouse listenerremoveMouseListener(com.dukascopy.api.chart.mouse.IChartPanelMouseListener),
getMouseListeners()void removeMouseListener(IChartPanelMouseListener chartMouseListener)
chartMouseListener is null,
no exception is thrown and no action is performed.chartMouseListener - the mouse listeneraddMouseListener(boolean, com.dukascopy.api.chart.mouse.IChartPanelMouseListener),
getMouseListeners()java.util.List<IChartPanelMouseListener> getMouseListeners()
MouseListeners
or an empty array if no mouse
listeners are currently registeredaddMouseListener(boolean, com.dukascopy.api.chart.mouse.IChartPanelMouseListener),
removeMouseListener(com.dukascopy.api.chart.mouse.IChartPanelMouseListener)Copyright © 2025. All rights reserved.