CWKConfiguration Class Reference

Inherits from NSObject
Conforms to NSXMLParserDelegate
Declared in CWKConfiguration.h

Overview

This class is used to configure the theming of the CWKView.

There is a default theme set on initialization.

If you want to override certain properties, this can be done directly by setting the properties in code or by using an XML configuration file. See loadCustomConfigurationFromXML.

Warning: For any theme or configuration change to take effect you need to define your theme using this class before creating your CWKView and once the CWKView is created changing any of these properties will likely have no impact.

Creating and Initializing Configuration

  apiURLChart

If this is left unassigned then on the first drawChart an error will be generated.

@property (nonatomic, strong) NSString *apiURLChart

Declared In

CWKConfiguration.h

  apiURLSymbolInformation

The URL for the symbol info API. This needs to be set to use the -getInformationForSymbol: method

@property (nonatomic, strong) NSString *apiURLSymbolInformation

Declared In

CWKConfiguration.h

  apiAuthToken

For authenticated APIs, the authorization token. Refer to authentication documentation for more information.

@property (nonatomic, strong) NSString *apiAuthToken

Declared In

CWKConfiguration.h

  apiDataInterface

You may be asked to set this data interface property to configure the server requests (not typical)

@property (nonatomic, strong) NSString *apiDataInterface

Declared In

CWKConfiguration.h

  networkTimeout

A timeout for the network requests made by the SDK. Defaults to 60 seconds

@property (nonatomic, assign) NSTimeInterval networkTimeout

Declared In

CWKConfiguration.h

– configurationOK

For better performance the initialization of this class will no longer set a default theme. the chart will call configurationOK before the view will be allowed to instantiation of the CWKView to succeed.

- (BOOL)configurationOK

Return Value

BOOL Yes / No

Declared In

CWKConfiguration.h

– loadCustomConfigurationFromXML:

Overwrites default CWKConfiguration color, string, and some bool values based on values from a configuration XML file. This allows for sharing common values between Android and iOS code bases. Configuration settings XML documents must start and end with Please see the example XML files in the Documentation\XML folder.

- (void)loadCustomConfigurationFromXML:(NSString *)xmlFileName

Return Value

void

Declared In

CWKConfiguration.h

– loadCustomConfigurationFromData:

Overwrites default CWKConfiguration color, string, and some bool values based on values from the NSData representation of a configuration XML file. An example use of this would be hosting a configuration XML file on a web service and passing the NSData representation of that in to update configuration settings to deployed apps.

- (void)loadCustomConfigurationFromData:(NSData *)configurationData

Return Value

void

Declared In

CWKConfiguration.h

Behaviors

  hideLowerChartWhenNoLowerIndicatorIsActive

When enabled, the lower portion of the chart is hidden when there is no lower indicator requested. Default is YES

@property (nonatomic, assign) BOOL hideLowerChartWhenNoLowerIndicatorIsActive

Declared In

CWKConfiguration.h

  enableAutomaticYScalingLower

Tells the chart to automatic change the range of the Y-Axis on the lower chart when panning or zooming. Default is YES

@property (nonatomic, assign) BOOL enableAutomaticYScalingLower

Declared In

CWKConfiguration.h

  indicatorPlusButtonShown

  • Tells the chart to show/hide “+Indicator” buttons
@property (nonatomic, assign) BOOL indicatorPlusButtonShown

Declared In

CWKConfiguration.h

  indicatorUpperButtonBarShown

Tells the chart to show/hide the upper indicator button bar. If this is NO the bar will not be shown and all other indicator button properties will be ignored. Defaults to YES

@property (nonatomic, assign) BOOL indicatorUpperButtonBarShown

Declared In

CWKConfiguration.h

  indicatorLowerButtonBarShown

Tells the chart to show/hide the lower indicator button bar. If this is NO the bar will not be shown and all other indicator button properties will be ignored. Defaults to YES

@property (nonatomic, assign) BOOL indicatorLowerButtonBarShown

Declared In

CWKConfiguration.h

  indicatorUpperButtonBarInteractionEnabled

Tells the chart to enable interaction on the upper button bar (aka legend) Defaults to YES;

@property (nonatomic, assign) BOOL indicatorUpperButtonBarInteractionEnabled

Declared In

CWKConfiguration.h

  indicatorLowerButtonBarInteractionEnabled

Tells the chart to enable interaction on the lower button bar (aka legend) Defaults to YES;

@property (nonatomic, assign) BOOL indicatorLowerButtonBarInteractionEnabled

Declared In

CWKConfiguration.h

  indicatorAnnouncementsButtonShown

Tells LiveCharts to show/hide Announcements buttons

@property (nonatomic, assign) BOOL indicatorAnnouncementsButtonShown

Declared In

CWKConfiguration.h

  indicatorUpperLegendButtonShown

Tells the chart to show/hide Upper Legend Buttons (note that means it will not be possible to set indicator parameters)

@property (nonatomic, assign) BOOL indicatorUpperLegendButtonShown

Declared In

CWKConfiguration.h

  indicatorLowerLegendButtonShown

Tells the chart to show/hide Lower Legend Buttons (note that means it will not be possible to set indicator parameters)

@property (nonatomic, assign) BOOL indicatorLowerLegendButtonShown

Declared In

CWKConfiguration.h

  )

When CWKUpperIndicatorPrice is an active indicator, the legend typically shows the nameShortPrice string. Setting this to YES will replace the button text with the base symbol displayString Default is NO

@property (nonatomic, assign) BOOL showDisplaySymbolInLegendInsteadOfNameShortPrice DEPRECATED_MSG_ATTRIBUTE ( "This is now on by default" )

Declared In

CWKConfiguration.h

  enableCrossHairTooltip

Specifies if the SDK’s crosshair tooltip should be enabled. Set to NO to use a custom tooltip.

@property (nonatomic, assign) BOOL enableCrossHairTooltip

Discussion

Default is YES

If using a custom tooltip: - Set this property to NO - Implement CWKViewDelegate crosshairUpdatedWithData: and crosshairDidHide:

Declared In

CWKConfiguration.h

  crossHairFollowStyle

Tells the chart how to display the view following algorithm when a cross hair is enabled (tap and hold on an indicator) * CWKCrossHairFollowStyle is set to CWKCrossHairFollowStyleViewTop by default

@property (nonatomic, assign) CWKCrossHairFollowStyle crossHairFollowStyle

Declared In

CWKConfiguration.h

  crossHairPopupPosition

Indicates where to place the cross hair popup window. The default is CWKCrossHairPopupPositionFloating. This setting is ignored when crossHairFollowStyle is set to CWKCrossHairFollowStyleViewCenter or CWKCrossHairFollowStyleViewTop

@property (nonatomic, assign) CWKCrossHairPopupPosition crossHairPopupPosition

Declared In

CWKConfiguration.h

  crossHairFollowHorizontalPadding

