Dukascopy Support Board
http://www.dukascopy.com/swiss/english/forex/jforex/forum/

Add custom tags for IChartObject
http://www.dukascopy.com/swiss/english/forex/jforex/forum/viewtopic.php?f=83&t=56799
Page 1 of 1

Author:  mtnfx [ Tue 30 Oct, 2018, 19:38 ]
Post subject:  Add custom tags for IChartObject

Add ability to attach custom data to chart objects, for example via following API (assuming allowed tag values are Strings or Java primitives - numbers and boolean).
Viewing/editing their values in simple key-value table in JForex UI is also needed.
    public interface IChartObject {
        List<String> getTagKeys();
        Object getTag(String tagKey);
        void setTag(String tagKey, Object tagValue);
        void removeTag(String tagKey);
        void removeAllTags();
    }

  Page 1 of 1