Tells the chart the spacing to use from the crosshair to the finger (has no effect if the * CWKCrossHairFollowStyle is set to CWKCrossHairFollowStyleViewCenter (Default: 10)

@property (nonatomic, assign) float crossHairFollowHorizontalPadding

Declared In

CWKConfiguration.h

  crossHairFollowVerticalPadding

Tells the chart the spacing to use from the crosshair to the finger (has no effect if the * CWKCrossHairFollowStyle is set to CWKCrossHairFollowStyleViewCenter (Default: 10)

@property (nonatomic, assign) float crossHairFollowVerticalPadding

Declared In

CWKConfiguration.h

  legendPopoverShadowedText

Tells the chart to show Legend Popover Shadowed text

@property (nonatomic, assign) BOOL legendPopoverShadowedText

Declared In

CWKConfiguration.h

  indicatorPopoverBreakLine

Tells the chart to show Underline under the title in Legend Popover

@property (nonatomic, assign) BOOL indicatorPopoverBreakLine

Declared In

CWKConfiguration.h

  disableAddOverlayButton

Tells the chart to disable the “Add Overlay” button in the indicator popover. Default is NO

@property (nonatomic, assign) BOOL disableAddOverlayButton

Declared In

CWKConfiguration.h

  eventsTappable

Tells the chart to show Popover when Dividends, Splits, or Earnings are tapped

@property (nonatomic, assign) BOOL eventsTappable

Declared In

CWKConfiguration.h

  chartsDebug

Tells the chart to enable SDK debugging

@property (nonatomic, assign) BOOL chartsDebug

Declared In

CWKConfiguration.h

  autoSetDecimalPlaces

Tells the chart to automatically set the number of decimal places shown in the upper chart * Y Axis labels, based on the data and frequency. If you want to explicitly set the number of * decimal places, set this to NO and then set the decimal places in @forceDecimalPlaces. Default * is YES.

@property (nonatomic, assign) BOOL autoSetDecimalPlaces

Declared In

CWKConfiguration.h

  forceDecimalPlaces

Tells the chart to use the number of decimal places when formatting Y Axis labels on the * upper chart. This property is ignored unless autoSetDecimalPlaces is NO. The default is 2.

@property (nonatomic, assign) NSUInteger forceDecimalPlaces

Declared In

CWKConfiguration.h

  allowTimeZoneOffset

Tells the chart to use TimeZoneOffset passed in from API instead of using the fixed offset based on EST Default = YES

@property (nonatomic, assign) BOOL allowTimeZoneOffset

Declared In

CWKConfiguration.h

  shouldNormalizeComparisonTimeZone

  • Tells the chart to align series to the same timezone, as if something in the London stock exchange was trading in
  • the same timezone as the New York. In effect, The chart will move the London symbol data several hours later so
  • London 8 AM shows on the chart as New York 8 AM. Setting this to ‘no’ means that everything will be plotted at the technically correct
  • time.
  • Note that this will only affect charts with intraday data.
  • Default = NO

@property (nonatomic, assign) BOOL shouldNormalizeComparisonTimeZone

Declared In

CWKConfiguration.h

  shouldMakeAllTradingDaysEqualLength

Tells the chart to use the longest trading day as the prototype for all days of the week - ensuring each day takes up the same amount of space on the X-Axis. Note that this will only affect charts with intraday data. Default = NO;

@property (nonatomic, assign) BOOL shouldMakeAllTradingDaysEqualLength

Declared In

CWKConfiguration.h

  shouldShowGapsWhenMarketIsClosed

  • By default, the chart will show gaps in line series to indicate when the market is closed.
  • If you would not like to see the these gaps, set this property to NO.
  • Note that this will only affect charts with intraday data.
  • Default = YES;

@property (nonatomic, assign) BOOL shouldShowGapsWhenMarketIsClosed

Declared In

CWKConfiguration.h

  showEarningsOnAnnouncementDate

Show earnings on announced date (requires API support) Default = NO

@property (nonatomic, assign) BOOL showEarningsOnAnnouncementDate

Declared In

CWKConfiguration.h

  loadChartDataInBackground

Load chart data in background. When enabled, the main thread won’t be used to populate chart data. loadChartDataInBackground is not compatible with shouldLoadDataToReduceDetail Default = YES

@property (nonatomic, assign) BOOL loadChartDataInBackground

Declared In

CWKConfiguration.h

Extended Hours

  extendedHours

The extended hours configuration object with options related to extended hours.

@property (nonatomic, strong) CWKExtendedHoursConfiguration *extendedHours

Declared In

CWKConfiguration.h

Gesture Loading

  shouldLoadDataOnPan

Load more data when the chart is panned past the first data loaded Default = YES

@property (nonatomic, assign) BOOL shouldLoadDataOnPan

Declared In

CWKConfiguration.h

  delayForPanLoad

The delay after making the appropriate gesture before pan loading is triggered Default = 0 seconds

@property (nonatomic, assign) NSTimeInterval delayForPanLoad

Declared In

CWKConfiguration.h

  shouldLoadDataOnZoomOut

Load more data when the chart is zoomed out beyond the edge of the data Default = YES

@property (nonatomic, assign) BOOL shouldLoadDataOnZoomOut

Declared In

CWKConfiguration.h

  delayForZoomOutLoad

The delay after making the appropriate gesture before zoom out loading is triggered Default = 1 second

@property (nonatomic, assign) NSTimeInterval delayForZoomOutLoad

Declared In

CWKConfiguration.h

  shouldLoadDataOnZoomIn

Load more data when the chart is zoomed in far enough where more data would be useful and the frequency is not the lowest available. Default = NO

@property (nonatomic, assign) BOOL shouldLoadDataOnZoomIn

Declared In

CWKConfiguration.h

  delayForZoomInLoad

The delay after making the appropriate gesture before zoom in loading is triggered Default = 1 second

@property (nonatomic, assign) NSTimeInterval delayForZoomInLoad

Declared In

CWKConfiguration.h

  shouldLoadDataToReduceDetail

Load less detailed (by lowering the frequency) of the data when the user has zoomed out and chart points are considered to be “overlapping”. Default = NO

@property (nonatomic, assign) BOOL shouldLoadDataToReduceDetail

Declared In

CWKConfiguration.h

  delayForReduceDetailLoad

The delay after zooming to the trigger point before the reduced detail chart should load Default = 1 second

@property (nonatomic, assign) NSTimeInterval delayForReduceDetailLoad

Declared In

CWKConfiguration.h

Resizing Gripper

  resizeGripperImage

To enable a user to resize the upper and lower chart by simply moving their finger up and down, Set an a gripper image. The chart view will position the gripper image centered vertically between the upper and lower chart. Default = nil (no resizing gripper)

@property (nonatomic, strong) UIImage *resizeGripperImage

Declared In

CWKConfiguration.h

  resizeGripperCentered

To position the resizing gripper centered horizontally inside the chart, set this property to YES To position the resizing gripper on the edge of chart below the upper Y-Axis, set this property to NO Default = NO

@property (nonatomic, assign) BOOL resizeGripperCentered

Declared In

CWKConfiguration.h

Chart Colors, Borders, and Fonts

  colorChartGutterBackground

Color of the gap between the upper and lower charts.

@property (nonatomic, strong) UIColor *colorChartGutterBackground

Declared In

CWKConfiguration.h

  colorUpperLegendBackgroundColor

Color of the legend bar above the upper chart, containing the indicator buttons.

@property (nonatomic, strong) UIColor *colorUpperLegendBackgroundColor

Declared In

CWKConfiguration.h

  colorUpperChartBackground

Color of the upper chart’s background

@property (nonatomic, strong) UIColor *colorUpperChartBackground

Declared In

CWKConfiguration.h

  colorLowerLegendBackgroundColor

Color of the legend bar above the lower chart, containing the indicator buttons.

@property (nonatomic, strong) UIColor *colorLowerLegendBackgroundColor

Declared In

CWKConfiguration.h

  colorLowerChartBackground

Color of the lower chart’s background

@property (nonatomic, strong) UIColor *colorLowerChartBackground

Declared In

CWKConfiguration.h

  upperButtonsViewMinHeight

The minimum height of the buttons view above the upper chart

@property (nonatomic, assign) CGFloat upperButtonsViewMinHeight

Declared In

CWKConfiguration.h

  enableUpperPlotAreaBorder

Enable Upper Chart Plot Area Border. Defaults to NO

@property (nonatomic, assign) BOOL enableUpperPlotAreaBorder

Declared In

CWKConfiguration.h

  colorUpperPlotAreaBorder

Color for the upper plot area border. Only used if enableUpperPlotAreaBorder is set to YES.

@property (nonatomic, strong) UIColor *colorUpperPlotAreaBorder

Declared In

CWKConfiguration.h

  widthUpperPlotAreaBorder

Width for the upper plot area border

@property (nonatomic, strong) NSNumber *widthUpperPlotAreaBorder

Declared In

CWKConfiguration.h

  enableLowerPlotAreaBorder

Enable Lower Plot Area Border. Defaults to NO

@property (nonatomic, assign) BOOL enableLowerPlotAreaBorder

Declared In

CWKConfiguration.h

  colorLowerPlotAreaBorder

Color for the lower plot area border. Only used if enableLowerPlotAreaBorder is set to YES.

@property (nonatomic, strong) UIColor *colorLowerPlotAreaBorder

Declared In

CWKConfiguration.h

  widthLowerPlotAreaBorder

Width for the lower plot area border

@property (nonatomic, strong) NSNumber *widthLowerPlotAreaBorder

Declared In

CWKConfiguration.h

  enableUpperChartBorder

Enable Upper Chart Border

@property (nonatomic, assign) BOOL enableUpperChartBorder

Declared In

CWKConfiguration.h

  colorUpperChartBorder

Color for the upper chart border

@property (nonatomic, strong) UIColor *colorUpperChartBorder

Declared In

CWKConfiguration.h

  widthUpperChartBorder

Width for the upper chart border

@property (nonatomic, strong) NSNumber *widthUpperChartBorder

Declared In

CWKConfiguration.h

  enableLowerChartBorder

Enable Lower Chart Border

@property (nonatomic, assign) BOOL enableLowerChartBorder

Declared In

CWKConfiguration.h

  colorLowerChartBorder

Color for the lower chart border

@property (nonatomic, strong) UIColor *colorLowerChartBorder

Declared In

CWKConfiguration.h

  widthLowerChartBorder

Width for the lower chart border

@property (nonatomic, strong) NSNumber *widthLowerChartBorder

Declared In

CWKConfiguration.h

  enableChartViewBorder

Enable Upper & Lower Chart Surrounding Border

@property (nonatomic, assign) BOOL enableChartViewBorder

Declared In

CWKConfiguration.h

  colorChartViewBorder

Color for chart view border

@property (nonatomic, strong) UIColor *colorChartViewBorder

Declared In

CWKConfiguration.h

  widthChartViewBorder

Width for the chart view border

@property (nonatomic, strong) NSNumber *widthChartViewBorder

Declared In

CWKConfiguration.h

  colorNetworkActivityBackground

Busy screen that appears while network activity is ongoing. You may want to set a UIColor with opacity to a number less than 1.

@property (nonatomic, strong) UIColor *colorNetworkActivityBackground

Declared In

CWKConfiguration.h

  positionForPreviousDateLabel

The x/y position for the previous date Label

@property (nonatomic, assign) CGPoint positionForPreviousDateLabel

Declared In

CWKConfiguration.h

  fontPreviousDayLabel

fontPreviousDayLabel

@property (nonatomic, strong) UIFont *fontPreviousDayLabel

Declared In

CWKConfiguration.h

  colorPreviousDayLabel

colorPreviousDayLabel

@property (nonatomic, strong) UIColor *colorPreviousDayLabel

Declared In

CWKConfiguration.h

  stringPreviousDayLabel

stringPreviousDayLabel

@property (nonatomic, strong) NSString *stringPreviousDayLabel

Declared In

CWKConfiguration.h

  enablePreviousDayLabel

enablePreviousDayLabel

@property (nonatomic, assign) BOOL enablePreviousDayLabel

Declared In

CWKConfiguration.h

Date Format Settings

  formatLocale

formatLocale - the locale to use for display strings, defaults to currentLocale. By default format strings will take advantage of Apple’s localization system to convert to a user’s locale.

@property (nonatomic, strong) NSLocale *formatLocale

Declared In

CWKConfiguration.h

  yearFormat

yearFormat - Customize the format string for dates displayed as year only. defaults to “y”

@property (nonatomic, strong) NSString *yearFormat

Declared In

CWKConfiguration.h

  monthYearFormat

monthYearFormat - Customize the format string for dates displayed as month and year. defaults to “MMM y”

@property (nonatomic, strong) NSString *monthYearFormat

Declared In

CWKConfiguration.h

  monthDayFormat

monthDayFormat - Customize the format string for dates displayed as month and day. defaults to “M/d”

@property (nonatomic, strong) NSString *monthDayFormat

Declared In

CWKConfiguration.h

  hourMinuteFormat

hourMinuteFormat - Customize the format string for dates displayed as the time. defaults to “h:mm a”

@property (nonatomic, strong) NSString *hourMinuteFormat

Declared In

CWKConfiguration.h

  monthDayYearFormat

monthDayYearFormat - Customize the format string for dates displayed as the date, used for crosshair. defaults to “MM/dd/yy”

@property (nonatomic, strong) NSString *monthDayYearFormat

Declared In

CWKConfiguration.h

  shouldLocalizeDateFormats

shouldLocalizeDateFormats - When YES, date formats will use [NSDateFormatter dateFormatFromTemplate:options:locale:] to generate the final formatting string. Set to NO if you want to be very specific about your separators, or do the localization yourself. Defaults to YES

@property (nonatomic, assign) BOOL shouldLocalizeDateFormats

Declared In

CWKConfiguration.h

  showFirstLabelOfDayAsDate

showFirstLabelOfDayAsDate - When looking at charts that span multiple days but have a data frequency of less than a day, setting this to YES will change the first label to use a the monthDayFormat instead of the hourMinuteFormat. Defaults to NO.

@property (nonatomic, assign) BOOL showFirstLabelOfDayAsDate

Declared In

CWKConfiguration.h

  showFirstLabelOfDayOnWholeHour

showFirstLabelOfDayAsDate - When looking at a chart that has a frequency of less than a day, show the first label of day on a whole hour instead of earliest data point. (EG: 10:00 vs 9:30). Defaults to NO

@property (nonatomic, assign) BOOL showFirstLabelOfDayOnWholeHour

Declared In

CWKConfiguration.h

  showFirstLabelOfYearAsYear

showFirstLabelOfYearAsYear - When looking at a chart that spans a month or greater, show the first label of year in yearFormat instead monthDayFormat. (EG: 1/1 vs 2011). Defaults to NO

@property (nonatomic, assign) BOOL showFirstLabelOfYearAsYear

Declared In

CWKConfiguration.h

X-Axis Tick Mark Settings

  xAxisTickLabelAlignment

tickLabelAlignment - Customize the alignment of the tick labels relative to tick mark lines. Defaults to NSTextAlignmentCenter

@property (nonatomic, assign) NSTextAlignment xAxisTickLabelAlignment

Declared In

CWKConfiguration.h

  xAxisTickLabelOffset

tickLabelOffset - Moves the tick label relative to the tick mark on the xAxis. Defaults to 0.

@property (nonatomic, assign) CGFloat xAxisTickLabelOffset

Declared In

CWKConfiguration.h

General Annotation Settings

  annotationEditImage

The image used inside the button circle for the annotation’s Edit action, such as the text of a text annotation. Displayed when certain annotations are in edit mode.

@property (nonatomic, strong) UIImage *annotationEditImage

Declared In

CWKConfiguration.h

  annotationDeleteImage

The image used inside the button circle for the annotation’s Delete action. Displayed when annotations are in edit mode.

@property (nonatomic, strong) UIImage *annotationDeleteImage

Declared In

CWKConfiguration.h

Trendline Settings

  colorTrendLineUp

The color of an upward sloping trendline if trendlineColorBasedOnSlope is YES. Default is green. If trendlineColorBasedOnSlope is NO this is the color of all trendlines.

@property (nonatomic, strong) UIColor *colorTrendLineUp

Declared In

CWKConfiguration.h

  colorTrendLineDown

The color of a downward sloping trendline if trendlineColorBasedOnSlope is YES. Default is red.

@property (nonatomic, strong) UIColor *colorTrendLineDown

Declared In

CWKConfiguration.h

  colorTrendLineNeutral

The color of a neutral (not sloping) trendline if trendlineColorBasedOnSlope is YES. Default is grey.

@property (nonatomic, strong) UIColor *colorTrendLineNeutral

Declared In

CWKConfiguration.h

  trendlineColorBasedOnSlope

If YES, the color will be determined based on the slope of the trendline. Default is YES.

@property (nonatomic, assign) BOOL trendlineColorBasedOnSlope

Declared In

CWKConfiguration.h

  widthTrendline

The width of the trendline. Default is 2.

@property (nonatomic, strong) NSNumber *widthTrendline

Declared In

CWKConfiguration.h

Ray Line Settings

  colorRayLine

The color of a ray line. Default is purple (#7F0F7E).

@property (nonatomic, strong) UIColor *colorRayLine

Declared In

CWKConfiguration.h

  widthRayLine

The width of the ray line. Default is 2.

@property (nonatomic, strong) NSNumber *widthRayLine

Declared In

CWKConfiguration.h

Extended Line Settings

  colorExtendedLine

The color of an extended line. Default is orange (#FEA428).

@property (nonatomic, strong) UIColor *colorExtendedLine

Declared In

CWKConfiguration.h

  widthExtendedLine

The width of the extended line. Default is 2.

@property (nonatomic, strong) NSNumber *widthExtendedLine

Declared In

CWKConfiguration.h

Arrow Line / Annotation Settings

  colorArrowLine

The color of an arrow line. Default is light blue (#4983B3).

@property (nonatomic, strong) UIColor *colorArrowLine

Declared In

CWKConfiguration.h

  widthArrowLine

The width of the line. Default is 2.

@property (nonatomic, strong) NSNumber *widthArrowLine

Declared In

CWKConfiguration.h

  widthArrow

The width of the arrow at the end of the line. Default is 10.

@property (nonatomic, strong) NSNumber *widthArrow

Declared In

CWKConfiguration.h

Level Line Settings

  colorLevelLine

The color of a level line. Default is light blue (#9D9D9D).

@property (nonatomic, strong) UIColor *colorLevelLine

Declared In

CWKConfiguration.h

  widthLevelLine

The width of the line. Default is 2.

@property (nonatomic, strong) NSNumber *widthLevelLine

Declared In

CWKConfiguration.h

Gann Fan Line Settings

  colorGannFan1Line

The color of the 1/1 line. Default is #808080.

@property (nonatomic, strong) UIColor *colorGannFan1Line

Declared In

CWKConfiguration.h

  colorGannFan2Line

The color of the ½ and 2/1 lines. Default is #BD060f.

@property (nonatomic, strong) UIColor *colorGannFan2Line

Declared In

CWKConfiguration.h

  colorGannFan3Line

The color of the 1/3 and 3/1 lines. Default is #FFA21F.

@property (nonatomic, strong) UIColor *colorGannFan3Line

Declared In

CWKConfiguration.h

  colorGannFan4Line

The color of the ¼ and 4/1 lines. Default is #C2C226.

@property (nonatomic, strong) UIColor *colorGannFan4Line

Declared In

CWKConfiguration.h

  colorGannFan8Line

The color of the 1/8 and 8/1 lines. Default is #0D9612.

@property (nonatomic, strong) UIColor *colorGannFan8Line

Declared In

CWKConfiguration.h

  fontGannFanLabels

The font of the line labels. Default is systemFontOfSize:12.0

@property (nonatomic, strong) UIFont *fontGannFanLabels

Declared In

CWKConfiguration.h

  widthGannFanLine

The width of the line. Default is 1.

@property (nonatomic, strong) NSNumber *widthGannFanLine

Declared In

CWKConfiguration.h

Returns Calculator Settings

  returnsGestureMinimumPressDuration

The time, in seconds, the gesture recognizer will wait before recognizing the touch event to display the Returns Calculator.

@property (nonatomic, assign) NSTimeInterval returnsGestureMinimumPressDuration

Declared In

CWKConfiguration.h

  disableReturnsGesture

Disable the returns calculator (2 finger long press popup) with this flag

@property (nonatomic, assign) BOOL disableReturnsGesture

Declared In

CWKConfiguration.h

  enableReturnsDotOnLineAnnotation

Specifies if a dot should be added on top of the line annotation

@property (nonatomic, assign) BOOL enableReturnsDotOnLineAnnotation

Declared In

CWKConfiguration.h

  returnsBackgroundShadingPositionOutsideLines

If @returnsBackgroundShadingImage is supplied, specifies where the shading image will be placed. If NO, shading will be between the lines, in the middle. If YES, shading will be placed outside the lines, to the left and right.

@property (nonatomic, assign) BOOL returnsBackgroundShadingPositionOutsideLines

Declared In

CWKConfiguration.h

  colorReturnsCalculatorRising

Color of the returns calculator when change is positive

@property (nonatomic, strong) UIColor *colorReturnsCalculatorRising

Declared In

CWKConfiguration.h

  colorReturnsCalculatorFalling

Color of the returns calculator when change is negative

@property (nonatomic, strong) UIColor *colorReturnsCalculatorFalling

Declared In

CWKConfiguration.h

  colorReturnsCalculatorNoChange

Color of the returns calculator when change is neutral

@property (nonatomic, strong) UIColor *colorReturnsCalculatorNoChange

Declared In

CWKConfiguration.h

  returnsDotAnnotationDiameter

Specifies if a dot should be added on top of the line annotation

@property (nonatomic, assign) CGFloat returnsDotAnnotationDiameter

Declared In

CWKConfiguration.h

  returnsYPositionPercentage

A float between 0 and 1 that specifies the percentage from the top of the chart to position the middle of the returns calculator overlay. For example, 0.25 will position the center of the view 25% from the top of the chart.

@property (nonatomic, assign) CGFloat returnsYPositionPercentage

Declared In

CWKConfiguration.h

  returnsBackgroundShadingImage

An optional image to use in shading either inside or outside the returns calculator lines.

@property (nonatomic, strong) UIImage *returnsBackgroundShadingImage

Declared In

CWKConfiguration.h

  returnsBackgroundShadingColor

  • An optional color to use in shading either inside or outside the returns calculator lines. Note that if @returnsBackgroundShadingImage is set, this will be ignored.
@property (nonatomic, strong) UIColor *returnsBackgroundShadingColor

Declared In

CWKConfiguration.h

Fibonacci Retracement Settings

  showTrendLineOnFibonacciRetracement

  • If YES, a trendline will be drawn to the corners of the Fibonacci retracement area.
  • The trendline will derive all of it’s properties from the normal trendline settings.
  • Default is YES
@property (nonatomic, assign) BOOL showTrendLineOnFibonacciRetracement

Declared In

CWKConfiguration.h

  showBoundingBoxOnFibonacciRetracement

  • If YES, a border will be shown around the Fibonacci retracement area.
  • Default is NO
@property (nonatomic, assign) BOOL showBoundingBoxOnFibonacciRetracement

Declared In

CWKConfiguration.h

  colorFibonacciBoundingBox

The color of the fibonacci bounding box.

@property (nonatomic, strong) UIColor *colorFibonacciBoundingBox

Declared In

CWKConfiguration.h

  widthFibonacciBoundingBoxLine

The width of the line used to draw the bounding box around the Fibonacci retracements if enabled.

@property (nonatomic, strong) NSNumber *widthFibonacciBoundingBoxLine

Declared In

CWKConfiguration.h

  showPercentagesOnFibonacciRetracement

  • If YES, the Fibonacci retracement lines will display a label with their current values.
  • Default is YES
@property (nonatomic, assign) BOOL showPercentagesOnFibonacciRetracement

Declared In

CWKConfiguration.h

  showEndPercentagesOnFibonacciRetracement

  • If YES, the Fibonacci retracement lines will display a label for 0% and 100% (start and end).
  • Default is YES
@property (nonatomic, assign) BOOL showEndPercentagesOnFibonacciRetracement

Declared In

CWKConfiguration.h

  showPercentagesAsDecimalsOnFibonacciRetracement

  • If YES, the Fibonacci retracement labels will be shown as decimals instead of percentages (ex: 0.618 instead of 61.8%).
  • Default is NO
@property (nonatomic, assign) BOOL showPercentagesAsDecimalsOnFibonacciRetracement

Declared In

CWKConfiguration.h

  showYAxisValuesOnFibonacciRetracement

  • If YES, the Y-Axis values will be shown on the Fibonacci retracement labels
  • Default is YES
@property (nonatomic, assign) BOOL showYAxisValuesOnFibonacciRetracement

Declared In

CWKConfiguration.h

  fibonacciRetracementInfiniteLength

  • If YES, the Fibonacci Retracement will extend outward infinitely from the start point.
  • Default is YES
@property (nonatomic, assign) BOOL fibonacciRetracementInfiniteLength

Declared In

CWKConfiguration.h

  fontFibonacciPercentLabels

The font of the percentage text if shown. Default is systemFontOfSize:12.0

@property (nonatomic, strong) UIFont *fontFibonacciPercentLabels

Declared In

CWKConfiguration.h

  colorFibonacciStartLabel

The color of the start percentage label text. Default is #7C8080

@property (nonatomic, strong) UIColor *colorFibonacciStartLabel

Declared In

CWKConfiguration.h

  colorFibonacciFirstLabel

The color of the first percentage label text. Default is #CF2E20

@property (nonatomic, strong) UIColor *colorFibonacciFirstLabel

Declared In

CWKConfiguration.h

  colorFibonacciSecondLabel

The color of the second percentage label text. Default is #76AC2B

@property (nonatomic, strong) UIColor *colorFibonacciSecondLabel

Declared In

CWKConfiguration.h

  colorFibonacciThirdLabel

The color of the third percentage label text. Default is #1FCB32

@property (nonatomic, strong) UIColor *colorFibonacciThirdLabel

Declared In

CWKConfiguration.h

  colorFibonacciFourthLabel

The color of the fourth percentage label text. Default is #389B64

@property (nonatomic, strong) UIColor *colorFibonacciFourthLabel

Declared In

CWKConfiguration.h

  colorFibonacciEndLabel

The color of the end percentage label text. Default is #6D6B6B

@property (nonatomic, strong) UIColor *colorFibonacciEndLabel

Declared In

CWKConfiguration.h

  colorFibonacciStartLine

The color of the Fibonacci retracement line at the beginning. Default is #CCCCCC77

@property (nonatomic, strong) UIColor *colorFibonacciStartLine

Declared In

CWKConfiguration.h

  colorFibonacciFirstLine

The color of the first Fibonacci retracement line. Default is #CCCCCC77

@property (nonatomic, strong) UIColor *colorFibonacciFirstLine

Declared In

CWKConfiguration.h

  colorFibonacciSecondLine

The color of the second Fibonacci retracement line. Default is #CCCCCC77

@property (nonatomic, strong) UIColor *colorFibonacciSecondLine

Declared In

CWKConfiguration.h

  colorFibonacciThirdLine

The color of the third Fibonacci retracement line. Default is #CCCCCC77

@property (nonatomic, strong) UIColor *colorFibonacciThirdLine

Declared In

CWKConfiguration.h

  colorFibonacciFourthLine

The color of the fourth Fibonacci retracement line. Default is #CCCCCC77

@property (nonatomic, strong) UIColor *colorFibonacciFourthLine

Declared In

CWKConfiguration.h

  colorFibonacciEndLine

The color of the Fibonacci retracement line at the end. Default is #CCCCCC77

@property (nonatomic, strong) UIColor *colorFibonacciEndLine

Declared In

CWKConfiguration.h

  colorFibonacciFirstZone

The color of the fill before the first Fibonacci retracement line. Default is #A92B2155

@property (nonatomic, strong) UIColor *colorFibonacciFirstZone

Declared In

CWKConfiguration.h

  colorFibonacciSecondZone

The color of the fill between the first and second Fibonacci retracement lines. Default is #699C1E55

@property (nonatomic, strong) UIColor *colorFibonacciSecondZone

Declared In

CWKConfiguration.h

  colorFibonacciThirdZone

The color of the fill between the second and third Fibonacci retracement lines. Default is #24B82955

@property (nonatomic, strong) UIColor *colorFibonacciThirdZone

Declared In

CWKConfiguration.h

  colorFibonacciFourthZone

The color of the fill between the third and fourth Fibonacci retracement lines. Default is #378A6E55

@property (nonatomic, strong) UIColor *colorFibonacciFourthZone

Declared In

CWKConfiguration.h

  colorFibonacciFifthZone

The color of the fill after the fourth Fibonacci retracement lines. Default is #5a5a5a55

@property (nonatomic, strong) UIColor *colorFibonacciFifthZone

Declared In

CWKConfiguration.h

  percentFibonacciFirstLine

The percentage inside the user drawn box that the first Fibonacci retracement line will be placed. Defaults to .236

@property (nonatomic, strong) NSNumber *percentFibonacciFirstLine

Declared In

CWKConfiguration.h

  percentFibonacciSecondLine

The percentage inside the user drawn box that the second Fibonacci retracement line will be placed. Defaults to .382

@property (nonatomic, strong) NSNumber *percentFibonacciSecondLine

Declared In

CWKConfiguration.h

  percentFibonacciThirdLine

The percentage inside the user drawn box that the third Fibonacci retracement line will be placed. Defaults to .5

@property (nonatomic, strong) NSNumber *percentFibonacciThirdLine

Declared In

CWKConfiguration.h

  percentFibonacciFourthLine

The percentage inside the user drawn box that the fourth Fibonacci retracement line will be placed. Defaults to .618

@property (nonatomic, strong) NSNumber *percentFibonacciFourthLine

Declared In

CWKConfiguration.h

  widthFibonacciLines

The width that will be used for all Fibonacci retracement lines. Default is 1

@property (nonatomic, strong) NSNumber *widthFibonacciLines

Declared In

CWKConfiguration.h

Fibonacci Circle / Arc Settings

  showTrendLineOnFibonacciArc

  • If YES, a trendline will be drawn to the corners of the Fibonacci Arc/Circle area.
  • The trendline will derive all of it’s properties from the normal trendline settings.
  • Default is YES
@property (nonatomic, assign) BOOL showTrendLineOnFibonacciArc

Declared In

CWKConfiguration.h

  showPercentagesOnFibonacciArc

  • If YES, the Fibonacci Arc/Circle lines will display a label with their current values.
  • Default is YES
@property (nonatomic, assign) BOOL showPercentagesOnFibonacciArc

Declared In

CWKConfiguration.h

  showPercentagesAsDecimalsOnFibonacciArc

  • If YES, the Fibonacci Arc/Circle labels will be shown as decimals instead of percentages (ex: 0.618 instead of 61.8%).
  • Default is NO
@property (nonatomic, assign) BOOL showPercentagesAsDecimalsOnFibonacciArc

Declared In

CWKConfiguration.h

  fontFibonacciArcPercentLabels

The font of the percentage text if shown. Default is systemFontOfSize:12.0

@property (nonatomic, strong) UIFont *fontFibonacciArcPercentLabels

Declared In

CWKConfiguration.h

  colorFibonacciArcFirstLabel

The color of the first percentage label text. Default is #F10E1B

@property (nonatomic, strong) UIColor *colorFibonacciArcFirstLabel

Declared In

CWKConfiguration.h

  colorFibonacciArcSecondLabel

The color of the second percentage label text. Default is #E7A82B

@property (nonatomic, strong) UIColor *colorFibonacciArcSecondLabel

Declared In

CWKConfiguration.h

  colorFibonacciArcThirdLabel

The color of the third percentage label text. Default is #2DA732

@property (nonatomic, strong) UIColor *colorFibonacciArcThirdLabel

Declared In

CWKConfiguration.h

  colorFibonacciArcFourthLabel

The color of the fourth percentage label text. Default is #3A886E

@property (nonatomic, strong) UIColor *colorFibonacciArcFourthLabel

Declared In

CWKConfiguration.h

  colorFibonacciArcEndLabel

The color of the end percentage label text. Default is #777777

@property (nonatomic, strong) UIColor *colorFibonacciArcEndLabel

Declared In

CWKConfiguration.h

  colorFibonacciArcFirstLine

The color of the first Fibonacci Arc/Circle line. Default is #F10E1B

@property (nonatomic, strong) UIColor *colorFibonacciArcFirstLine

Declared In

CWKConfiguration.h

  colorFibonacciArcSecondLine

The color of the second Fibonacci Arc/Circle line. Default is #E7A82B

@property (nonatomic, strong) UIColor *colorFibonacciArcSecondLine

Declared In

CWKConfiguration.h

  colorFibonacciArcThirdLine

The color of the third Fibonacci Arc/Circle line. Default is #2DA732

@property (nonatomic, strong) UIColor *colorFibonacciArcThirdLine

Declared In

CWKConfiguration.h

  colorFibonacciArcFourthLine

The color of the fourth Fibonacci Arc/Circle line. Default is #3A886E

@property (nonatomic, strong) UIColor *colorFibonacciArcFourthLine

Declared In

CWKConfiguration.h

  colorFibonacciArcEndLine

The color of the Fibonacci Arc/Circle line at the end. Default is #666666

@property (nonatomic, strong) UIColor *colorFibonacciArcEndLine

Declared In

CWKConfiguration.h

  colorFibonacciArcFirstZone

The color of the fill before the first Fibonacci Arc/Circle line. Default is #A92B2155

@property (nonatomic, strong) UIColor *colorFibonacciArcFirstZone

Declared In

CWKConfiguration.h

  colorFibonacciArcSecondZone

The color of the fill between the first and second Fibonacci Arc/Circle lines. Default is #699C1E55

@property (nonatomic, strong) UIColor *colorFibonacciArcSecondZone

Declared In

CWKConfiguration.h

  colorFibonacciArcThirdZone

The color of the fill between the second and third Fibonacci Arc/Circle lines. Default is #24B82955

@property (nonatomic, strong) UIColor *colorFibonacciArcThirdZone

Declared In

CWKConfiguration.h

  colorFibonacciArcFourthZone

The color of the fill between the third and fourth Fibonacci Arc/Circle lines. Default is #378A6E55

@property (nonatomic, strong) UIColor *colorFibonacciArcFourthZone

Declared In

CWKConfiguration.h

  colorFibonacciArcFifthZone

The color of the fill after the fourth Fibonacci Arc/Circle lines. Default is #5a5a5a55

@property (nonatomic, strong) UIColor *colorFibonacciArcFifthZone

Declared In

CWKConfiguration.h

Ellipse Settings

  colorEllipseLine

The color of the ellipse line. Default is #FEA428

@property (nonatomic, strong) UIColor *colorEllipseLine

Declared In

CWKConfiguration.h

  widthEllipseLine

The width of the ellipse line. Default is 2

@property (nonatomic, strong) NSNumber *widthEllipseLine

Declared In

CWKConfiguration.h

Rectangle Settings

  colorRectangleLine

The color of the rectangle border line Default is #97040B

@property (nonatomic, strong) UIColor *colorRectangleLine

Declared In

CWKConfiguration.h

  colorRectangleFill

The fill color of the rectangle Default is #FFD70008

@property (nonatomic, strong) UIColor *colorRectangleFill

Declared In

CWKConfiguration.h

  widthRectangleLine

The width of the rectangle border line Default is 2

@property (nonatomic, strong) NSNumber *widthRectangleLine

Declared In

CWKConfiguration.h

Upper Chart Axes

  showUpperXAxis

When enabled, the upper X axis area is shown. Defaults to YES

@property (nonatomic, assign) BOOL showUpperXAxis

Declared In

CWKConfiguration.h

  showUpperYAxis

When enabled, the upper Y axis area is shown. Defaults to YES

@property (nonatomic, assign) BOOL showUpperYAxis

Declared In

CWKConfiguration.h

  colorXAxisUpperBackground

Upper chart X-Axis background color

@property (nonatomic, strong) UIColor *colorXAxisUpperBackground

Declared In

CWKConfiguration.h

  colorYAxisUpperBackground

Upper chart Y-Axis background color

@property (nonatomic, strong) UIColor *colorYAxisUpperBackground

Declared In

CWKConfiguration.h

  heightXAxisUpper

Upper chart X-Axis height. Default is nil which lets the axis adjust height automatically.

@property (nullable, nonatomic, strong) NSNumber *heightXAxisUpper

Declared In

CWKConfiguration.h

  widthYAxisUpper

Upper chart Y-Axis width

@property (nonatomic, strong) NSNumber *widthYAxisUpper

Declared In

CWKConfiguration.h

  colorXAxisUpperLine

Color of the line separating the upper chart’s X-Axis from the chart area.

@property (nonatomic, strong) UIColor *colorXAxisUpperLine

Declared In

CWKConfiguration.h

  colorYAxisUpperLine

Color of the line separating the upper chart’s Y-Axis from the chart area.

@property (nonatomic, strong) UIColor *colorYAxisUpperLine

Declared In

CWKConfiguration.h

  colorUpperMinorTickStyleLabel

Color of the upper chart minor tick labels.

@property (nonatomic, strong) UIColor *colorUpperMinorTickStyleLabel

Declared In

CWKConfiguration.h

  colorUpperMinorTickStyleLine

Color of the upper chart minor tick lines.

@property (nonatomic, strong) UIColor *colorUpperMinorTickStyleLine

Declared In

CWKConfiguration.h

  colorUpperMajorTickStyleLabel

Color of the upper chart major tick labels.

@property (nonatomic, strong) UIColor *colorUpperMajorTickStyleLabel

Declared In

CWKConfiguration.h

  colorUpperMajorTickStyleLine

Color of the upper chart major tick lines.

@property (nonatomic, strong) UIColor *colorUpperMajorTickStyleLine

Declared In

CWKConfiguration.h

  colorUpperMajorGridStyleLine

Color of the upper chart grid lines that go across the chart area.

@property (nonatomic, strong) UIColor *colorUpperMajorGridStyleLine

Declared In

CWKConfiguration.h

  lengthXAxisUpperTickLine

lengthXAxisUpperTickLine – Default = 5

@property (nonatomic, strong) NSNumber *lengthXAxisUpperTickLine

Declared In

CWKConfiguration.h

  widthXAxisUpperTickLine

widthXAxisUpperTickLine – Default = 1

@property (nonatomic, strong) NSNumber *widthXAxisUpperTickLine

Declared In

CWKConfiguration.h

  lengthYAxisUpperTickLine

lengthYAxisUpperTickLine – Default = 0

@property (nonatomic, strong) NSNumber *lengthYAxisUpperTickLine

Declared In

CWKConfiguration.h

  widthYAxisUpperTickLine

widthYAxisUpperTickLine – Default = 0

@property (nonatomic, strong) NSNumber *widthYAxisUpperTickLine

Declared In

CWKConfiguration.h

  lengthXAxisLowerTickLine

lengthXAxisLowerTickLine – Default = 5

@property (nonatomic, strong) NSNumber *lengthXAxisLowerTickLine

Declared In

CWKConfiguration.h

  widthXAxisLowerTickLine

widthXAxisLowerTickLine – Default = 1

@property (nonatomic, strong) NSNumber *widthXAxisLowerTickLine

Declared In

CWKConfiguration.h

  lengthYAxisLowerTickLine

lengthYAxisLowerTickLine – Default = 0

@property (nonatomic, strong) NSNumber *lengthYAxisLowerTickLine

Declared In

CWKConfiguration.h

  widthYAxisLowerTickLine

widthYAxisLowerTickLine – Default = 0

@property (nonatomic, strong) NSNumber *widthYAxisLowerTickLine

Declared In

CWKConfiguration.h

  fontUpperXAxisLabel

Font of the upper chart X-Axis

@property (nonatomic, strong) UIFont *fontUpperXAxisLabel

Declared In

CWKConfiguration.h

  fontUpperYAxisLabel

Font of the upper chart Y-Axis

@property (nonatomic, strong) UIFont *fontUpperYAxisLabel

Declared In

CWKConfiguration.h

  widthXAxisUpperLine

Width of the line separating the upper chart’s X-Axis from the chart area. Set to zero to hide the line.

@property (nonatomic, strong) NSNumber *widthXAxisUpperLine

Declared In

CWKConfiguration.h

  widthYAxisUpperLine

Width of the line separating the upper chart’s Y-Axis from the chart area. Set to zero to hide the line.

@property (nonatomic, strong) NSNumber *widthYAxisUpperLine

Declared In

CWKConfiguration.h

  showXAxisMajorGridLinesUpper

Show major gridlines on the upper chart’s X-Axis. Defaults to NO.

@property (nonatomic, assign) BOOL showXAxisMajorGridLinesUpper

Declared In

CWKConfiguration.h

  showYAxisMajorGridLinesUpper

Show major gridlines on the upper chart’s Y-Axis. Defaults to YES.

@property (nonatomic, assign) BOOL showYAxisMajorGridLinesUpper

Declared In

CWKConfiguration.h

  majorGridLinesDashedUpper

Major gridlines on upper chart use dashed style.

@property (nonatomic, assign) BOOL majorGridLinesDashedUpper

Declared In

CWKConfiguration.h

  widthMajorGridLinesDashedUpper

The width of the dashes and spaces in the gridline when using dashed style. Default is 3

@property (nonatomic, strong) NSNumber *widthMajorGridLinesDashedUpper

Declared In

CWKConfiguration.h

  enableUpperXAxisMinorTicks

Enable minor ticks on upper chart X-Axis.

@property (nonatomic, assign) BOOL enableUpperXAxisMinorTicks

Declared In

CWKConfiguration.h

  enableUpperYAxisMinorTicks

Enable minor ticks on upper chart Y-Axis.

@property (nonatomic, assign) BOOL enableUpperYAxisMinorTicks

Declared In

CWKConfiguration.h

  enableUpperXAxisMajorTicks

Enable major ticks on upper chart X-Axis.

@property (nonatomic, assign) BOOL enableUpperXAxisMajorTicks

Declared In

CWKConfiguration.h

  enableUpperYAxisMajorTicks

Enable major ticks on upper chart Y-Axis.

@property (nonatomic, assign) BOOL enableUpperYAxisMajorTicks

Declared In

CWKConfiguration.h

  upperYAxisTickLabelAlignment

Customize the alignment of the tick labels for the upper Y axis. Defaults to NSTextAlignmentLeft.

@property (nonatomic, assign) NSTextAlignment upperYAxisTickLabelAlignment

Declared In

CWKConfiguration.h

  upperYAxisTickLabelLeftInset

Inset added to the left edge of the upper chart Y-Axis label
* Default = 4

@property (nonatomic, assign) CGFloat upperYAxisTickLabelLeftInset

Declared In

CWKConfiguration.h

  upperYAxisTickLabelRightInset

Inset added to the right edge of the upper chart Y-Axis label
* Default = 4

@property (nonatomic, assign) CGFloat upperYAxisTickLabelRightInset

Declared In

CWKConfiguration.h

  positionUpperYAxisOnRight

For setting the location of the Y axis. If YES, it is on the right (the default)

@property (nonatomic, assign) BOOL positionUpperYAxisOnRight

Declared In

CWKConfiguration.h

  upperXAxisLeftDataInsetPercent

Insets the leftmost data by a percentage of the data width. Defaults to .005 (.5%)

@property (nonatomic, assign) double upperXAxisLeftDataInsetPercent

Declared In

CWKConfiguration.h

  upperXAxisRightDataInsetPercent

Insets the rightmost data by a percentage of the data width. Defaults to .005 (.5%)

@property (nonatomic, assign) double upperXAxisRightDataInsetPercent

Declared In

CWKConfiguration.h

  upperXAxisTickClippingEnabled

When enabled, partial tick marks are omitted. Defaults to YES

@property (nonatomic, assign) BOOL upperXAxisTickClippingEnabled

Declared In

CWKConfiguration.h

  upperXAxisTickClippingRemovesTickLine

When enabled, the tick line is removed for clipped tick marks. Defaults to YES

@property (nonatomic, assign) BOOL upperXAxisTickClippingRemovesTickLine

Declared In

CWKConfiguration.h

  upperYAxisTickClippingEnabled

When enabled, partial tick marks are omitted. Defaults to YES

@property (nonatomic, assign) BOOL upperYAxisTickClippingEnabled

Declared In

CWKConfiguration.h

  upperYAxisTickClippingRemovesTickLine

When enabled, the tick line is removed for clipped tick marks. Defaults to YES

@property (nonatomic, assign) BOOL upperYAxisTickClippingRemovesTickLine

Declared In

CWKConfiguration.h

Lower Chart Axes

  showLowerXAxis

When enabled, the lower X axis area is shown. Defaults to NO

@property (nonatomic, assign) BOOL showLowerXAxis

Declared In

CWKConfiguration.h

  showLowerYAxis

When enabled, the lower Y axis area is shown. Defaults to YES

@property (nonatomic, assign) BOOL showLowerYAxis

Declared In

CWKConfiguration.h

  colorXAxisLowerBackground

colorXAxisLowerBackground

@property (nonatomic, strong) UIColor *colorXAxisLowerBackground

Declared In

CWKConfiguration.h

  colorYAxisLowerBackground

Lower chart Y-Axis background color

@property (nonatomic, strong) UIColor *colorYAxisLowerBackground

Declared In

CWKConfiguration.h

  heightXAxisLower

Lower chart X-Axis height. Default is nil which lets the axis adjust height automatically.

@property (nullable, nonatomic, strong) NSNumber *heightXAxisLower

Declared In

CWKConfiguration.h

  widthYAxisLower

Lower chart Y-Axis width.

@property (nonatomic, strong) NSNumber *widthYAxisLower

Declared In

CWKConfiguration.h

  colorXAxisLowerLine

Color of the line separating the lower chart’s X-Axis from the chart area.

@property (nonatomic, strong) UIColor *colorXAxisLowerLine

Declared In

CWKConfiguration.h

  colorYAxisLowerLine

Color of the line separating the lower chart’s Y-Axis from the chart area.

@property (nonatomic, strong) UIColor *colorYAxisLowerLine

Declared In

CWKConfiguration.h

  colorLowerMinorTickStyleLabel

Color of the lower chart minor tick labels.

@property (nonatomic, strong) UIColor *colorLowerMinorTickStyleLabel

Declared In

CWKConfiguration.h

  colorLowerMinorTickStyleLine

Color of the lower chart minor tick lines.

@property (nonatomic, strong) UIColor *colorLowerMinorTickStyleLine

Declared In

CWKConfiguration.h

  colorLowerMajorTickStyleLabel

Color of the lower chart major tick labels.

@property (nonatomic, strong) UIColor *colorLowerMajorTickStyleLabel

Declared In

CWKConfiguration.h

  colorLowerMajorTickStyleLine

Color of the lower chart major tick lines.

@property (nonatomic, strong) UIColor *colorLowerMajorTickStyleLine

Declared In

CWKConfiguration.h

  colorLowerMajorGridStyleLine

Color of the lower chart grid lines that go across the chart area.

@property (nonatomic, strong) UIColor *colorLowerMajorGridStyleLine

Declared In

CWKConfiguration.h

  fontLowerXAxisLabel

Font of the lower chart X-Axis

@property (nonatomic, strong) UIFont *fontLowerXAxisLabel

Declared In

CWKConfiguration.h

  fontLowerYAxisLabel

Font of the lower chart Y-Axis

@property (nonatomic, strong) UIFont *fontLowerYAxisLabel

Declared In

CWKConfiguration.h

  widthXAxisLowerLine

Width of the line separating the lower chart’s X-Axis from the chart area. Set to zero to hide the line.

@property (nonatomic, strong) NSNumber *widthXAxisLowerLine

Declared In

CWKConfiguration.h

  widthYAxisLowerLine

Width of the line separating the lower chart’s Y-Axis from the chart area. Set to zero to hide the line.

@property (nonatomic, strong) NSNumber *widthYAxisLowerLine

Declared In

CWKConfiguration.h

  showXAxisMajorGridLinesLower

Show major gridlines on the lower chart’s X-Axis. Defaults to NO.

@property (nonatomic, assign) BOOL showXAxisMajorGridLinesLower

Declared In

CWKConfiguration.h

  showYAxisMajorGridLinesLower

Show major gridlines on the lower chart’s Y-Axis. Defaults to YES.

@property (nonatomic, assign) BOOL showYAxisMajorGridLinesLower

Declared In

CWKConfiguration.h

  majorGridLinesDashedLower

Major gridlines on lower chart use dashed style.

@property (nonatomic, assign) BOOL majorGridLinesDashedLower

Declared In

CWKConfiguration.h

  widthMajorGridLinesDashedLower

The width of the dashes and spaces in the gridline when using dashed style. Default is 3
<

@property (nonatomic, strong) NSNumber *widthMajorGridLinesDashedLower

Declared In

CWKConfiguration.h

  enableLowerXAxisMinorTicks

Enable minor ticks on lower chart X-Axis.

@property (nonatomic, assign) BOOL enableLowerXAxisMinorTicks

Declared In

CWKConfiguration.h

  enableLowerXAxisMajorTicks

Enable major ticks on lower chart X-Axis.

@property (nonatomic, assign) BOOL enableLowerXAxisMajorTicks

Declared In

CWKConfiguration.h

  enableLowerYAxisMinorTicks

Enable minor ticks on lower chart Y-Axis.

@property (nonatomic, assign) BOOL enableLowerYAxisMinorTicks

Declared In

CWKConfiguration.h

  lowerYAxisTickLabelAlignment

Customize the alignment of the tick labels for the lower Y axis. Defaults to NSTextAlignmentLeft.

@property (nonatomic, assign) NSTextAlignment lowerYAxisTickLabelAlignment

Declared In

CWKConfiguration.h

  lowerYAxisTickLabelLeftInset

Inset added to the left edge of the lower chart Y-Axis label
* Default = 4

@property (nonatomic, assign) CGFloat lowerYAxisTickLabelLeftInset

Declared In

CWKConfiguration.h

  lowerYAxisTickLabelRightInset

Inset added to the right edge of the lower chart Y-Axis label
* Default = 4

@property (nonatomic, assign) CGFloat lowerYAxisTickLabelRightInset

Declared In

CWKConfiguration.h

  lowerXAxisLeftDataInsetPercent

lowerXAxisLeftDataInsetPercent - Insets the leftmost data by a percentage of the data width. Defaults to .005 (.5%)

@property (nonatomic, assign) double lowerXAxisLeftDataInsetPercent

Declared In

CWKConfiguration.h

  lowerXAxisRightDataInsetPercent

lowerXAxisRightDataInsetPercent - Insets the rightmost data by a percentage of the data width. Defaults to .005 (.5%)

@property (nonatomic, assign) double lowerXAxisRightDataInsetPercent

Declared In

CWKConfiguration.h

  lowerXAxisTickClippingEnabled

When enabled, partial tick marks are omitted. Defaults to YES

@property (nonatomic, assign) BOOL lowerXAxisTickClippingEnabled

Declared In

CWKConfiguration.h

  lowerXAxisTickClippingRemovesTickLine

When enabled, the tick line is removed for clipped tick marks. Defaults to YES

@property (nonatomic, assign) BOOL lowerXAxisTickClippingRemovesTickLine

Declared In

CWKConfiguration.h

  lowerYAxisTickClippingEnabled

lowerYAxisTickClippingEnabled - when enabled, partial tick marks are omitted. Defaults to YES

@property (nonatomic, assign) BOOL lowerYAxisTickClippingEnabled

Declared In

CWKConfiguration.h

  lowerYAxisTickClippingRemovesTickLine

lowerYAxisTickClippingRemovesTickLine - when enabled, the tick line is removed for clipped tick marks. Defaults to YES

@property (nonatomic, assign) BOOL lowerYAxisTickClippingRemovesTickLine

Declared In

CWKConfiguration.h

Crosshair View Colors

  colorCrosshair

The color of the crosshair lines.

@property (nonatomic, strong) UIColor *colorCrosshair

Declared In

CWKConfiguration.h

  colorCrosshairViewBackground

The background color of the crosshair information view.

@property (nonatomic, strong) UIColor *colorCrosshairViewBackground

Declared In

CWKConfiguration.h

  colorCrosshairViewBorder

The color of the border of the crosshair information view.

@property (nonatomic, strong) UIColor *colorCrosshairViewBorder

Declared In

CWKConfiguration.h

  colorCrosshairViewText

The text color in the crosshair information view.

@property (nonatomic, strong) UIColor *colorCrosshairViewText

Declared In

CWKConfiguration.h

  fontCrosshairView

The text font in the crosshair information view.

@property (nonatomic, strong) UIFont *fontCrosshairView

Declared In

CWKConfiguration.h

  cornerCrosshairView

The corner radius of the crosshair information view.

@property (nonatomic, assign) NSInteger cornerCrosshairView

Declared In

CWKConfiguration.h

  stringUpperChartNoDataMessage

Text For upper indicator no data label

@property (nonatomic, strong) NSString *stringUpperChartNoDataMessage

Declared In

CWKConfiguration.h

  stringLowerChartNoDataMessage

Text For lower indicator no data label

@property (nonatomic, strong) NSString *stringLowerChartNoDataMessage

Declared In

CWKConfiguration.h

  fontUpperChartNoData

Font For upper chart no data label

@property (nonatomic, strong) UIFont *fontUpperChartNoData

Declared In

CWKConfiguration.h

  fontLowerChartNoData

Font For lower indicator no data label

@property (nonatomic, strong) UIFont *fontLowerChartNoData

Declared In

CWKConfiguration.h

  colorUpperChartNoData

text color For upper indicator no data label

@property (nonatomic, strong) UIColor *colorUpperChartNoData

Declared In

CWKConfiguration.h

  colorUpperChartNoDataBackground

background color For upper indicator no data label Defaults to clear

@property (nonatomic, strong) UIColor *colorUpperChartNoDataBackground

Declared In

CWKConfiguration.h

  colorLowerChartNoData

text color For lower indicator no data label

@property (nonatomic, strong) UIColor *colorLowerChartNoData

Declared In

CWKConfiguration.h

  colorLowerChartNoDataBackground

background color For lower indicator no data label Defaults to clear

@property (nonatomic, strong) UIColor *colorLowerChartNoDataBackground

Declared In

CWKConfiguration.h

Stock Price Colors and Sizing

  colorStyleCandlestickRising

The color of rising candlesticks.

@property (nonatomic, strong) UIColor *colorStyleCandlestickRising

Declared In

CWKConfiguration.h

  colorStyleCandlestickFalling

The color of falling candlesticks.

@property (nonatomic, strong) UIColor *colorStyleCandlestickFalling

Declared In

CWKConfiguration.h

  colorStyleCandlestickNoChange

The color of unchanged candlesticks.

@property (nonatomic, strong) UIColor *colorStyleCandlestickNoChange

Declared In

CWKConfiguration.h

  widthStyleCandlestickOutline

The width of the candlestick outline (Default 1.5f)

@property (nonatomic, strong) NSNumber *widthStyleCandlestickOutline

Declared In

CWKConfiguration.h

  widthStyleCandlestickStick

The width of the candlestick stick (Default 1.5f)

@property (nonatomic, strong) NSNumber *widthStyleCandlestickStick

Declared In

CWKConfiguration.h

  colorStyleBar

The color bar price charts.

@property (nonatomic, strong) UIColor *colorStyleBar

Declared In

CWKConfiguration.h

  colorStyleBarBelowZero

The bar color when the value is negative.

@property (nonatomic, strong) UIColor *colorStyleBarBelowZero

Declared In

CWKConfiguration.h

  colorStyleDot

The color dot price charts.

@property (nonatomic, strong) UIColor *colorStyleDot

Declared In

CWKConfiguration.h

  radiusDot

The radius of the dot (Default 5.f)

@property (nonatomic, strong) NSNumber *radiusDot

Declared In

CWKConfiguration.h

  colorStyleMountainLine

The color of the top edge of a mountain chart

@property (nonatomic, strong) UIColor *colorStyleMountainLine

Declared In

CWKConfiguration.h

  colorStyleMountainAreaFill

The fill color of mountain charts.

@property (nonatomic, strong) UIColor *colorStyleMountainAreaFill

Declared In

CWKConfiguration.h

  colorStyleMountainAreaFillTwo

The bottom fill color of mountain charts for gradient fill, used if mountainChartsUseGradient is YES.

@property (nonatomic, strong) UIColor *colorStyleMountainAreaFillTwo

Declared In

CWKConfiguration.h

  mountainChartsUseGradient

If YES mountain charts will use a gradient with the top fill color being colorStyleMountainAreaFill and the bottom fill color being colorStyleMountainAreaFillTwo

@property (nonatomic) BOOL mountainChartsUseGradient

Declared In

CWKConfiguration.h

  colorStyleLine

The color for line charts.

@property (nonatomic, strong) UIColor *colorStyleLine

Declared In

CWKConfiguration.h

  colorStyleOHLCRising

The OHLC color for a rising segment

@property (nonatomic, strong) UIColor *colorStyleOHLCRising

Declared In

CWKConfiguration.h

  colorStyleOHLCFalling

The OHLC color for a falling segment

@property (nonatomic, strong) UIColor *colorStyleOHLCFalling

Declared In

CWKConfiguration.h

  widthStyleOHLCArm

The of the OHLC arm (Default 3.0)

@property (nonatomic, strong) NSNumber *widthStyleOHLCArm

Declared In

CWKConfiguration.h

  widthStyleOHLCTrunk

The width of the OHLC trunk (Default 3.0)

@property (nonatomic, strong) NSNumber *widthStyleOHLCTrunk

Declared In

CWKConfiguration.h

Indicator Legend buttons

  upperIndicatorButtonStyle

The indicator button style. The default is CWKIndicatorButtonStyleColorLeft

@property (nonatomic, assign) CWKIndicatorButtonStyle upperIndicatorButtonStyle

Declared In

CWKConfiguration.h

  imageforUpperIndicatorButton

imageforIndicatorButton

@property (nullable, nonatomic, strong) UIImage *imageforUpperIndicatorButton

Declared In

CWKConfiguration.h

  imageforUpperIndicatorButtonHighlighted

imageforIndicatorButtonHighlighted

@property (nullable, nonatomic, strong) UIImage *imageforUpperIndicatorButtonHighlighted

Declared In

CWKConfiguration.h

  fontUpperIndicatorButton

fontIndicatorButton

@property (nonatomic, strong) UIFont *fontUpperIndicatorButton

Declared In

CWKConfiguration.h

  sizeForIndicatorButton

sizeForIndicatorButton

@property (nonatomic, assign) CGSize sizeForIndicatorButton

Declared In

CWKConfiguration.h

  marginForIndicatorButton

marginForIndicatorButton

@property (nonatomic, strong) NSNumber *marginForIndicatorButton

Declared In

CWKConfiguration.h

  colorUpperIndicatorButtonBackground

colorIndicatorButtonBackground

@property (nonatomic, strong) UIColor *colorUpperIndicatorButtonBackground

Declared In

CWKConfiguration.h

  colorUpperIndicatorButtonHighlightedBackground

colorIndicatorButtonHighlightedBackground

@property (nonatomic, strong) UIColor *colorUpperIndicatorButtonHighlightedBackground

Declared In

CWKConfiguration.h

  colorUpperIndicatorAddButtonText

colorIndicatorAddButtonText

@property (nonatomic, strong) UIColor *colorUpperIndicatorAddButtonText

Declared In

CWKConfiguration.h

  colorUpperIndicatorButtonText

colorIndicatorButtonText

@property (nonatomic, strong) UIColor *colorUpperIndicatorButtonText

Declared In

CWKConfiguration.h

  colorUpperIndicatorHighlightedAddButtonText

colorUpperIndicatorHighlightedAddButtonText

@property (nonatomic, strong) UIColor *colorUpperIndicatorHighlightedAddButtonText

Declared In

CWKConfiguration.h

  colorUpperIndicatorHighlightedButtonText

colorUpperIndicatorHighlightedButtonText

@property (nonatomic, strong) UIColor *colorUpperIndicatorHighlightedButtonText

Declared In

CWKConfiguration.h

  lowerIndicatorButtonStyle

The indicator button style. The default is CWKIndicatorButtonStyleColorLeft

@property (nonatomic, assign) CWKIndicatorButtonStyle lowerIndicatorButtonStyle

Declared In

CWKConfiguration.h

  imageforLowerIndicatorButton

imageforIndicatorButton

@property (nullable, nonatomic, strong) UIImage *imageforLowerIndicatorButton

Declared In

CWKConfiguration.h

  imageforLowerIndicatorButtonHighlighted

imageforIndicatorButtonHighlighted

@property (nullable, nonatomic, strong) UIImage *imageforLowerIndicatorButtonHighlighted

Declared In

CWKConfiguration.h

  fontLowerIndicatorButton

fontIndicatorButton

@property (nonatomic, strong) UIFont *fontLowerIndicatorButton

Declared In

CWKConfiguration.h

  colorLowerIndicatorButtonBackground

colorIndicatorButtonBackground

@property (nonatomic, strong) UIColor *colorLowerIndicatorButtonBackground

Declared In

CWKConfiguration.h

  colorLowerIndicatorButtonHighlightedBackground

colorIndicatorButtonHighlightedBackground

@property (nonatomic, strong) UIColor *colorLowerIndicatorButtonHighlightedBackground

Declared In

CWKConfiguration.h

  colorLowerIndicatorAddButtonText

colorIndicatorAddButtonText

@property (nonatomic, strong) UIColor *colorLowerIndicatorAddButtonText

Declared In

CWKConfiguration.h

  colorLowerIndicatorButtonText

colorIndicatorButtonText

@property (nonatomic, strong) UIColor *colorLowerIndicatorButtonText

Declared In

CWKConfiguration.h

  colorLowerIndicatorHighlightedAddButtonText

colorHighlightedIndicatorAddButtonText

@property (nonatomic, strong) UIColor *colorLowerIndicatorHighlightedAddButtonText

Declared In

CWKConfiguration.h

  colorLowerIndicatorHighlightedButtonText

colorHighlightedIndicatorButtonText

@property (nonatomic, strong) UIColor *colorLowerIndicatorHighlightedButtonText

Declared In

CWKConfiguration.h

  showLowerIndicatorParametersOnButton

if YES lower indicators buttons will display indicator parameters. Default is YES.

@property (nonatomic, assign) BOOL showLowerIndicatorParametersOnButton

Declared In

CWKConfiguration.h

  showUpperIndicatorParametersOnButton

if YES upper indicators buttons will display indicator parameters Default is YES.

@property (nonatomic, assign) BOOL showUpperIndicatorParametersOnButton

Declared In

CWKConfiguration.h

Upper Indicators

  widthOfLine

Line Thickness – widthOfLine will be the default line width used unless a more specific width has been set.

@property (nonatomic, strong) NSNumber *widthOfLine

Declared In

CWKConfiguration.h

  bollingerBandsFillEnabled

bollingerBandsFillEnabled

@property (nonatomic, assign) BOOL bollingerBandsFillEnabled

Declared In

CWKConfiguration.h

  colorBollingerFill

colorBollingerFill

@property (nonatomic, strong) UIColor *colorBollingerFill

Declared In

CWKConfiguration.h

  colorBollingerLines

colorBollingerLines

@property (nonatomic, strong) UIColor *colorBollingerLines

Declared In

CWKConfiguration.h

  widthBollingerLines

widthBollingerLines

@property (nonatomic, strong) NSNumber *widthBollingerLines

Declared In

CWKConfiguration.h

  colorEMAFirst

colorEMAFirst

@property (nonatomic, strong) UIColor *colorEMAFirst

Declared In

CWKConfiguration.h

  widthEMAFirst

widthEMAFirst

@property (nonatomic, strong) NSNumber *widthEMAFirst

Declared In

CWKConfiguration.h

  colorEMASecond

colorEMASecond

@property (nonatomic, strong) UIColor *colorEMASecond

Declared In

CWKConfiguration.h

  widthEMASecond

widthEMASecond

@property (nonatomic, strong) NSNumber *widthEMASecond

Declared In

CWKConfiguration.h

  colorEMAThird

colorEMAThird

@property (nonatomic, strong) UIColor *colorEMAThird

Declared In

CWKConfiguration.h

  widthEMAThird

widthEMAThird

@property (nonatomic, strong) NSNumber *widthEMAThird

Declared In

CWKConfiguration.h

  colorSMAFirst

colorSMAFirst

@property (nonatomic, strong) UIColor *colorSMAFirst

Declared In

CWKConfiguration.h

  widthSMAFirst

widthSMAFirst

@property (nonatomic, strong) NSNumber *widthSMAFirst

Declared In

CWKConfiguration.h

  colorSMASecond

colorSMASecond

@property (nonatomic, strong) UIColor *colorSMASecond

Declared In

CWKConfiguration.h

  widthSMASecond

widthSMASecond

@property (nonatomic, strong) NSNumber *widthSMASecond

Declared In

CWKConfiguration.h

  colorSMAThird

colorSMAThird

@property (nonatomic, strong) UIColor *colorSMAThird

Declared In

CWKConfiguration.h

  widthSMAThird

widthSMAThird

@property (nonatomic, strong) NSNumber *widthSMAThird

Declared In

CWKConfiguration.h

  colorTSF

colorTSF

@property (nonatomic, strong) UIColor *colorTSF

Declared In

CWKConfiguration.h

  widthTSF

widthTSF

@property (nonatomic, strong) NSNumber *widthTSF

Declared In

CWKConfiguration.h

  colorPriceChannel

colorPriceChannel

@property (nonatomic, strong) UIColor *colorPriceChannel

Declared In

CWKConfiguration.h

  widthPriceChannel

widthPriceChannel

@property (nonatomic, strong) NSNumber *widthPriceChannel

Declared In

CWKConfiguration.h

  colorMAE

colorMAE

@property (nonatomic, strong) UIColor *colorMAE

Declared In

CWKConfiguration.h

  widthMAE

widthMAE

@property (nonatomic, strong) NSNumber *widthMAE

Declared In

CWKConfiguration.h

  colorWMAFirst

colorWMAFirst

@property (nonatomic, strong) UIColor *colorWMAFirst

Declared In

CWKConfiguration.h

  widthWMAFirst

widthWMAFirst

@property (nonatomic, strong) NSNumber *widthWMAFirst

Declared In

CWKConfiguration.h

  colorWMASecond

colorWMASecond

@property (nonatomic, strong) UIColor *colorWMASecond

Declared In

CWKConfiguration.h

  widthWMASecond

widthWMASecond

@property (nonatomic, strong) NSNumber *widthWMASecond

Declared In

CWKConfiguration.h

  colorWMAThird

colorWMAThird

@property (nonatomic, strong) UIColor *colorWMAThird

Declared In

CWKConfiguration.h

  widthWMAThird

widthWMAThird

@property (nonatomic, strong) NSNumber *widthWMAThird

Declared In

CWKConfiguration.h

  colorPSAR

colorPSAR

@property (nonatomic, strong) UIColor *colorPSAR

Declared In

CWKConfiguration.h

  radiusPSAROuter

radiusPSAROuter

@property (nonatomic, strong) NSNumber *radiusPSAROuter

Declared In

CWKConfiguration.h

  radiusPSARInner

radiusPSARInner

@property (nonatomic, strong) NSNumber *radiusPSARInner

Declared In

CWKConfiguration.h

  colorLinearRegression

colorLinearRegression

@property (nonatomic, strong) UIColor *colorLinearRegression

Declared In

CWKConfiguration.h

  widthLinearRegression

widthLinearRegression

@property (nonatomic, strong) NSNumber *widthLinearRegression

Declared In

CWKConfiguration.h

  disableDynamicLinearRegression

disableDynamicLinearRegression

@property (nonatomic, assign) BOOL disableDynamicLinearRegression

Declared In

CWKConfiguration.h

  colorDividend

colorDividend

@property (nonatomic, strong) UIColor *colorDividend

Declared In

CWKConfiguration.h

  colorEarnings

colorEarnings

@property (nonatomic, strong) UIColor *colorEarnings

Declared In

CWKConfiguration.h

  colorSplits

colorSplits

@property (nonatomic, strong) UIColor *colorSplits

Declared In

CWKConfiguration.h

  fontDividend

fontDividend

@property (nonatomic, strong) UIFont *fontDividend

Declared In

CWKConfiguration.h

  fontEarnings

fontEarnings

@property (nonatomic, strong) UIFont *fontEarnings

Declared In

CWKConfiguration.h

  fontSplits

fontSplits

@property (nonatomic, strong) UIFont *fontSplits

Declared In

CWKConfiguration.h

  stringDividendAnnouncement

stringDividendAnnouncement

@property (nonatomic, strong) NSString *stringDividendAnnouncement

Declared In

CWKConfiguration.h

  stringEarningsAnnouncement

stringEarningsAnnouncement

@property (nonatomic, strong) NSString *stringEarningsAnnouncement

Declared In

CWKConfiguration.h

  stringSplitsAnnouncement

stringSplitsAnnouncement

@property (nonatomic, strong) NSString *stringSplitsAnnouncement

Declared In

CWKConfiguration.h

  colorDividendAnnotationBackground

colorDividendAnnotationBackground

@property (nonatomic, strong) UIColor *colorDividendAnnotationBackground

Declared In

CWKConfiguration.h

  colorEarningsAnnotationBackground

colorEarningsAnnotationBackground

@property (nonatomic, strong) UIColor *colorEarningsAnnotationBackground

Declared In

CWKConfiguration.h

  colorSplitsAnnotationBackground

colorSplitsAnnotationBackground

@property (nonatomic, strong) UIColor *colorSplitsAnnotationBackground

Declared In

CWKConfiguration.h

  colorDividendText

colorDividendText

@property (nonatomic, strong) UIColor *colorDividendText

Declared In

CWKConfiguration.h

  colorEarningsText

colorEarningsText

@property (nonatomic, strong) UIColor *colorEarningsText

Declared In

CWKConfiguration.h

  colorSplitsText

colorSplitsText

@property (nonatomic, strong) UIColor *colorSplitsText

Declared In

CWKConfiguration.h

  colorLatestPriceLine

colorLatestPriceLine

@property (nonatomic, strong) UIColor *colorLatestPriceLine

Declared In

CWKConfiguration.h

  widthLastestPriceLine

widthLatestPrice

@property (nonatomic, strong) NSNumber *widthLastestPriceLine

Declared In

CWKConfiguration.h

  colorLatestPriceArrowBorder

colorLatestPriceArrowBorder

@property (nonatomic, strong) UIColor *colorLatestPriceArrowBorder

Declared In

CWKConfiguration.h

  colorLatestPriceArrowText

colorLatestPriceArrowText

@property (nonatomic, strong) UIColor *colorLatestPriceArrowText

Declared In

CWKConfiguration.h

  colorLatestPriceArrowBackground

colorLatestPriceArrowBackground

@property (nonatomic, strong) UIColor *colorLatestPriceArrowBackground

Declared In

CWKConfiguration.h

  latestPriceTrackingEnabled

Defaults to YES. When enabled, the latest price arrow will update to reflect the rightmost data point

@property (nonatomic, assign) BOOL latestPriceTrackingEnabled

Declared In

CWKConfiguration.h

  colorVolumeByPriceDown

colorVolumeByPriceDown

@property (nonatomic, strong) UIColor *colorVolumeByPriceDown

Declared In

CWKConfiguration.h

  colorVolumeByPriceNoChange

colorVolumeByPriceNoChange

@property (nonatomic, strong) UIColor *colorVolumeByPriceNoChange

Declared In

CWKConfiguration.h

  colorVolumeByPriceUp

colorVolumeByPriceUp

@property (nonatomic, strong) UIColor *colorVolumeByPriceUp

Declared In

CWKConfiguration.h

  volumeByPriceBucketCount

Default is 12. The number of divisions for the volume by price indicator

@property (nonatomic, strong) NSNumber *volumeByPriceBucketCount

Declared In

CWKConfiguration.h

  volumeByPriceVerticalPadding

Default is 2, the space between each bar of the volume by price indicator

@property (nonatomic, strong) NSNumber *volumeByPriceVerticalPadding

Declared In

CWKConfiguration.h

  volumeByPriceWidthPercent

Default is .66, the space percent of the chart area the volume by price indicator should use.

@property (nonatomic, strong) NSNumber *volumeByPriceWidthPercent

Declared In

CWKConfiguration.h

  volumeByPriceUsesChartRange

Default is NO, if set to YES, the vertical range of the chart will be used instead of the range of close values.

@property (nonatomic, assign) BOOL volumeByPriceUsesChartRange

Declared In

CWKConfiguration.h

  volumeByPriceShowsUnchangedValues

Default is NO, if set to YES, unchanged volumes will appear in the horizontal volume by price bars.

@property (nonatomic, assign) BOOL volumeByPriceShowsUnchangedValues

Declared In

CWKConfiguration.h

  comparisonYValueLabelsEnabled

symbol comparison y-axis labels

@property (nonatomic, assign) BOOL comparisonYValueLabelsEnabled

Declared In

CWKConfiguration.h

  colorSymbolCompareZeroBar

symbol comparison baseline bar color

@property (nonatomic, strong) UIColor *colorSymbolCompareZeroBar

Declared In

CWKConfiguration.h

  widthSymbolCompareZeroBar

widthSymbolCompareZeroBar

@property (nonatomic, strong) NSNumber *widthSymbolCompareZeroBar

Declared In

CWKConfiguration.h

  colorSymbolCompare1

symbol comparison color 1

@property (nonatomic, strong) UIColor *colorSymbolCompare1

Declared In

CWKConfiguration.h

  colorSymbolCompare2

symbol comparison color 2

@property (nonatomic, strong) UIColor *colorSymbolCompare2

Declared In

CWKConfiguration.h

  colorSymbolCompare3

symbol comparison color 3

@property (nonatomic, strong) UIColor *colorSymbolCompare3

Declared In

CWKConfiguration.h

  colorSymbolCompare4

symbol comparison color 4

@property (nonatomic, strong) UIColor *colorSymbolCompare4

Declared In

CWKConfiguration.h

  colorSymbolCompare5

symbol comparison color 5

@property (nonatomic, strong) UIColor *colorSymbolCompare5

Declared In

CWKConfiguration.h

  colorSymbolCompare6

symbol comparison color 6

@property (nonatomic, strong) UIColor *colorSymbolCompare6

Declared In

CWKConfiguration.h

  colorSymbolCompare7

symbol comparison color 7

@property (nonatomic, strong) UIColor *colorSymbolCompare7

Declared In

CWKConfiguration.h

  colorSymbolCompare8

symbol comparison color 8

@property (nonatomic, strong) UIColor *colorSymbolCompare8

Declared In

CWKConfiguration.h

  colorSymbolCompare9

symbol comparison color 9

@property (nonatomic, strong) UIColor *colorSymbolCompare9

Declared In

CWKConfiguration.h

  colorSymbolCompare10

symbol comparison color 10

@property (nonatomic, strong) UIColor *colorSymbolCompare10

Declared In

CWKConfiguration.h

  colorSymbolCompare11

symbol comparison color 11

@property (nonatomic, strong) UIColor *colorSymbolCompare11

Declared In

CWKConfiguration.h

  colorSymbolCompare12

symbol comparison color 12

@property (nonatomic, strong) UIColor *colorSymbolCompare12

Declared In

CWKConfiguration.h

  widthSymbolCompare

widthSymbolCompare – if set, will be used instead of widthOfLine as default

@property (nonatomic, strong) NSNumber *widthSymbolCompare

Declared In

CWKConfiguration.h

  fontHighLowIndicator

high-low indicator font

@property (nonatomic, strong) UIFont *fontHighLowIndicator

Declared In

CWKConfiguration.h

  colorHighIndicator

high-low indicator high color

@property (nonatomic, strong) UIColor *colorHighIndicator

Declared In

CWKConfiguration.h

  colorLowIndicator

high-low indicator low color

@property (nonatomic, strong) UIColor *colorLowIndicator

Declared In

CWKConfiguration.h

Lower Indicators

  colorVolumeNoChange

colorVolumeNoChange

@property (nonatomic, strong) UIColor *colorVolumeNoChange

Declared In

CWKConfiguration.h

  colorVolumeUp

colorVolumeUp

@property (nonatomic, strong) UIColor *colorVolumeUp

Declared In

CWKConfiguration.h

  colorVolumeDown

colorVolumeDown

@property (nonatomic, strong) UIColor *colorVolumeDown

Declared In

CWKConfiguration.h

  colorUpDownUp

colorUpDownUp

@property (nonatomic, strong) UIColor *colorUpDownUp

Declared In

CWKConfiguration.h

  colorUpDownDown

colorUpDownDown

@property (nonatomic, strong) UIColor *colorUpDownDown

Declared In

CWKConfiguration.h

  colorMACD

colorMACD

@property (nonatomic, strong) UIColor *colorMACD

Declared In

CWKConfiguration.h

  colorMACDEMA

colorMACDEMA

@property (nonatomic, strong) UIColor *colorMACDEMA

Declared In

CWKConfiguration.h

  colorMACDDivergenceUp

colorMACDDivergenceUp

@property (nonatomic, strong) UIColor *colorMACDDivergenceUp

Declared In

CWKConfiguration.h

  colorMACDDivergenceDown

colorMACDDivergenceDown

@property (nonatomic, strong) UIColor *colorMACDDivergenceDown

Declared In

CWKConfiguration.h

  widthMACD

widthMACD

@property (nonatomic, strong) NSNumber *widthMACD

Declared In

CWKConfiguration.h

  colorRevenues

colorRevenues

@property (nonatomic, strong) UIColor *colorRevenues

Declared In

CWKConfiguration.h

  widthRevenues

widthRevenues

@property (nonatomic, strong) NSNumber *widthRevenues

Declared In

CWKConfiguration.h

  colorDividendYield

colorDividendYield

@property (nonatomic, strong) UIColor *colorDividendYield

Declared In

CWKConfiguration.h

  widthDividendYield

widthDividendYield

@property (nonatomic, strong) NSNumber *widthDividendYield

Declared In

CWKConfiguration.h

  colorRollingDividend

colorRollingDividend

@property (nonatomic, strong) UIColor *colorRollingDividend

Declared In

CWKConfiguration.h

  widthRollingDividend

widthRollingDividend

@property (nonatomic, strong) NSNumber *widthRollingDividend

Declared In

CWKConfiguration.h

  colorPERangeUpper

colorPERangeUpper

@property (nonatomic, strong) UIColor *colorPERangeUpper

Declared In

CWKConfiguration.h

  colorPERangeLower

colorPERangeLower

@property (nonatomic, strong) UIColor *colorPERangeLower

Declared In

CWKConfiguration.h

  widthPERange

widthPERange

@property (nonatomic, strong) NSNumber *widthPERange

Declared In

CWKConfiguration.h

  colorPERatio

colorPERatio

@property (nonatomic, strong) UIColor *colorPERatio

Declared In

CWKConfiguration.h

  widthPERatio

widthPERatio

@property (nonatomic, strong) NSNumber *widthPERatio

Declared In

CWKConfiguration.h

  colorRollingEPS

colorRollingEPS

@property (nonatomic, strong) UIColor *colorRollingEPS

Declared In

CWKConfiguration.h

  widthRollingEPS

widthRollingEPS

@property (nonatomic, strong) NSNumber *widthRollingEPS

Declared In

CWKConfiguration.h

  colorMassIndex

colorMassIndex

@property (nonatomic, strong) UIColor *colorMassIndex

Declared In

CWKConfiguration.h

  colorMassIndexSetup

colorMassIndexSetup

@property (nonatomic, strong) UIColor *colorMassIndexSetup

Declared In

CWKConfiguration.h

  colorMassIndexTrigger

colorMassIndexTrigger

@property (nonatomic, strong) UIColor *colorMassIndexTrigger

Declared In

CWKConfiguration.h

  widthMassIndex

widthMassIndex

@property (nonatomic, strong) NSNumber *widthMassIndex

Declared In

CWKConfiguration.h

  colorMomentum

colorMomentum

@property (nonatomic, strong) UIColor *colorMomentum

Declared In

CWKConfiguration.h

  colorMomentumBelowOneHundred

colorMomentumBelowOneHundred

@property (nonatomic, strong) UIColor *colorMomentumBelowOneHundred

Declared In

CWKConfiguration.h

  widthMomentum

widthMomentum

@property (nonatomic, strong) NSNumber *widthMomentum

Declared In

CWKConfiguration.h

  colorPriceRateOfChange

colorPriceRateOfChange

@property (nonatomic, strong) UIColor *colorPriceRateOfChange

Declared In

CWKConfiguration.h

  colorPriceRateOfChangeZeroLine

colorPriceRateOfChangeZeroLine

@property (nonatomic, strong) UIColor *colorPriceRateOfChangeZeroLine

Declared In

CWKConfiguration.h

  widthPriceRateOfChange

widthPriceRateOfChange

@property (nonatomic, strong) NSNumber *widthPriceRateOfChange

Declared In

CWKConfiguration.h

  colorChaikinsVolatility

colorChaikinsVolatility

@property (nonatomic, strong) UIColor *colorChaikinsVolatility

Declared In

CWKConfiguration.h

  colorChaikinsVolatilityZeroLine

colorChaikinsVolatilityZeroLine

@property (nonatomic, strong) UIColor *colorChaikinsVolatilityZeroLine

Declared In

CWKConfiguration.h

  widthChaikinsVolatility

widthChaikinsVolatility

@property (nonatomic, strong) NSNumber *widthChaikinsVolatility

Declared In

CWKConfiguration.h

  colorRelativeStrengthIndex

colorRelativeStrengthIndex

@property (nonatomic, strong) UIColor *colorRelativeStrengthIndex

Declared In

CWKConfiguration.h

  colorRelativeStrengthIndexZeroLine

colorRelativeStrengthIndexZeroLine

@property (nonatomic, strong) UIColor *colorRelativeStrengthIndexZeroLine

Declared In

CWKConfiguration.h

  colorRelativeStrengthIndexTopBar

colorRelativeStrengthIndexTopBar

@property (nonatomic, strong) UIColor *colorRelativeStrengthIndexTopBar

Declared In

CWKConfiguration.h

  colorRelativeStrengthIndexBottomBar

colorRelativeStrengthIndexBottomBar

@property (nonatomic, strong) UIColor *colorRelativeStrengthIndexBottomBar

Declared In

CWKConfiguration.h

  widthRelativeStrengthIndex

widthRelativeStrengthIndex

@property (nonatomic, strong) NSNumber *widthRelativeStrengthIndex

Declared In

CWKConfiguration.h

  colorWilliamsPercentR

colorWilliamsPercentR

@property (nonatomic, strong) UIColor *colorWilliamsPercentR

Declared In

CWKConfiguration.h

  colorWilliamsPercentRZeroLine

colorWilliamsPercentRZeroLine

@property (nonatomic, strong) UIColor *colorWilliamsPercentRZeroLine

Declared In

CWKConfiguration.h

  colorWilliamsPercentRTopBar

colorWilliamsPercentRTopBar

@property (nonatomic, strong) UIColor *colorWilliamsPercentRTopBar

Declared In

CWKConfiguration.h

  colorWilliamsPercentRBottomBar

colorWilliamsPercentRBottomBar

@property (nonatomic, strong) UIColor *colorWilliamsPercentRBottomBar

Declared In

CWKConfiguration.h

  widthWilliamsPercentR

widthWilliamsPercentR

@property (nonatomic, strong) NSNumber *widthWilliamsPercentR

Declared In

CWKConfiguration.h

  colorMoneyFlow

colorMoneyFlow

@property (nonatomic, strong) UIColor *colorMoneyFlow

Declared In

CWKConfiguration.h

  widthMoneyFlow

widthMoneyFlow

@property (nonatomic, strong) NSNumber *widthMoneyFlow

Declared In

CWKConfiguration.h

  colorMoneyFlowIndex

colorMoneyFlowIndex

@property (nonatomic, strong) UIColor *colorMoneyFlowIndex

Declared In

CWKConfiguration.h

  colorMoneyFlowIndexZeroLine

colorMoneyFlowIndexZeroLine

@property (nonatomic, strong) UIColor *colorMoneyFlowIndexZeroLine

Declared In

CWKConfiguration.h

  colorMoneyFlowIndexTopBar

colorMoneyFlowIndexTopBar

@property (nonatomic, strong) UIColor *colorMoneyFlowIndexTopBar

Declared In

CWKConfiguration.h

  colorMoneyFlowIndexBottomBar

colorMoneyFlowIndexBottomBar

@property (nonatomic, strong) UIColor *colorMoneyFlowIndexBottomBar

Declared In

CWKConfiguration.h

  widthMoneyFlowIndex

widthMoneyFlowIndex

@property (nonatomic, strong) NSNumber *widthMoneyFlowIndex

Declared In

CWKConfiguration.h

  colorOnBalanceVolume

colorOnBalanceVolume

@property (nonatomic, strong) UIColor *colorOnBalanceVolume

Declared In

CWKConfiguration.h

  widthOnBalanceVolume

widthOnBalanceVolume

@property (nonatomic, strong) NSNumber *widthOnBalanceVolume

Declared In

CWKConfiguration.h

  colorVolumeRateOfChange

colorVolumeRateOfChange

@property (nonatomic, strong) UIColor *colorVolumeRateOfChange

Declared In

CWKConfiguration.h

  colorVolumeRateOfChangeZeroLine

colorVolumeRateOfChangeZeroLine

@property (nonatomic, strong) UIColor *colorVolumeRateOfChangeZeroLine

Declared In

CWKConfiguration.h

  widthVolumeRateOfChange

widthVolumeRateOfChange

@property (nonatomic, strong) NSNumber *widthVolumeRateOfChange

Declared In

CWKConfiguration.h

  colorStochasticsKFast

colorStochasticsKFast

@property (nonatomic, strong) UIColor *colorStochasticsKFast

Declared In

CWKConfiguration.h

  colorStochasticsDFast

colorStochasticsDFast

@property (nonatomic, strong) UIColor *colorStochasticsDFast

Declared In

CWKConfiguration.h

  colorStochasticsFastZeroLine

colorStochasticsFastZeroLine

@property (nonatomic, strong) UIColor *colorStochasticsFastZeroLine

Declared In

CWKConfiguration.h

  colorStochasticsFastTopBar

colorStochasticsFastTopBar

@property (nonatomic, strong) UIColor *colorStochasticsFastTopBar

Declared In

CWKConfiguration.h

  colorStochasticsFastBottomBar

colorStochasticsFastBottomBar

@property (nonatomic, strong) UIColor *colorStochasticsFastBottomBar

Declared In

CWKConfiguration.h

  widthStochasticsFast

widthStochasticsFast

@property (nonatomic, strong) NSNumber *widthStochasticsFast

Declared In

CWKConfiguration.h

  colorStochasticsKSlow

colorStochasticsKSlow

@property (nonatomic, strong) UIColor *colorStochasticsKSlow

Declared In

CWKConfiguration.h

  colorStochasticsDSlow

colorStochasticsDSlow

@property (nonatomic, strong) UIColor *colorStochasticsDSlow

Declared In

CWKConfiguration.h

  colorStochasticsSlowZeroLine

colorStochasticsSlowZeroLine

@property (nonatomic, strong) UIColor *colorStochasticsSlowZeroLine

Declared In

CWKConfiguration.h

  colorStochasticsSlowTopBar

colorStochasticsSlowTopBar

@property (nonatomic, strong) UIColor *colorStochasticsSlowTopBar

Declared In

CWKConfiguration.h

  colorStochasticsSlowBottomBar

colorStochasticsSlowBottomBar

@property (nonatomic, strong) UIColor *colorStochasticsSlowBottomBar

Declared In

CWKConfiguration.h

  widthStochasticsSlow

widthStochasticsSlow

@property (nonatomic, strong) NSNumber *widthStochasticsSlow

Declared In

CWKConfiguration.h

  colorUltimateOscillator

colorUltimateOscillator

@property (nonatomic, strong) UIColor *colorUltimateOscillator

Declared In

CWKConfiguration.h

  colorUltimateOscillatorZeroLine

colorUltimateOscillatorZeroLine

@property (nonatomic, strong) UIColor *colorUltimateOscillatorZeroLine

Declared In

CWKConfiguration.h

  colorUltimateOscillatorTopBar

@property (nonatomic, strong) UIColor *colorUltimateOscillatorTopBar

Declared In

CWKConfiguration.h

  colorUltimateOscillatorBottomBar

@property (nonatomic, strong) UIColor *colorUltimateOscillatorBottomBar

Declared In

CWKConfiguration.h

  widthUltimateOscillator

widthUltimateOscillator

@property (nonatomic, strong) NSNumber *widthUltimateOscillator

Declared In

CWKConfiguration.h

  colorDirectionalMovementIndex_ADX

colorDirectionalMovementIndex_ADX

@property (nonatomic, strong) UIColor *colorDirectionalMovementIndex_ADX

Declared In

CWKConfiguration.h

  colorDirectionalMovementIndex_MinusDI

colorDirectionalMovementIndex_MinusDI

@property (nonatomic, strong) UIColor *colorDirectionalMovementIndex_MinusDI

Declared In

CWKConfiguration.h

  colorDirectionalMovementIndex_PlusDI

colorDirectionalMovementIndex_PlusDI

@property (nonatomic, strong) UIColor *colorDirectionalMovementIndex_PlusDI

Declared In

CWKConfiguration.h

  colorDirectionalMovementIndexADX

colorDirectionalMovementIndexADX

@property (nonatomic, strong) UIColor *colorDirectionalMovementIndexADX

Declared In

CWKConfiguration.h

  colorDirectionalMovementIndexADXR

colorDirectionalMovementIndexADXR

@property (nonatomic, strong) UIColor *colorDirectionalMovementIndexADXR

Declared In

CWKConfiguration.h

  colorDirectionalMovementIndexADXR_ADX

colorDirectionalMovementIndexADXR_ADX

@property (nonatomic, strong) UIColor *colorDirectionalMovementIndexADXR_ADX

Declared In

CWKConfiguration.h

  widthDirectionalMovementIndex

widthDirectionalMovementIndex

@property (nonatomic, strong) NSNumber *widthDirectionalMovementIndex

Declared In

CWKConfiguration.h

  colorAccumulationDistribution

colorAccumulationDistribution

@property (nonatomic, strong) UIColor *colorAccumulationDistribution

Declared In

CWKConfiguration.h

  colorAccumulationDistributionZeroLine

colorAccumulationDistributionZeroLine

@property (nonatomic, strong) UIColor *colorAccumulationDistributionZeroLine

Declared In

CWKConfiguration.h

  widthAccumulationDistribution

widthAccumulationDistribution

@property (nonatomic, strong) NSNumber *widthAccumulationDistribution

Declared In

CWKConfiguration.h

  colorAverageTrueRange

colorAverageTrueRange

@property (nonatomic, strong) UIColor *colorAverageTrueRange

Declared In

CWKConfiguration.h

  widthAverageTrueRange

widthAverageTrueRange

@property (nonatomic, strong) NSNumber *widthAverageTrueRange

Declared In

CWKConfiguration.h

Indicator Info and Parameter Settings

  colorIndicatorPopoverBackgroundTop

The color of the top portion of the gradient for the indicator popover view background color.

@property (nonatomic, strong) UIColor *colorIndicatorPopoverBackgroundTop

Declared In

CWKConfiguration.h

  colorIndicatorPopoverBackgroundBottom

The color of the bottom portion of the gradient for the indicator popover view background color.

@property (nonatomic, strong) UIColor *colorIndicatorPopoverBackgroundBottom

Declared In

CWKConfiguration.h

  colorIndicatorPopoverName

The color of the name of the indicator popover text.

@property (nonatomic, strong) UIColor *colorIndicatorPopoverName

Declared In

CWKConfiguration.h

  fontIndicatorPopoverName

fontIndicatorPopoverName

@property (nonatomic, strong) UIFont *fontIndicatorPopoverName

Declared In

CWKConfiguration.h

  colorIndicatorPopoverDescription

colorIndicatorPopoverDescription

@property (nonatomic, strong) UIColor *colorIndicatorPopoverDescription

Declared In

CWKConfiguration.h

  fontIndicatorPopoverDescription

fontIndicatorPopoverDescription

@property (nonatomic, strong) UIFont *fontIndicatorPopoverDescription

Declared In

CWKConfiguration.h

  colorIndicatorPopoverUnderline

colorIndicatorPopoverUnderline

@property (nonatomic, strong) UIColor *colorIndicatorPopoverUnderline

Declared In

CWKConfiguration.h

  colorIndicatorPopoverUnderlineShadow

colorIndicatorPopoverUnderlineShadow

@property (nonatomic, strong) UIColor *colorIndicatorPopoverUnderlineShadow

Declared In

CWKConfiguration.h

  colorIndicatorPopoverBorder

colorIndicatorPopoverBorder

@property (nonatomic, strong) UIColor *colorIndicatorPopoverBorder

Declared In

CWKConfiguration.h

  imageIndicatorPopoverRemoveButton

imageIndicatorPopoverRemoveButton

@property (nullable, nonatomic, strong) UIImage *imageIndicatorPopoverRemoveButton

Declared In

CWKConfiguration.h

  colorIndicatorPopoverRemoveButtonText

colorIndicatorPopoverRemoveButtonText

@property (nonatomic, strong) UIColor *colorIndicatorPopoverRemoveButtonText

Declared In

CWKConfiguration.h

  fontIndicatorPopoverRemoveButtonText

fontIndicatorPopoverRemoveButtonText

@property (nonatomic, strong) UIFont *fontIndicatorPopoverRemoveButtonText

Declared In

CWKConfiguration.h

  imageIndicatorPopoverUpdateButton

imageIndicatorPopoverUpdateButton

@property (nullable, nonatomic, strong) UIImage *imageIndicatorPopoverUpdateButton

Declared In

CWKConfiguration.h

  colorIndicatorPopoverUpdateButtonText

colorIndicatorPopoverUpdateButtonText

@property (nonatomic, strong) UIColor *colorIndicatorPopoverUpdateButtonText

Declared In

CWKConfiguration.h

  fontIndicatorPopoverUpdateButtonText

fontIndicatorPopoverUpdateButtonText

@property (nonatomic, strong) UIFont *fontIndicatorPopoverUpdateButtonText

Declared In

CWKConfiguration.h

  colorIndicatorPopoverParameterLabelText

colorIndicatorPopoverParameterLabelText

@property (nonatomic, strong) UIColor *colorIndicatorPopoverParameterLabelText

Declared In

CWKConfiguration.h

  fontIndicatorPopoverParameterLabelText

color of fontIndicatorPopoverParameterLabelText

@property (nonatomic, strong) UIFont *fontIndicatorPopoverParameterLabelText

Declared In

CWKConfiguration.h

  colorIndicatorPopoverParameterTextfieldText

colorIndicatorPopoverParameterTextfieldText

@property (nonatomic, strong) UIColor *colorIndicatorPopoverParameterTextfieldText

Declared In

CWKConfiguration.h

  fontIndicatorPopoverParameterTextfieldText

fontIndicatorPopoverParameterTextfieldText

@property (nonatomic, strong) UIFont *fontIndicatorPopoverParameterTextfieldText

Declared In

CWKConfiguration.h

  colorIndicatorPopoverRemoveButtonColor

colorIndicatorPopoverRemoveButtonColor

@property (nonatomic, strong) UIColor *colorIndicatorPopoverRemoveButtonColor

Declared In

CWKConfiguration.h

  colorIndicatorPopoverUpdateButtonColor

colorIndicatorPopoverUpdateButtonColor

@property (nonatomic, strong) UIColor *colorIndicatorPopoverUpdateButtonColor

Declared In

CWKConfiguration.h

  colorIndicatorPopoverParameterTextfieldBackground

colorIndicatorPopoverParameterTextfieldBackground

@property (nonatomic, strong) UIColor *colorIndicatorPopoverParameterTextfieldBackground

Declared In

CWKConfiguration.h

  colorAnnouncementLegend

colorAnnouncementLegend

@property (nonatomic, strong) UIColor *colorAnnouncementLegend

Declared In

CWKConfiguration.h

  colorIndicatorPopoverParameterTextfieldBorder

colorIndicatorPopoverParameterTextfieldBorder

@property (nonatomic, strong) UIColor *colorIndicatorPopoverParameterTextfieldBorder

Declared In

CWKConfiguration.h

Event Settings

  widthDividendsEventBorder

The border width of the dividends annotations. The default border width is 1.

@property (nonatomic, strong) NSNumber *widthDividendsEventBorder

Declared In

CWKConfiguration.h

  widthEarningsEventBorder

The border width of the earnings annotations. The default border width is 1.

@property (nonatomic, strong) NSNumber *widthEarningsEventBorder

Declared In

CWKConfiguration.h

  widthSplitsEventBorder

The border width of the splits annotations. The default border width is 1.

@property (nonatomic, strong) NSNumber *widthSplitsEventBorder

Declared In

CWKConfiguration.h

  widthAnnouncementEventBorder

The border width of the announcement annotations. The default border width is 1.

@property (nonatomic, strong) NSNumber *widthAnnouncementEventBorder

Declared In

CWKConfiguration.h

  dividendsEventAboveLine

If YES the dividends annotations will be displayed above the chart line. If NO the dividends annotations will be under the chart line.

@property (nonatomic, assign) BOOL dividendsEventAboveLine

Declared In

CWKConfiguration.h

  earningsEventAboveLine

If YES the earnings annotations will be displayed above the chart line. If NO the earnings annotations will be under the chart line.

@property (nonatomic, assign) BOOL earningsEventAboveLine

Declared In

CWKConfiguration.h

  splitsEventAboveLine

If YES the splits annotations will be displayed above the chart line. If NO the splits annotations will be under the chart line.

@property (nonatomic, assign) BOOL splitsEventAboveLine

Declared In

CWKConfiguration.h

  announcementEventAboveLine

If YES the announcement annotations will be displayed above the chart line. If NO the announcement annotations will be under the chart line.

@property (nonatomic, assign) BOOL announcementEventAboveLine

Declared In

CWKConfiguration.h

  dividendsEventUseArrow

If YES the dividends annotations will use an arrow to connect to the chart. If NO a stick will be used.

@property (nonatomic, assign) BOOL dividendsEventUseArrow

Declared In

CWKConfiguration.h

  earningsEventUseArrow

If YES the earnings annotations will use an arrow to connect to the chart. If NO a stick will be used.

@property (nonatomic, assign) BOOL earningsEventUseArrow

Declared In

CWKConfiguration.h

  splitsEventUseArrow

If YES the splits annotations will use an arrow to connect to the chart. If NO a stick will be used.

@property (nonatomic, assign) BOOL splitsEventUseArrow

Declared In

CWKConfiguration.h

  announcementEventUseArrow

If YES the announcement annotations will use an arrow to connect to the chart. If NO a stick will be used.

@property (nonatomic, assign) BOOL announcementEventUseArrow

Declared In

CWKConfiguration.h

  widthDividendsEventStick

The width of the stick connecting the dividends annotations to the chart.

@property (nonatomic, strong) NSNumber *widthDividendsEventStick

Declared In

CWKConfiguration.h

  widthEarningsEventStick

The width of the stick connecting the earnings annotations to the chart.

@property (nonatomic, strong) NSNumber *widthEarningsEventStick

Declared In

CWKConfiguration.h

  widthSplitsEventStick

The width of the stick connecting the splits annotations to the chart.

@property (nonatomic, strong) NSNumber *widthSplitsEventStick

Declared In

CWKConfiguration.h

  widthAnnouncementEventStick

The width of the stick connecting the announcement annotations to the chart.

@property (nonatomic, strong) NSNumber *widthAnnouncementEventStick

Declared In

CWKConfiguration.h

  heightDividendsEventStick

The height of the stick connecting the dividends annotations to the chart.

@property (nonatomic, strong) NSNumber *heightDividendsEventStick

Declared In

CWKConfiguration.h

  heightEarningsEventStick

The height of the stick connecting the earnings annotations to the chart.

@property (nonatomic, strong) NSNumber *heightEarningsEventStick

Declared In

CWKConfiguration.h

  heightSplitsEventStick

The height of the stick connecting the splits annotations to the chart.

@property (nonatomic, strong) NSNumber *heightSplitsEventStick

Declared In

CWKConfiguration.h

  heightAnnouncementEventStick

The height of the stick connecting the announcement annotations to the chart.

@property (nonatomic, strong) NSNumber *heightAnnouncementEventStick

Declared In

CWKConfiguration.h

  fontDividendsEvent

The font used for the dividends annotations. Annotations will adjust to fit the size of the font.

@property (nonatomic, strong) UIFont *fontDividendsEvent

Declared In

CWKConfiguration.h

  fontEarningsEvent

The font used for the earnings annotations. Annotations will adjust to fit the size of the font.

@property (nonatomic, strong) UIFont *fontEarningsEvent

Declared In

CWKConfiguration.h

  fontSplitsEvent

The font used for the splits annotations. Annotations will adjust to fit the size of the font.

@property (nonatomic, strong) UIFont *fontSplitsEvent

Declared In

CWKConfiguration.h

  fontAnnouncementEvent

The font used for the announcement annotations. Annotations will adjust to fit the size of the font.

@property (nonatomic, strong) UIFont *fontAnnouncementEvent

Declared In

CWKConfiguration.h

  attachDividendsEventsToEdgeOfChart

If YES dividends events will use a static y axis so they will not move up or down with the chart. They will also NOT use stick, arrows, or above line properties. showDividendsEventsAlongTop will determine if they are on the top or bottom of the chart. Defaults to NO.

@property (nonatomic, assign) BOOL attachDividendsEventsToEdgeOfChart

Declared In

CWKConfiguration.h

  attachEarningsEventsToEdgeOfChart

If YES earnings events will use a static y axis so they will not move up or down with the chart. They will also NOT use stick, arrows, or above line properties. showEarningsEventsAlongTop will determine if they are on the top or bottom of the chart. Defaults to NO.

@property (nonatomic, assign) BOOL attachEarningsEventsToEdgeOfChart

Declared In

CWKConfiguration.h

  attachSplitsEventsToEdgeOfChart

If YES splits events will use a static y axis so they will not move up or down with the chart. They will also NOT use stick, arrows, or above line properties. showSplitsEventsAlongTop will determine if they are on the top or bottom of the chart. Defaults to NO.

@property (nonatomic, assign) BOOL attachSplitsEventsToEdgeOfChart

Declared In

CWKConfiguration.h

  attachAnnouncementEventsToEdgeOfChart

If YES announcement events will use a static y axis so they will not move up or down with the chart. They will also NOT use stick, arrows, or above line properties. showAnnouncementEventsAlongTop will determine if they are on the top or bottom of the chart. Defaults to NO.

@property (nonatomic, assign) BOOL attachAnnouncementEventsToEdgeOfChart

Declared In

CWKConfiguration.h

  showDividendsEventsAlongTop

If YES AND attachDividendsEventsToEdgeOfChart is YES, dividends events will hug the top of the chart. If NO AND attachDividendsEventsToEdgeOfChart is YES, dividends events will hug the bottom of the chart. Defaults to NO.

@property (nonatomic, assign) BOOL showDividendsEventsAlongTop

Declared In

CWKConfiguration.h

  showEarningsEventsAlongTop

If YES AND attachEarningsEventsToEdgeOfChart is YES, earnings events will hug the top of the chart. If NO AND attachEarningsEventsToEdgeOfChart is YES, earnings events will hug the bottom of the chart. Defaults to NO.

@property (nonatomic, assign) BOOL showEarningsEventsAlongTop

Declared In

CWKConfiguration.h

  showSplitsEventsAlongTop

If YES AND attachSplitsEventsToEdgeOfChart is YES, splits events will hug the top of the chart. If NO AND attachSplitsEventsToEdgeOfChart is YES, splits events will hug the bottom of the chart. Defaults to NO.

@property (nonatomic, assign) BOOL showSplitsEventsAlongTop

Declared In

CWKConfiguration.h

  showAnnouncementEventsAlongTop

If YES AND attachAnnouncementEventsToEdgeOfChart is YES, announcement events will hug the top of the chart. If NO AND attachAnnouncementEventsToEdgeOfChart is YES, announcement events will hug the bottom of the chart. Defaults to NO.

@property (nonatomic, assign) BOOL showAnnouncementEventsAlongTop

Declared In

CWKConfiguration.h

Event Popover Settings

  colorEventPopover

The color of the text used in an event popover

@property (nonatomic, strong) UIColor *colorEventPopover

Declared In

CWKConfiguration.h

  fontEventPopover

The font used in an even popover

@property (nonatomic, strong) UIFont *fontEventPopover

Declared In

CWKConfiguration.h

  widthCustomAnnouncementPopover

widthCustomAnnouncementPopover

@property (nonatomic, assign) CGFloat widthCustomAnnouncementPopover

Declared In

CWKConfiguration.h

  textAlignCustomAnnouncementPopover

textAlignCustomAnnouncementPopover

@property (nonatomic, assign) NSTextAlignment textAlignCustomAnnouncementPopover

Declared In

CWKConfiguration.h

  highLowIndicatorPlaceOnPriceLine

  • Specifies that the High/Low indicator’s Y-position value should be the price line instead of at the correct dollar amount. Default is NO
@property (nonatomic, assign) BOOL highLowIndicatorPlaceOnPriceLine

Declared In

CWKConfiguration.h

  highLowIndicatorUseCloseValue

  • Specifies that the High/Low indicator should use the Close values instead of High/Low. Default is YES
@property (nonatomic, assign) BOOL highLowIndicatorUseCloseValue

Declared In

CWKConfiguration.h

Indicator Description Strings - Upper

  nameBollingerBands

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameBollingerBands

Declared In

CWKConfiguration.h

  nameShortBollingerBands

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortBollingerBands

Declared In

CWKConfiguration.h

  descriptionBollingerBands

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionBollingerBands

Declared In

CWKConfiguration.h

  nameEMAfirst

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameEMAfirst

Declared In

CWKConfiguration.h

  nameShortEMAfirst

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortEMAfirst

Declared In

CWKConfiguration.h

  descriptionEMAfirst

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionEMAfirst

Declared In

CWKConfiguration.h

  nameEMAsecond

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameEMAsecond

Declared In

CWKConfiguration.h

  nameShortEMAsecond

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortEMAsecond

Declared In

CWKConfiguration.h

  descriptionEMAsecond

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionEMAsecond

Declared In

CWKConfiguration.h

  nameEMAthird

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameEMAthird

Declared In

CWKConfiguration.h

  nameShortEMAthird

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortEMAthird

Declared In

CWKConfiguration.h

  descriptionEMAthird

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionEMAthird

Declared In

CWKConfiguration.h

  nameSMAfirst

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameSMAfirst

Declared In

CWKConfiguration.h

  nameShortSMAfirst

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortSMAfirst

Declared In

CWKConfiguration.h

  descriptionSMAfirst

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionSMAfirst

Declared In

CWKConfiguration.h

  nameSMAsecond

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameSMAsecond

Declared In

CWKConfiguration.h

  nameShortSMAsecond

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortSMAsecond

Declared In

CWKConfiguration.h

  descriptionSMAsecond

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionSMAsecond

Declared In

CWKConfiguration.h

  nameSMAthird

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameSMAthird

Declared In

CWKConfiguration.h

  nameShortSMAthird

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortSMAthird

Declared In

CWKConfiguration.h

  descriptionSMAthird

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionSMAthird

Declared In

CWKConfiguration.h

  namePrice

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *namePrice

Declared In

CWKConfiguration.h

  nameShortPrice

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortPrice

Declared In

CWKConfiguration.h

  descriptionPrice

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionPrice

Declared In

CWKConfiguration.h

  nameTSF

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameTSF

Declared In

CWKConfiguration.h

  nameShortTSF

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortTSF

Declared In

CWKConfiguration.h

  descriptionTSF

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionTSF

Declared In

CWKConfiguration.h

  namePriceChannel

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *namePriceChannel

Declared In

CWKConfiguration.h

  nameShortPriceChannel

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortPriceChannel

Declared In

CWKConfiguration.h

  descriptionPriceChannel

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionPriceChannel

Declared In

CWKConfiguration.h

  nameMovingAverageEnvelope

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameMovingAverageEnvelope

Declared In

CWKConfiguration.h

  nameShortMovingAverageEnvelope

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortMovingAverageEnvelope

Declared In

CWKConfiguration.h

  descriptionMovingAverageEnvelope

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionMovingAverageEnvelope

Declared In

CWKConfiguration.h

  nameWeightedMovingAverageFirst

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameWeightedMovingAverageFirst

Declared In

CWKConfiguration.h

  nameShortWeightedMovingAverageFirst

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortWeightedMovingAverageFirst

Declared In

CWKConfiguration.h

  descriptionWeightedMovingAverageFirst

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionWeightedMovingAverageFirst

Declared In

CWKConfiguration.h

  nameWeightedMovingAverageSecond

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameWeightedMovingAverageSecond

Declared In

CWKConfiguration.h

  nameShortWeightedMovingAverageSecond

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortWeightedMovingAverageSecond

Declared In

CWKConfiguration.h

  descriptionWeightedMovingAverageSecond

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionWeightedMovingAverageSecond

Declared In

CWKConfiguration.h

  nameWeightedMovingAverageThird

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameWeightedMovingAverageThird

Declared In

CWKConfiguration.h

  nameShortWeightedMovingAverageThird

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortWeightedMovingAverageThird

Declared In

CWKConfiguration.h

  descriptionWeightedMovingAverageThird

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionWeightedMovingAverageThird

Declared In

CWKConfiguration.h

  nameDividends

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameDividends

Declared In

CWKConfiguration.h

  nameShortDividends

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortDividends

Declared In

CWKConfiguration.h

  descriptionDividends

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionDividends

Declared In

CWKConfiguration.h

  nameEarnings

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameEarnings

Declared In

CWKConfiguration.h

  nameShortEarnings

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortEarnings

Declared In

CWKConfiguration.h

  descriptionEarnings

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionEarnings

Declared In

CWKConfiguration.h

  nameSplits

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameSplits

Declared In

CWKConfiguration.h

  nameShortSplits

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortSplits

Declared In

CWKConfiguration.h

  descriptionSplits

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionSplits

Declared In

CWKConfiguration.h

  nameCustomAnnouncements

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameCustomAnnouncements

Declared In

CWKConfiguration.h

  nameShortCustomAnnouncements

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortCustomAnnouncements

Declared In

CWKConfiguration.h

  descriptionCustomAnnouncements

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionCustomAnnouncements

Declared In

CWKConfiguration.h

  nameLatestPrice

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameLatestPrice

Declared In

CWKConfiguration.h

  nameShortLatestPrice

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortLatestPrice

Declared In

CWKConfiguration.h

  descriptionLatestPrice

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionLatestPrice

Declared In

CWKConfiguration.h

  nameHighLowIndicator

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameHighLowIndicator

Declared In

CWKConfiguration.h

  nameShortHighLowIndicator

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortHighLowIndicator

Declared In

CWKConfiguration.h

  descriptionHighLowIndicator

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionHighLowIndicator

Declared In

CWKConfiguration.h

  nameVolumeByPriceIndicator

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameVolumeByPriceIndicator

Declared In

CWKConfiguration.h

  nameShortVolumeByPriceIndicator

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortVolumeByPriceIndicator

Declared In

CWKConfiguration.h

  descriptionVolumeByPriceIndicator

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionVolumeByPriceIndicator

Declared In

CWKConfiguration.h

Indicator Description Strings - Lower

  nameMACD

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameMACD

Declared In

CWKConfiguration.h

  nameShortMACD

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortMACD

Declared In

CWKConfiguration.h

  descriptionMACD

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionMACD

Declared In

CWKConfiguration.h

  nameVolume

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameVolume

Declared In

CWKConfiguration.h

  nameShortVolume

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortVolume

Declared In

CWKConfiguration.h

  descriptionVolume

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionVolume

Declared In

CWKConfiguration.h

  nameUpDown

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameUpDown

Declared In

CWKConfiguration.h

  nameShortUpDown

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortUpDown

Declared In

CWKConfiguration.h

  descriptionUpDown

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionUpDown

Declared In

CWKConfiguration.h

  nameMassIndex

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameMassIndex

Declared In

CWKConfiguration.h

  nameShortMassIndex

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortMassIndex

Declared In

CWKConfiguration.h

  descriptionMassIndex

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionMassIndex

Declared In

CWKConfiguration.h

  nameMomentum

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameMomentum

Declared In

CWKConfiguration.h

  nameShortMomentum

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortMomentum

Declared In

CWKConfiguration.h

  descriptionMomentum

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionMomentum

Declared In

CWKConfiguration.h

  namePriceRateOfChange

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *namePriceRateOfChange

Declared In

CWKConfiguration.h

  nameShortPriceRateOfChange

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortPriceRateOfChange

Declared In

CWKConfiguration.h

  descriptionPriceRateOfChange

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionPriceRateOfChange

Declared In

CWKConfiguration.h

  nameChaikinsVolatility

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameChaikinsVolatility

Declared In

CWKConfiguration.h

  nameShortChaikinsVolatility

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortChaikinsVolatility

Declared In

CWKConfiguration.h

  descriptionChaikinsVolatility

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionChaikinsVolatility

Declared In

CWKConfiguration.h

  nameRevenue

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameRevenue

Declared In

CWKConfiguration.h

  nameShortRevenue

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortRevenue

Declared In

CWKConfiguration.h

  descriptionRevenue

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionRevenue

Declared In

CWKConfiguration.h

  nameDividendYield

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameDividendYield

Declared In

CWKConfiguration.h

  nameShortDividendYield

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortDividendYield

Declared In

CWKConfiguration.h

  descriptionDividendYield

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionDividendYield

Declared In

CWKConfiguration.h

  nameRollingDividend

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameRollingDividend

Declared In

CWKConfiguration.h

  nameShortRollingDividend

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortRollingDividend

Declared In

CWKConfiguration.h

  descriptionRollingDividend

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionRollingDividend

Declared In

CWKConfiguration.h

  namePERange

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *namePERange

Declared In

CWKConfiguration.h

  nameShortPERange

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortPERange

Declared In

CWKConfiguration.h

  descriptionPERange

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionPERange

Declared In

CWKConfiguration.h

  namePERatio

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *namePERatio

Declared In

CWKConfiguration.h

  nameShortPERatio

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortPERatio

Declared In

CWKConfiguration.h

  descriptionPERatio

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionPERatio

Declared In

CWKConfiguration.h

  nameRollingEPS

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameRollingEPS

Declared In

CWKConfiguration.h

  nameShortRollingEPS

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortRollingEPS

Declared In

CWKConfiguration.h

  descriptionRollingEPS

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionRollingEPS

Declared In

CWKConfiguration.h

  nameRelativeStrengthIndex

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameRelativeStrengthIndex

Declared In

CWKConfiguration.h

  nameShortRelativeStrengthIndex

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortRelativeStrengthIndex

Declared In

CWKConfiguration.h

  descriptionRelativeStrengthIndex

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionRelativeStrengthIndex

Declared In

CWKConfiguration.h

  nameWilliamsPercentR

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameWilliamsPercentR

Declared In

CWKConfiguration.h

  nameShortWilliamsPercentR

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortWilliamsPercentR

Declared In

CWKConfiguration.h

  descriptionWilliamsPercentR

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionWilliamsPercentR

Declared In

CWKConfiguration.h

  nameParabolicStopAndReverse

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameParabolicStopAndReverse

Declared In

CWKConfiguration.h

  nameShortParabolicStopAndReverse

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortParabolicStopAndReverse

Declared In

CWKConfiguration.h

  descriptionParabolicStopAndReverse

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionParabolicStopAndReverse

Declared In

CWKConfiguration.h

  nameLinearRegression

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameLinearRegression

Declared In

CWKConfiguration.h

  nameShortLinearRegression

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortLinearRegression

Declared In

CWKConfiguration.h

  descriptionLinearRegression

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionLinearRegression

Declared In

CWKConfiguration.h

  nameMoneyFlow

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameMoneyFlow

Declared In

CWKConfiguration.h

  nameShortMoneyFlow

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortMoneyFlow

Declared In

CWKConfiguration.h

  descriptionMoneyFlow

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionMoneyFlow

Declared In

CWKConfiguration.h

  nameMoneyFlowIndex

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameMoneyFlowIndex

Declared In

CWKConfiguration.h

  nameShortMoneyFlowIndex

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortMoneyFlowIndex

Declared In

CWKConfiguration.h

  descriptionMoneyFlowIndex

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionMoneyFlowIndex

Declared In

CWKConfiguration.h

  nameOnBalanceVolume

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameOnBalanceVolume

Declared In

CWKConfiguration.h

  nameShortOnBalanceVolume

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortOnBalanceVolume

Declared In

CWKConfiguration.h

  descriptionOnBalanceVolume

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionOnBalanceVolume

Declared In

CWKConfiguration.h

  nameVolumeRateOfChange

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameVolumeRateOfChange

Declared In

CWKConfiguration.h

  nameShortVolumeRateOfChange

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortVolumeRateOfChange

Declared In

CWKConfiguration.h

  descriptionVolumeRateOfChange

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionVolumeRateOfChange

Declared In

CWKConfiguration.h

  nameStochasticsFast

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameStochasticsFast

Declared In

CWKConfiguration.h

  nameShortStochasticsFast

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortStochasticsFast

Declared In

CWKConfiguration.h

  descriptionStochasticsFast

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionStochasticsFast

Declared In

CWKConfiguration.h

  nameStochasticsSlow

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameStochasticsSlow

Declared In

CWKConfiguration.h

  nameShortStochasticsSlow

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortStochasticsSlow

Declared In

CWKConfiguration.h

  descriptionStochasticsSlow

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionStochasticsSlow

Declared In

CWKConfiguration.h

  nameUltimateOscillator

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameUltimateOscillator

Declared In

CWKConfiguration.h

  nameShortUltimateOscillator

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortUltimateOscillator

Declared In

CWKConfiguration.h

  descriptionUltimateOscillator

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionUltimateOscillator

Declared In

CWKConfiguration.h

  nameDMI

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameDMI

Declared In

CWKConfiguration.h

  nameShortDMI

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortDMI

Declared In

CWKConfiguration.h

  descriptionDMI

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionDMI

Declared In

CWKConfiguration.h

  nameDMI_ADX

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameDMI_ADX

Declared In

CWKConfiguration.h

  nameShortDMI_ADX

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortDMI_ADX

Declared In

CWKConfiguration.h

  descriptionDMI_ADX

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionDMI_ADX

Declared In

CWKConfiguration.h

  nameDMI_ADXR

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameDMI_ADXR

Declared In

CWKConfiguration.h

  nameShortDMI_ADXR

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortDMI_ADXR

Declared In

CWKConfiguration.h

  descriptionDMI_ADXR

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionDMI_ADXR

Declared In

CWKConfiguration.h

  nameADL

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameADL

Declared In

CWKConfiguration.h

  nameShortADL

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortADL

Declared In

CWKConfiguration.h

  descriptionADL

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionADL

Declared In

CWKConfiguration.h

  nameAverageTrueRange

The text used as the title of the indicator popover.

@property (nonatomic, strong) NSString *nameAverageTrueRange

Declared In

CWKConfiguration.h

  nameShortAverageTrueRange

The text used as the indicator label name.

@property (nonatomic, strong) NSString *nameShortAverageTrueRange

Declared In

CWKConfiguration.h

  descriptionAverageTrueRange

The text used for the indicator description in the indicator popover.

@property (nonatomic, strong) NSString *descriptionAverageTrueRange

Declared In

CWKConfiguration.h