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.
Creating and Initializing Configuration
apiURLChart
If this is left unassigned then on the first drawChart an error will be generated.
@property (nonatomic, strong) NSString *apiURLChartDeclared 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 *apiURLSymbolInformationDeclared In
CWKConfiguration.h
apiAuthToken
For authenticated APIs, the authorization token. Refer to authentication documentation for more information.
@property (nonatomic, strong) NSString *apiAuthTokenDeclared 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 *apiDataInterfaceDeclared In
CWKConfiguration.h
networkTimeout
A timeout for the network requests made by the SDK. Defaults to 60 seconds
@property (nonatomic, assign) NSTimeInterval networkTimeoutDeclared 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)configurationOKReturn 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
- (void)loadCustomConfigurationFromXML:(NSString *)xmlFileNameReturn 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 *)configurationDataReturn Value
void
Declared In
CWKConfiguration.h
Behaviors
multipleLowerChartsEnabled
When set to YES/true, Lower Charts will be created for each lower indicator or removed when needed instead of having a button bar that switches between different lower indicators. Default is NO
@property (nonatomic, assign) BOOL multipleLowerChartsEnabledDeclared In
CWKConfiguration.h
)
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 DEPRECATED_MSG_ATTRIBUTE ( "use hideLowerChartAutomatically instead" )Declared In
CWKConfiguration.h
hideLowerChartAutomatically
When enabled, the lower portion of the chart is hidden when there is no lower indicator requested. Default is YES
@property (nonatomic, assign) BOOL hideLowerChartAutomaticallyDeclared In
CWKConfiguration.h
indicatorPlusButtonShown
- Tells the chart to show/hide “+Indicator” buttons

@property (nonatomic, assign) BOOL indicatorPlusButtonShownDeclared 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 indicatorUpperButtonBarShownDeclared 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 indicatorLowerButtonBarShownDeclared In
CWKConfiguration.h
indicatorUpperButtonBarInteractionEnabled
Tells the chart to enable interaction on the upper button bar (aka legend) Defaults to YES;
@property (nonatomic, assign) BOOL indicatorUpperButtonBarInteractionEnabledDeclared In
CWKConfiguration.h
indicatorLowerButtonBarInteractionEnabled
Tells the chart to enable interaction on the lower button bar (aka legend) Defaults to YES;
@property (nonatomic, assign) BOOL indicatorLowerButtonBarInteractionEnabledDeclared In
CWKConfiguration.h
indicatorAnnouncementsButtonShown
Tells LiveCharts to show/hide Announcements buttons

@property (nonatomic, assign) BOOL indicatorAnnouncementsButtonShownDeclared 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 indicatorUpperLegendButtonShownDeclared 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 indicatorLowerLegendButtonShownDeclared In
CWKConfiguration.h
lowerButtonBarPositionedBetweenCharts
When enabled, the button bar for the lower chart will sit vertically centered between the chart and the chart above it. default = NO
@property (nonatomic, assign) BOOL lowerButtonBarPositionedBetweenChartsDeclared In
CWKConfiguration.h
lowerButtonBarSizesToFit
When enabled, the button bar will end following the last button. Otherwise it will continue to stretch full width. default = NO
@property (nonatomic, assign) BOOL lowerButtonBarSizesToFitDeclared In
CWKConfiguration.h
lowerButtonBarRoundRightSide
When enabled, the button bar will round its right-most corners. @See lowerButtonBarCornerRadius default = NO
@property (nonatomic, assign) BOOL lowerButtonBarRoundRightSideDeclared In
CWKConfiguration.h
lowerButtonBarCornerRadius
This value will be used to determine the corner radius to use when rounding the button bar See lowerButtonBarRoundRightSide default = 5
@property (nonatomic, assign) NSNumber *lowerButtonBarCornerRadiusDeclared In
CWKConfiguration.h
colorUpperButtonBarBorder
If set, the upper button bar will be bordered using this color default = nil
@property (nonatomic, strong) UIColor *colorUpperButtonBarBorderDeclared In
CWKConfiguration.h
colorLowerButtonBarBorder
If set, the upper button bar will be bordered using this color default = nil
@property (nonatomic, strong) UIColor *colorLowerButtonBarBorderDeclared 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 enableCrossHairTooltipDiscussion
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 crossHairFollowStyleDeclared 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 crossHairPopupPositionDeclared In
CWKConfiguration.h
showCrosshairOnSingleChart
Typically, bringing up a crosshair on an upper or lower chart will cause the crosshair to appear on multiple charts at the same X value. To disable that behavior, set this property to YES This will result in the crosshair line to extend across charts, but the information tooltip will not appear. Default is NO
@property (nonatomic, assign) BOOL showCrosshairOnSingleChartDeclared In
CWKConfiguration.h
crosshairLinesHalfSize
Tells the chart to draw a L shape crosshair lines.
Otherwise it will draw + shape crosshair lines.
Default is NO
@property (nonatomic, assign) BOOL crosshairLinesHalfSizeDeclared 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 crossHairFollowHorizontalPaddingDeclared 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 crossHairFollowVerticalPaddingDeclared In
CWKConfiguration.h
legendPopoverShadowedText
Tells the chart to show Legend Popover Shadowed text

@property (nonatomic, assign) BOOL legendPopoverShadowedTextDeclared In
CWKConfiguration.h
indicatorPopoverBreakLine
Tells the chart to show Underline under the title in Legend Popover

@property (nonatomic, assign) BOOL indicatorPopoverBreakLineDeclared In
CWKConfiguration.h
disableAddOverlayButton
Tells the chart to disable the “Add Overlay” button in the indicator popover. Default is NO
@property (nonatomic, assign) BOOL disableAddOverlayButtonDeclared In
CWKConfiguration.h
eventsTappable
Tells the chart to show Popover when Dividends, Splits, or Earnings are tapped

@property (nonatomic, assign) BOOL eventsTappableDeclared In
CWKConfiguration.h
chartsDebug
Tells the chart to enable SDK debugging
@property (nonatomic, assign) BOOL chartsDebugDeclared 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 autoSetDecimalPlacesDeclared 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 forceDecimalPlacesDeclared 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 allowTimeZoneOffsetDeclared 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 shouldNormalizeComparisonTimeZoneDeclared 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 shouldMakeAllTradingDaysEqualLengthDeclared 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 shouldShowGapsWhenMarketIsClosedDeclared In
CWKConfiguration.h
showEarningsOnAnnouncementDate
Show earnings on announced date (requires API support) Default = NO
@property (nonatomic, assign) BOOL showEarningsOnAnnouncementDateDeclared 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 loadChartDataInBackgroundDeclared In
CWKConfiguration.h
Extended Hours
extendedHours
The extended hours configuration object with options related to extended hours.
@property (nonatomic, strong) CWKExtendedHoursConfiguration *extendedHoursDeclared 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 shouldLoadDataOnPanDeclared In
CWKConfiguration.h
delayForPanLoad
The delay after making the appropriate gesture before pan loading is triggered Default = 0 seconds
@property (nonatomic, assign) NSTimeInterval delayForPanLoadDeclared 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 shouldLoadDataOnZoomOutDeclared In
CWKConfiguration.h
delayForZoomOutLoad
The delay after making the appropriate gesture before zoom out loading is triggered Default = 1 second
@property (nonatomic, assign) NSTimeInterval delayForZoomOutLoadDeclared 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 shouldLoadDataOnZoomInDeclared In
CWKConfiguration.h
delayForZoomInLoad
The delay after making the appropriate gesture before zoom in loading is triggered Default = 1 second
@property (nonatomic, assign) NSTimeInterval delayForZoomInLoadDeclared 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 shouldLoadDataToReduceDetailDeclared 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 delayForReduceDetailLoadDeclared In
CWKConfiguration.h
Resizing Gripper
disableResizeGripper
To disable the resize gripper, set this to YES/true Default = NO
@property (nonatomic, assign) BOOL disableResizeGripperDeclared In
CWKConfiguration.h
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 = built in resize gripper image (3 stacked lines)
@property (nonatomic, strong) UIImage *resizeGripperImageDeclared 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 resizeGripperCenteredDeclared In
CWKConfiguration.h
Chart Colors, Borders, and Fonts
colorChartGutterBackground
Color of the gap between the upper and lower charts.

@property (nonatomic, strong) UIColor *colorChartGutterBackgroundDeclared In
CWKConfiguration.h
colorUpperLegendBackgroundColor
Color of the legend bar above the upper chart, containing the indicator buttons.

@property (nonatomic, strong) UIColor *colorUpperLegendBackgroundColorDeclared In
CWKConfiguration.h
colorUpperChartBackground
Color of the upper chart’s background
@property (nonatomic, strong) UIColor *colorUpperChartBackgroundDeclared In
CWKConfiguration.h
colorLowerLegendBackgroundColor
Color of the legend bar above the lower chart, containing the indicator buttons.

@property (nonatomic, strong) UIColor *colorLowerLegendBackgroundColorDeclared In
CWKConfiguration.h
colorLowerChartBackground
Color of the lower chart’s background
@property (nonatomic, strong) UIColor *colorLowerChartBackgroundDeclared In
CWKConfiguration.h
upperButtonsViewMinHeight
The minimum height of the buttons view above the upper chart

@property (nonatomic, assign) CGFloat upperButtonsViewMinHeightDeclared In
CWKConfiguration.h
enableUpperPlotAreaBorder
Enable Upper Chart Plot Area Border. Defaults to NO
@property (nonatomic, assign) BOOL enableUpperPlotAreaBorderDeclared In
CWKConfiguration.h
colorUpperPlotAreaBorder
Color for the upper plot area border. Only used if enableUpperPlotAreaBorder is set to YES.
@property (nonatomic, strong) UIColor *colorUpperPlotAreaBorderDeclared In
CWKConfiguration.h
widthUpperPlotAreaBorder
Width for the upper plot area border
@property (nonatomic, strong) NSNumber *widthUpperPlotAreaBorderDeclared In
CWKConfiguration.h
enableLowerPlotAreaBorder
Enable Lower Plot Area Border. Defaults to NO
@property (nonatomic, assign) BOOL enableLowerPlotAreaBorderDeclared In
CWKConfiguration.h
colorLowerPlotAreaBorder
Color for the lower plot area border. Only used if enableLowerPlotAreaBorder is set to YES.
@property (nonatomic, strong) UIColor *colorLowerPlotAreaBorderDeclared In
CWKConfiguration.h
widthLowerPlotAreaBorder
Width for the lower plot area border
@property (nonatomic, strong) NSNumber *widthLowerPlotAreaBorderDeclared In
CWKConfiguration.h
enableUpperChartBorder
Enable Upper Chart Border
@property (nonatomic, assign) BOOL enableUpperChartBorderDeclared In
CWKConfiguration.h
colorUpperChartBorder
Color for the upper chart border
@property (nonatomic, strong) UIColor *colorUpperChartBorderDeclared In
CWKConfiguration.h
widthUpperChartBorder
Width for the upper chart border
@property (nonatomic, strong) NSNumber *widthUpperChartBorderDeclared In
CWKConfiguration.h
enableLowerChartBorder
Enable Lower Chart Border
@property (nonatomic, assign) BOOL enableLowerChartBorderDeclared In
CWKConfiguration.h
colorLowerChartBorder
Color for the lower chart border
@property (nonatomic, strong) UIColor *colorLowerChartBorderDeclared In
CWKConfiguration.h
widthLowerChartBorder
Width for the lower chart border
@property (nonatomic, strong) NSNumber *widthLowerChartBorderDeclared In
CWKConfiguration.h
enableChartViewBorder
Enable Upper & Lower Chart Surrounding Border
@property (nonatomic, assign) BOOL enableChartViewBorderDeclared In
CWKConfiguration.h
colorChartViewBorder
Color for chart view border
@property (nonatomic, strong) UIColor *colorChartViewBorderDeclared In
CWKConfiguration.h
widthChartViewBorder
Width for the chart view border
@property (nonatomic, strong) NSNumber *widthChartViewBorderDeclared 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 *colorNetworkActivityBackgroundDeclared In
CWKConfiguration.h
positionForPreviousDateLabel
The x/y position for the previous date Label
@property (nonatomic, assign) CGPoint positionForPreviousDateLabelDeclared In
CWKConfiguration.h
fontPreviousDayLabel
fontPreviousDayLabel
@property (nonatomic, strong) UIFont *fontPreviousDayLabelDeclared In
CWKConfiguration.h
colorPreviousDayLabel
colorPreviousDayLabel
@property (nonatomic, strong) UIColor *colorPreviousDayLabelDeclared In
CWKConfiguration.h
stringPreviousDayLabel
stringPreviousDayLabel
@property (nonatomic, strong) NSString *stringPreviousDayLabelDeclared In
CWKConfiguration.h
enablePreviousDayLabel
enablePreviousDayLabel
@property (nonatomic, assign) BOOL enablePreviousDayLabelDeclared 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 *formatLocaleDeclared In
CWKConfiguration.h
yearFormat
yearFormat - Customize the format string for dates displayed as year only. defaults to “y”

@property (nonatomic, strong) NSString *yearFormatDeclared In
CWKConfiguration.h
monthYearFormat
monthYearFormat - Customize the format string for dates displayed as month and year. defaults to “MMM y”

@property (nonatomic, strong) NSString *monthYearFormatDeclared In
CWKConfiguration.h
monthDayFormat
monthDayFormat - Customize the format string for dates displayed as month and day. defaults to “M/d”

@property (nonatomic, strong) NSString *monthDayFormatDeclared In
CWKConfiguration.h
hourMinuteFormat
hourMinuteFormat - Customize the format string for dates displayed as the time. defaults to “h:mm a”

@property (nonatomic, strong) NSString *hourMinuteFormatDeclared 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 *monthDayYearFormatDeclared 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 shouldLocalizeDateFormatsDeclared 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 showFirstLabelOfDayAsDateDeclared 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 showFirstLabelOfDayOnWholeHourDeclared 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 showFirstLabelOfYearAsYearDeclared 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 xAxisTickLabelAlignmentDeclared In
CWKConfiguration.h
xAxisTickLabelOffset
tickLabelOffset - Moves the tick label relative to the tick mark on the xAxis. Defaults to 0.

@property (nonatomic, assign) CGFloat xAxisTickLabelOffsetDeclared 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 *annotationEditImageDeclared 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 *annotationDeleteImageDeclared 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 *colorTrendLineUpDeclared In
CWKConfiguration.h
colorTrendLineDown
The color of a downward sloping trendline if trendlineColorBasedOnSlope is YES. Default is red.

@property (nonatomic, strong) UIColor *colorTrendLineDownDeclared In
CWKConfiguration.h
colorTrendLineNeutral
The color of a neutral (not sloping) trendline if trendlineColorBasedOnSlope is YES. Default is grey.

@property (nonatomic, strong) UIColor *colorTrendLineNeutralDeclared 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 trendlineColorBasedOnSlopeDeclared In
CWKConfiguration.h
widthTrendline
The width of the trendline. Default is 2.

@property (nonatomic, strong) NSNumber *widthTrendlineDeclared In
CWKConfiguration.h
Ray Line Settings
colorRayLine
The color of a ray line. Default is purple (#7F0F7E).
@property (nonatomic, strong) UIColor *colorRayLineDeclared In
CWKConfiguration.h
widthRayLine
The width of the ray line. Default is 2.
@property (nonatomic, strong) NSNumber *widthRayLineDeclared In
CWKConfiguration.h
Extended Line Settings
colorExtendedLine
The color of an extended line. Default is orange (#FEA428).
@property (nonatomic, strong) UIColor *colorExtendedLineDeclared In
CWKConfiguration.h
widthExtendedLine
The width of the extended line. Default is 2.
@property (nonatomic, strong) NSNumber *widthExtendedLineDeclared In
CWKConfiguration.h
Arrow Line / Annotation Settings
colorArrowLine
The color of an arrow line. Default is light blue (#4983B3).
@property (nonatomic, strong) UIColor *colorArrowLineDeclared In
CWKConfiguration.h
widthArrowLine
The width of the line. Default is 2.

@property (nonatomic, strong) NSNumber *widthArrowLineDeclared In
CWKConfiguration.h
widthArrow
The width of the arrow at the end of the line. Default is 10.

@property (nonatomic, strong) NSNumber *widthArrowDeclared In
CWKConfiguration.h
Level Line Settings
colorLevelLine
The color of a level line. Default is light blue (#9D9D9D).
@property (nonatomic, strong) UIColor *colorLevelLineDeclared In
CWKConfiguration.h
widthLevelLine
The width of the line. Default is 2.

@property (nonatomic, strong) NSNumber *widthLevelLineDeclared In
CWKConfiguration.h
Gann Fan Line Settings
colorGannFan1Line
The color of the 1/1 line. Default is #808080.
@property (nonatomic, strong) UIColor *colorGannFan1LineDeclared In
CWKConfiguration.h
colorGannFan2Line
The color of the ½ and 2/1 lines. Default is #BD060f.
@property (nonatomic, strong) UIColor *colorGannFan2LineDeclared In
CWKConfiguration.h
colorGannFan3Line
The color of the 1/3 and 3/1 lines. Default is #FFA21F.
@property (nonatomic, strong) UIColor *colorGannFan3LineDeclared In
CWKConfiguration.h
colorGannFan4Line
The color of the ¼ and 4/1 lines. Default is #C2C226.
@property (nonatomic, strong) UIColor *colorGannFan4LineDeclared In
CWKConfiguration.h
colorGannFan8Line
The color of the 1/8 and 8/1 lines. Default is #0D9612.
@property (nonatomic, strong) UIColor *colorGannFan8LineDeclared In
CWKConfiguration.h
fontGannFanLabels
The font of the line labels. Default is systemFontOfSize:12.0
@property (nonatomic, strong) UIFont *fontGannFanLabelsDeclared In
CWKConfiguration.h
widthGannFanLine
The width of the line. Default is 1.
@property (nonatomic, strong) NSNumber *widthGannFanLineDeclared 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 returnsGestureMinimumPressDurationDeclared In
CWKConfiguration.h
disableReturnsGesture
Disable the returns calculator (2 finger long press popup) with this flag

@property (nonatomic, assign) BOOL disableReturnsGestureDeclared In
CWKConfiguration.h
enableReturnsDotOnLineAnnotation
Specifies if a dot should be added on top of the line annotation
@property (nonatomic, assign) BOOL enableReturnsDotOnLineAnnotationDeclared 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 returnsBackgroundShadingPositionOutsideLinesDeclared In
CWKConfiguration.h
colorReturnsCalculatorRising
Color of the returns calculator when change is positive
@property (nonatomic, strong) UIColor *colorReturnsCalculatorRisingDeclared In
CWKConfiguration.h
colorReturnsCalculatorFalling
Color of the returns calculator when change is negative
@property (nonatomic, strong) UIColor *colorReturnsCalculatorFallingDeclared In
CWKConfiguration.h
colorReturnsCalculatorNoChange
Color of the returns calculator when change is neutral
@property (nonatomic, strong) UIColor *colorReturnsCalculatorNoChangeDeclared In
CWKConfiguration.h
returnsDotAnnotationDiameter
Specifies if a dot should be added on top of the line annotation
@property (nonatomic, assign) CGFloat returnsDotAnnotationDiameterDeclared 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 returnsYPositionPercentageDeclared In
CWKConfiguration.h
returnsBackgroundShadingImage
An optional image to use in shading either inside or outside the returns calculator lines.
@property (nonatomic, strong) UIImage *returnsBackgroundShadingImageDeclared 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 *returnsBackgroundShadingColorDeclared 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 showTrendLineOnFibonacciRetracementDeclared In
CWKConfiguration.h
showBoundingBoxOnFibonacciRetracement
- If YES, a border will be shown around the Fibonacci retracement area.
- Default is NO

@property (nonatomic, assign) BOOL showBoundingBoxOnFibonacciRetracementDeclared In
CWKConfiguration.h
colorFibonacciBoundingBox
The color of the fibonacci bounding box.
@property (nonatomic, strong) UIColor *colorFibonacciBoundingBoxDeclared 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 *widthFibonacciBoundingBoxLineDeclared 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 showPercentagesOnFibonacciRetracementDeclared 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 showEndPercentagesOnFibonacciRetracementDeclared 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 showPercentagesAsDecimalsOnFibonacciRetracementDeclared 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 showYAxisValuesOnFibonacciRetracementDeclared In
CWKConfiguration.h
fibonacciRetracementInfiniteLength
- If YES, the Fibonacci Retracement will extend outward infinitely from the start point.
- Default is YES

@property (nonatomic, assign) BOOL fibonacciRetracementInfiniteLengthDeclared In
CWKConfiguration.h
fontFibonacciPercentLabels
The font of the percentage text if shown. Default is systemFontOfSize:12.0
@property (nonatomic, strong) UIFont *fontFibonacciPercentLabelsDeclared In
CWKConfiguration.h
colorFibonacciStartLabel
The color of the start percentage label text. Default is #7C8080
@property (nonatomic, strong) UIColor *colorFibonacciStartLabelDeclared In
CWKConfiguration.h
colorFibonacciFirstLabel
The color of the first percentage label text. Default is #CF2E20
@property (nonatomic, strong) UIColor *colorFibonacciFirstLabelDeclared In
CWKConfiguration.h
colorFibonacciSecondLabel
The color of the second percentage label text. Default is #76AC2B
@property (nonatomic, strong) UIColor *colorFibonacciSecondLabelDeclared In
CWKConfiguration.h
colorFibonacciThirdLabel
The color of the third percentage label text. Default is #1FCB32
@property (nonatomic, strong) UIColor *colorFibonacciThirdLabelDeclared In
CWKConfiguration.h
colorFibonacciFourthLabel
The color of the fourth percentage label text. Default is #389B64
@property (nonatomic, strong) UIColor *colorFibonacciFourthLabelDeclared In
CWKConfiguration.h
colorFibonacciEndLabel
The color of the end percentage label text. Default is #6D6B6B
@property (nonatomic, strong) UIColor *colorFibonacciEndLabelDeclared In
CWKConfiguration.h
colorFibonacciStartLine
The color of the Fibonacci retracement line at the beginning. Default is #CCCCCC77
@property (nonatomic, strong) UIColor *colorFibonacciStartLineDeclared In
CWKConfiguration.h
colorFibonacciFirstLine
The color of the first Fibonacci retracement line. Default is #CCCCCC77
@property (nonatomic, strong) UIColor *colorFibonacciFirstLineDeclared In
CWKConfiguration.h
colorFibonacciSecondLine
The color of the second Fibonacci retracement line. Default is #CCCCCC77
@property (nonatomic, strong) UIColor *colorFibonacciSecondLineDeclared In
CWKConfiguration.h
colorFibonacciThirdLine
The color of the third Fibonacci retracement line. Default is #CCCCCC77
@property (nonatomic, strong) UIColor *colorFibonacciThirdLineDeclared In
CWKConfiguration.h
colorFibonacciFourthLine
The color of the fourth Fibonacci retracement line. Default is #CCCCCC77
@property (nonatomic, strong) UIColor *colorFibonacciFourthLineDeclared In
CWKConfiguration.h
colorFibonacciEndLine
The color of the Fibonacci retracement line at the end. Default is #CCCCCC77
@property (nonatomic, strong) UIColor *colorFibonacciEndLineDeclared In
CWKConfiguration.h
colorFibonacciFirstZone
The color of the fill before the first Fibonacci retracement line. Default is #A92B2155
@property (nonatomic, strong) UIColor *colorFibonacciFirstZoneDeclared In
CWKConfiguration.h
colorFibonacciSecondZone
The color of the fill between the first and second Fibonacci retracement lines. Default is #699C1E55
@property (nonatomic, strong) UIColor *colorFibonacciSecondZoneDeclared In
CWKConfiguration.h
colorFibonacciThirdZone
The color of the fill between the second and third Fibonacci retracement lines. Default is #24B82955
@property (nonatomic, strong) UIColor *colorFibonacciThirdZoneDeclared In
CWKConfiguration.h
colorFibonacciFourthZone
The color of the fill between the third and fourth Fibonacci retracement lines. Default is #378A6E55
@property (nonatomic, strong) UIColor *colorFibonacciFourthZoneDeclared In
CWKConfiguration.h
colorFibonacciFifthZone
The color of the fill after the fourth Fibonacci retracement lines. Default is #5a5a5a55
@property (nonatomic, strong) UIColor *colorFibonacciFifthZoneDeclared 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 *percentFibonacciFirstLineDeclared 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 *percentFibonacciSecondLineDeclared 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 *percentFibonacciThirdLineDeclared 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 *percentFibonacciFourthLineDeclared In
CWKConfiguration.h
widthFibonacciLines
The width that will be used for all Fibonacci retracement lines. Default is 1
@property (nonatomic, strong) NSNumber *widthFibonacciLinesDeclared 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 showTrendLineOnFibonacciArcDeclared 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 showPercentagesOnFibonacciArcDeclared 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 showPercentagesAsDecimalsOnFibonacciArcDeclared In
CWKConfiguration.h
fontFibonacciArcPercentLabels
The font of the percentage text if shown. Default is systemFontOfSize:12.0
@property (nonatomic, strong) UIFont *fontFibonacciArcPercentLabelsDeclared In
CWKConfiguration.h
colorFibonacciArcFirstLabel
The color of the first percentage label text. Default is #F10E1B
@property (nonatomic, strong) UIColor *colorFibonacciArcFirstLabelDeclared In
CWKConfiguration.h
colorFibonacciArcSecondLabel
The color of the second percentage label text. Default is #E7A82B
@property (nonatomic, strong) UIColor *colorFibonacciArcSecondLabelDeclared In
CWKConfiguration.h
colorFibonacciArcThirdLabel
The color of the third percentage label text. Default is #2DA732
@property (nonatomic, strong) UIColor *colorFibonacciArcThirdLabelDeclared In
CWKConfiguration.h
colorFibonacciArcFourthLabel
The color of the fourth percentage label text. Default is #3A886E
@property (nonatomic, strong) UIColor *colorFibonacciArcFourthLabelDeclared In
CWKConfiguration.h
colorFibonacciArcEndLabel
The color of the end percentage label text. Default is #777777
@property (nonatomic, strong) UIColor *colorFibonacciArcEndLabelDeclared In
CWKConfiguration.h
colorFibonacciArcFirstLine
The color of the first Fibonacci Arc/Circle line. Default is #F10E1B
@property (nonatomic, strong) UIColor *colorFibonacciArcFirstLineDeclared In
CWKConfiguration.h
colorFibonacciArcSecondLine
The color of the second Fibonacci Arc/Circle line. Default is #E7A82B
@property (nonatomic, strong) UIColor *colorFibonacciArcSecondLineDeclared In
CWKConfiguration.h
colorFibonacciArcThirdLine
The color of the third Fibonacci Arc/Circle line. Default is #2DA732
@property (nonatomic, strong) UIColor *colorFibonacciArcThirdLineDeclared In
CWKConfiguration.h
colorFibonacciArcFourthLine
The color of the fourth Fibonacci Arc/Circle line. Default is #3A886E
@property (nonatomic, strong) UIColor *colorFibonacciArcFourthLineDeclared In
CWKConfiguration.h
colorFibonacciArcEndLine
The color of the Fibonacci Arc/Circle line at the end. Default is #666666
@property (nonatomic, strong) UIColor *colorFibonacciArcEndLineDeclared In
CWKConfiguration.h
colorFibonacciArcFirstZone
The color of the fill before the first Fibonacci Arc/Circle line. Default is #A92B2155
@property (nonatomic, strong) UIColor *colorFibonacciArcFirstZoneDeclared 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 *colorFibonacciArcSecondZoneDeclared 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 *colorFibonacciArcThirdZoneDeclared 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 *colorFibonacciArcFourthZoneDeclared In
CWKConfiguration.h
colorFibonacciArcFifthZone
The color of the fill after the fourth Fibonacci Arc/Circle lines. Default is #5a5a5a55
@property (nonatomic, strong) UIColor *colorFibonacciArcFifthZoneDeclared In
CWKConfiguration.h
Ellipse Settings
colorEllipseLine
The color of the ellipse line. Default is #FEA428
@property (nonatomic, strong) UIColor *colorEllipseLineDeclared In
CWKConfiguration.h
widthEllipseLine
The width of the ellipse line. Default is 2
@property (nonatomic, strong) NSNumber *widthEllipseLineDeclared In
CWKConfiguration.h
Rectangle Settings
colorRectangleLine
The color of the rectangle border line Default is #97040B
@property (nonatomic, strong) UIColor *colorRectangleLineDeclared In
CWKConfiguration.h
colorRectangleFill
The fill color of the rectangle Default is #FFD70008
@property (nonatomic, strong) UIColor *colorRectangleFillDeclared In
CWKConfiguration.h
widthRectangleLine
The width of the rectangle border line Default is 2
@property (nonatomic, strong) NSNumber *widthRectangleLineDeclared In
CWKConfiguration.h
Upper Chart Axes
showUpperXAxis
When enabled, the upper X axis area is shown. Defaults to YES
@property (nonatomic, assign) BOOL showUpperXAxisDeclared In
CWKConfiguration.h
showUpperYAxis
When enabled, the upper Y axis area is shown. Defaults to YES
@property (nonatomic, assign) BOOL showUpperYAxisDeclared In
CWKConfiguration.h
colorXAxisUpperBackground
Upper chart X-Axis background color

@property (nonatomic, strong) UIColor *colorXAxisUpperBackgroundDeclared In
CWKConfiguration.h
colorYAxisUpperBackground
Upper chart Y-Axis background color

@property (nonatomic, strong) UIColor *colorYAxisUpperBackgroundDeclared In
CWKConfiguration.h
heightXAxisUpper
Upper chart X-Axis height. Default is nil which lets the axis adjust height automatically.
@property (nullable, nonatomic, strong) NSNumber *heightXAxisUpperDeclared In
CWKConfiguration.h
widthYAxisUpper
Upper chart Y-Axis width

@property (nonatomic, strong) NSNumber *widthYAxisUpperDeclared In
CWKConfiguration.h
colorXAxisUpperLine
Color of the line separating the upper chart’s X-Axis from the chart area.

@property (nonatomic, strong) UIColor *colorXAxisUpperLineDeclared In
CWKConfiguration.h
colorYAxisUpperLine
Color of the line separating the upper chart’s Y-Axis from the chart area.

@property (nonatomic, strong) UIColor *colorYAxisUpperLineDeclared In
CWKConfiguration.h
colorUpperMinorTickStyleLabel
Color of the upper chart minor tick labels.
@property (nonatomic, strong) UIColor *colorUpperMinorTickStyleLabelDeclared In
CWKConfiguration.h
colorUpperMinorTickStyleLine
Color of the upper chart minor tick lines.

@property (nonatomic, strong) UIColor *colorUpperMinorTickStyleLineDeclared In
CWKConfiguration.h
colorUpperMajorTickStyleLabel
Color of the upper chart major tick labels.

@property (nonatomic, strong) UIColor *colorUpperMajorTickStyleLabelDeclared In
CWKConfiguration.h
colorUpperMajorTickStyleLine
Color of the upper chart major tick lines.

@property (nonatomic, strong) UIColor *colorUpperMajorTickStyleLineDeclared In
CWKConfiguration.h
colorUpperMajorGridStyleLine
Color of the upper chart grid lines that go across the chart area.

@property (nonatomic, strong) UIColor *colorUpperMajorGridStyleLineDeclared In
CWKConfiguration.h
lengthXAxisUpperTickLine
lengthXAxisUpperTickLine – Default = 5
@property (nonatomic, strong) NSNumber *lengthXAxisUpperTickLineDeclared In
CWKConfiguration.h
widthXAxisUpperTickLine
widthXAxisUpperTickLine – Default = 1
@property (nonatomic, strong) NSNumber *widthXAxisUpperTickLineDeclared In
CWKConfiguration.h
lengthYAxisUpperTickLine
lengthYAxisUpperTickLine – Default = 0
@property (nonatomic, strong) NSNumber *lengthYAxisUpperTickLineDeclared In
CWKConfiguration.h
widthYAxisUpperTickLine
widthYAxisUpperTickLine – Default = 0
@property (nonatomic, strong) NSNumber *widthYAxisUpperTickLineDeclared In
CWKConfiguration.h
lengthXAxisLowerTickLine
lengthXAxisLowerTickLine – Default = 5
@property (nonatomic, strong) NSNumber *lengthXAxisLowerTickLineDeclared In
CWKConfiguration.h
widthXAxisLowerTickLine
widthXAxisLowerTickLine – Default = 1
@property (nonatomic, strong) NSNumber *widthXAxisLowerTickLineDeclared In
CWKConfiguration.h
lengthYAxisLowerTickLine
lengthYAxisLowerTickLine – Default = 0
@property (nonatomic, strong) NSNumber *lengthYAxisLowerTickLineDeclared In
CWKConfiguration.h
widthYAxisLowerTickLine
widthYAxisLowerTickLine – Default = 0
@property (nonatomic, strong) NSNumber *widthYAxisLowerTickLineDeclared In
CWKConfiguration.h
fontUpperXAxisLabel
Font of the upper chart X-Axis

@property (nonatomic, strong) UIFont *fontUpperXAxisLabelDeclared In
CWKConfiguration.h
fontUpperYAxisLabel
Font of the upper chart Y-Axis

@property (nonatomic, strong) UIFont *fontUpperYAxisLabelDeclared 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 *widthXAxisUpperLineDeclared 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 *widthYAxisUpperLineDeclared In
CWKConfiguration.h
showXAxisMajorGridLinesUpper
Show major gridlines on the upper chart’s X-Axis. Defaults to NO.
@property (nonatomic, assign) BOOL showXAxisMajorGridLinesUpperDeclared In
CWKConfiguration.h
showYAxisMajorGridLinesUpper
Show major gridlines on the upper chart’s Y-Axis. Defaults to YES.
@property (nonatomic, assign) BOOL showYAxisMajorGridLinesUpperDeclared In
CWKConfiguration.h
majorGridLinesDashedUpper
Major gridlines on upper chart use dashed style.

@property (nonatomic, assign) BOOL majorGridLinesDashedUpperDeclared 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 *widthMajorGridLinesDashedUpperDeclared In
CWKConfiguration.h
enableUpperXAxisMinorTicks
Enable minor ticks on upper chart X-Axis.
@property (nonatomic, assign) BOOL enableUpperXAxisMinorTicksDeclared In
CWKConfiguration.h
enableUpperYAxisMinorTicks
Enable minor ticks on upper chart Y-Axis.

@property (nonatomic, assign) BOOL enableUpperYAxisMinorTicksDeclared In
CWKConfiguration.h
enableUpperXAxisMajorTicks
Enable major ticks on upper chart X-Axis.

@property (nonatomic, assign) BOOL enableUpperXAxisMajorTicksDeclared In
CWKConfiguration.h
enableUpperYAxisMajorTicks
Enable major ticks on upper chart Y-Axis.

@property (nonatomic, assign) BOOL enableUpperYAxisMajorTicksDeclared In
CWKConfiguration.h
upperYAxisTickLabelAlignment
Customize the alignment of the tick labels for the upper Y axis. Defaults to NSTextAlignmentLeft.

@property (nonatomic, assign) NSTextAlignment upperYAxisTickLabelAlignmentDeclared In
CWKConfiguration.h
upperYAxisTickLabelLeftInset
Inset added to the left edge of the upper chart Y-Axis label
* Default = 8
@property (nonatomic, assign) CGFloat upperYAxisTickLabelLeftInsetDeclared In
CWKConfiguration.h
upperYAxisTickLabelRightInset
Inset added to the right edge of the upper chart Y-Axis label
* Default = 8
@property (nonatomic, assign) CGFloat upperYAxisTickLabelRightInsetDeclared 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 positionUpperYAxisOnRightDeclared In
CWKConfiguration.h
upperXAxisLeftDataInsetPercent
Insets the leftmost data by a percentage of the data width. Defaults to .005 (.5%)

@property (nonatomic, assign) double upperXAxisLeftDataInsetPercentDeclared In
CWKConfiguration.h
upperXAxisRightDataInsetPercent
Insets the rightmost data by a percentage of the data width. Defaults to .005 (.5%)

@property (nonatomic, assign) double upperXAxisRightDataInsetPercentDeclared In
CWKConfiguration.h
upperXAxisTickClippingEnabled
When enabled, partial tick marks are omitted. Defaults to YES

@property (nonatomic, assign) BOOL upperXAxisTickClippingEnabledDeclared In
CWKConfiguration.h
upperXAxisTickClippingRemovesTickLine
When enabled, the tick line is removed for clipped tick marks. Defaults to YES
@property (nonatomic, assign) BOOL upperXAxisTickClippingRemovesTickLineDeclared In
CWKConfiguration.h
upperYAxisTickClippingEnabled
When enabled, partial tick marks are omitted. Defaults to YES

@property (nonatomic, assign) BOOL upperYAxisTickClippingEnabledDeclared In
CWKConfiguration.h
upperYAxisTickClippingRemovesTickLine
When enabled, the tick line is removed for clipped tick marks. Defaults to YES
@property (nonatomic, assign) BOOL upperYAxisTickClippingRemovesTickLineDeclared In
CWKConfiguration.h
floatingXAxis
When enabled, the x-axis sits at the bottom the CWKChartView. If multiple lower charts are enabled and scrollview is enabled, it will act as a sticky footer. Enabling this will also disable other x-axes on the chart. The floating x-axis gets settings upper x-axis settings. Default = NO
@property (nonatomic, assign) BOOL floatingXAxisDeclared In
CWKConfiguration.h
Lower Chart Axes
showLowerXAxis
When enabled, the lower X axis area is shown. Defaults to NO
@property (nonatomic, assign) BOOL showLowerXAxisDeclared In
CWKConfiguration.h
showLowerYAxis
When enabled, the lower Y axis area is shown. Defaults to YES
@property (nonatomic, assign) BOOL showLowerYAxisDeclared In
CWKConfiguration.h
colorXAxisLowerBackground
colorXAxisLowerBackground
@property (nonatomic, strong) UIColor *colorXAxisLowerBackgroundDeclared In
CWKConfiguration.h
colorYAxisLowerBackground
Lower chart Y-Axis background color

@property (nonatomic, strong) UIColor *colorYAxisLowerBackgroundDeclared In
CWKConfiguration.h
heightXAxisLower
Lower chart X-Axis height. Default is nil which lets the axis adjust height automatically.
@property (nullable, nonatomic, strong) NSNumber *heightXAxisLowerDeclared In
CWKConfiguration.h
widthYAxisLower
Lower chart Y-Axis width.

@property (nonatomic, strong) NSNumber *widthYAxisLowerDeclared In
CWKConfiguration.h
colorXAxisLowerLine
Color of the line separating the lower chart’s X-Axis from the chart area.

@property (nonatomic, strong) UIColor *colorXAxisLowerLineDeclared In
CWKConfiguration.h
colorYAxisLowerLine
Color of the line separating the lower chart’s Y-Axis from the chart area.

@property (nonatomic, strong) UIColor *colorYAxisLowerLineDeclared In
CWKConfiguration.h
colorLowerMinorTickStyleLabel
Color of the lower chart minor tick labels.
@property (nonatomic, strong) UIColor *colorLowerMinorTickStyleLabelDeclared In
CWKConfiguration.h
colorLowerMinorTickStyleLine
Color of the lower chart minor tick lines.

@property (nonatomic, strong) UIColor *colorLowerMinorTickStyleLineDeclared In
CWKConfiguration.h
colorLowerMajorTickStyleLabel
Color of the lower chart major tick labels.

@property (nonatomic, strong) UIColor *colorLowerMajorTickStyleLabelDeclared In
CWKConfiguration.h
colorLowerMajorTickStyleLine
Color of the lower chart major tick lines.

@property (nonatomic, strong) UIColor *colorLowerMajorTickStyleLineDeclared In
CWKConfiguration.h
colorLowerMajorGridStyleLine
Color of the lower chart grid lines that go across the chart area.

@property (nonatomic, strong) UIColor *colorLowerMajorGridStyleLineDeclared In
CWKConfiguration.h
fontLowerXAxisLabel
Font of the lower chart X-Axis
@property (nonatomic, strong) UIFont *fontLowerXAxisLabelDeclared In
CWKConfiguration.h
fontLowerYAxisLabel
Font of the lower chart Y-Axis

@property (nonatomic, strong) UIFont *fontLowerYAxisLabelDeclared 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 *widthXAxisLowerLineDeclared 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 *widthYAxisLowerLineDeclared In
CWKConfiguration.h
showXAxisMajorGridLinesLower
Show major gridlines on the lower chart’s X-Axis. Defaults to NO.
@property (nonatomic, assign) BOOL showXAxisMajorGridLinesLowerDeclared In
CWKConfiguration.h
showYAxisMajorGridLinesLower
Show major gridlines on the lower chart’s Y-Axis. Defaults to YES.
@property (nonatomic, assign) BOOL showYAxisMajorGridLinesLowerDeclared In
CWKConfiguration.h
majorGridLinesDashedLower
Major gridlines on lower chart use dashed style.

@property (nonatomic, assign) BOOL majorGridLinesDashedLowerDeclared 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 *widthMajorGridLinesDashedLowerDeclared In
CWKConfiguration.h
enableLowerXAxisMinorTicks
Enable minor ticks on lower chart X-Axis.
@property (nonatomic, assign) BOOL enableLowerXAxisMinorTicksDeclared In
CWKConfiguration.h
enableLowerXAxisMajorTicks
Enable major ticks on lower chart X-Axis.
@property (nonatomic, assign) BOOL enableLowerXAxisMajorTicksDeclared In
CWKConfiguration.h
enableLowerYAxisMinorTicks
Enable minor ticks on lower chart Y-Axis.

@property (nonatomic, assign) BOOL enableLowerYAxisMinorTicksDeclared In
CWKConfiguration.h
lowerYAxisTickLabelAlignment
Customize the alignment of the tick labels for the lower Y axis. Defaults to NSTextAlignmentLeft.

@property (nonatomic, assign) NSTextAlignment lowerYAxisTickLabelAlignmentDeclared In
CWKConfiguration.h
lowerYAxisTickLabelLeftInset
Inset added to the left edge of the lower chart Y-Axis label
* Default = 8
@property (nonatomic, assign) CGFloat lowerYAxisTickLabelLeftInsetDeclared In
CWKConfiguration.h
lowerYAxisTickLabelRightInset
Inset added to the right edge of the lower chart Y-Axis label
* Default = 8
@property (nonatomic, assign) CGFloat lowerYAxisTickLabelRightInsetDeclared In
CWKConfiguration.h
lowerXAxisLeftDataInsetPercent
lowerXAxisLeftDataInsetPercent - Insets the leftmost data by a percentage of the data width. Defaults to .005 (.5%)

@property (nonatomic, assign) double lowerXAxisLeftDataInsetPercentDeclared In
CWKConfiguration.h
lowerXAxisRightDataInsetPercent
lowerXAxisRightDataInsetPercent - Insets the rightmost data by a percentage of the data width. Defaults to .005 (.5%)

@property (nonatomic, assign) double lowerXAxisRightDataInsetPercentDeclared In
CWKConfiguration.h
lowerXAxisTickClippingEnabled
When enabled, partial tick marks are omitted. Defaults to YES
@property (nonatomic, assign) BOOL lowerXAxisTickClippingEnabledDeclared In
CWKConfiguration.h
lowerXAxisTickClippingRemovesTickLine
When enabled, the tick line is removed for clipped tick marks. Defaults to YES
@property (nonatomic, assign) BOOL lowerXAxisTickClippingRemovesTickLineDeclared In
CWKConfiguration.h
lowerYAxisTickClippingEnabled
lowerYAxisTickClippingEnabled - when enabled, partial tick marks are omitted. Defaults to YES

@property (nonatomic, assign) BOOL lowerYAxisTickClippingEnabledDeclared In
CWKConfiguration.h
lowerYAxisTickClippingRemovesTickLine
lowerYAxisTickClippingRemovesTickLine - when enabled, the tick line is removed for clipped tick marks. Defaults to YES
@property (nonatomic, assign) BOOL lowerYAxisTickClippingRemovesTickLineDeclared In
CWKConfiguration.h
Crosshair View Colors
colorCrosshair
The color of the crosshair lines.

@property (nonatomic, strong) UIColor *colorCrosshairDeclared In
CWKConfiguration.h
colorCrosshairViewBackground
The background color of the crosshair information view.

@property (nonatomic, strong) UIColor *colorCrosshairViewBackgroundDeclared In
CWKConfiguration.h
colorCrosshairViewBorder
The color of the border of the crosshair information view.

@property (nonatomic, strong) UIColor *colorCrosshairViewBorderDeclared In
CWKConfiguration.h
colorCrosshairViewText
The text color in the crosshair information view.

@property (nonatomic, strong) UIColor *colorCrosshairViewTextDeclared In
CWKConfiguration.h
fontCrosshairView
The text font in the crosshair information view.

@property (nonatomic, strong) UIFont *fontCrosshairViewDeclared In
CWKConfiguration.h
cornerCrosshairView
The corner radius of the crosshair information view.

@property (nonatomic, assign) NSInteger cornerCrosshairViewDeclared In
CWKConfiguration.h
crosshairLineDashed
Control if the crosshair lines are dashed Default = YES
@property (nonatomic, assign) BOOL crosshairLineDashedDeclared In
CWKConfiguration.h
crosshairLineRoundDashes
Control if the dashes in the extended hours dividing lines are round shaped Default = NO
@property (nonatomic, assign) BOOL crosshairLineRoundDashesDeclared In
CWKConfiguration.h
widthCrosshairLineDashLine
The width of the dash line to use when dashing the crosshair lines Default = @2
@property (nonatomic, strong) NSNumber *widthCrosshairLineDashLineDeclared In
CWKConfiguration.h
widthCrosshairLineDashGap
The width of the dash gap to use when dashing the crosshair lines Default = @2
@property (nonatomic, strong) NSNumber *widthCrosshairLineDashGapDeclared In
CWKConfiguration.h
stringUpperChartNoDataMessage
Text For upper indicator no data label

@property (nonatomic, strong) NSString *stringUpperChartNoDataMessageDeclared In
CWKConfiguration.h
stringLowerChartNoDataMessage
Text For lower indicator no data label

@property (nonatomic, strong) NSString *stringLowerChartNoDataMessageDeclared In
CWKConfiguration.h
fontUpperChartNoData
Font For upper chart no data label
.png)
@property (nonatomic, strong) UIFont *fontUpperChartNoDataDeclared In
CWKConfiguration.h
fontLowerChartNoData
Font For lower indicator no data label

@property (nonatomic, strong) UIFont *fontLowerChartNoDataDeclared In
CWKConfiguration.h
colorUpperChartNoData
text color For upper indicator no data label

@property (nonatomic, strong) UIColor *colorUpperChartNoDataDeclared In
CWKConfiguration.h
colorUpperChartNoDataBackground
background color For upper indicator no data label
Defaults to clear
.png)
@property (nonatomic, strong) UIColor *colorUpperChartNoDataBackgroundDeclared In
CWKConfiguration.h
colorLowerChartNoData
text color For lower indicator no data label

@property (nonatomic, strong) UIColor *colorLowerChartNoDataDeclared In
CWKConfiguration.h
colorLowerChartNoDataBackground
background color For lower indicator no data label
Defaults to clear
.png)
@property (nonatomic, strong) UIColor *colorLowerChartNoDataBackgroundDeclared In
CWKConfiguration.h
Stock Price Colors and Sizing
colorStyleCandlestickRising
The color of rising candlesticks.

@property (nonatomic, strong) UIColor *colorStyleCandlestickRisingDeclared In
CWKConfiguration.h
colorStyleCandlestickFalling
The color of falling candlesticks.

@property (nonatomic, strong) UIColor *colorStyleCandlestickFallingDeclared In
CWKConfiguration.h
colorStyleCandlestickNoChange
The color of unchanged candlesticks.
@property (nonatomic, strong) UIColor *colorStyleCandlestickNoChangeDeclared In
CWKConfiguration.h
widthStyleCandlestickOutline
The width of the candlestick outline (Default 1.5f)

@property (nonatomic, strong) NSNumber *widthStyleCandlestickOutlineDeclared In
CWKConfiguration.h
widthStyleCandlestickStick
The width of the candlestick stick (Default 1.5f)

@property (nonatomic, strong) NSNumber *widthStyleCandlestickStickDeclared In
CWKConfiguration.h
colorStyleBar
The color bar price charts.

@property (nonatomic, strong) UIColor *colorStyleBarDeclared In
CWKConfiguration.h
colorStyleBarBelowZero
The bar color when the value is negative.

@property (nonatomic, strong) UIColor *colorStyleBarBelowZeroDeclared In
CWKConfiguration.h
colorStyleDot
The color dot price charts.

@property (nonatomic, strong) UIColor *colorStyleDotDeclared In
CWKConfiguration.h
radiusDot
The radius of the dot (Default 5.f)

@property (nonatomic, strong) NSNumber *radiusDotDeclared In
CWKConfiguration.h
colorStyleMountainLine
The color of the top edge of a mountain chart

@property (nonatomic, strong) UIColor *colorStyleMountainLineDeclared In
CWKConfiguration.h
colorStyleMountainAreaFill
The fill color of mountain charts.

@property (nonatomic, strong) UIColor *colorStyleMountainAreaFillDeclared In
CWKConfiguration.h
colorStyleMountainAreaFillTwo
The bottom fill color of mountain charts for gradient fill, used if mountainChartsUseGradient is YES.
.png)
@property (nonatomic, strong) UIColor *colorStyleMountainAreaFillTwoDeclared In
CWKConfiguration.h
colorStyleMountainBelowBaselineLine
The color of the bottom edge of a mountain chart below the baseline
.png)
@property (nonatomic, strong) UIColor *colorStyleMountainBelowBaselineLineDeclared In
CWKConfiguration.h
colorStyleMountainAreaBelowBaselineFill
The fill color of mountain charts below the baseline
.png)
@property (nonatomic, strong) UIColor *colorStyleMountainAreaBelowBaselineFillDeclared In
CWKConfiguration.h
colorStyleMountainAreaBelowBaselineFillTwo
The top fill color of mountain charts for gradient fill below the baseline, used if mountainChartsUseGradient is YES.
.png)
@property (nonatomic, strong) UIColor *colorStyleMountainAreaBelowBaselineFillTwoDeclared 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 mountainChartsUseGradientDeclared In
CWKConfiguration.h
colorStyleLine
The color for line charts.

@property (nonatomic, strong) UIColor *colorStyleLineDeclared In
CWKConfiguration.h
colorStyleOHLCRising
The OHLC color for a rising segment

@property (nonatomic, strong) UIColor *colorStyleOHLCRisingDeclared In
CWKConfiguration.h
colorStyleOHLCFalling
The OHLC color for a falling segment

@property (nonatomic, strong) UIColor *colorStyleOHLCFallingDeclared In
CWKConfiguration.h
widthStyleOHLCArm
The of the OHLC arm (Default 3.0)

@property (nonatomic, strong) NSNumber *widthStyleOHLCArmDeclared In
CWKConfiguration.h
widthStyleOHLCTrunk
The width of the OHLC trunk (Default 3.0)

@property (nonatomic, strong) NSNumber *widthStyleOHLCTrunkDeclared In
CWKConfiguration.h
Indicator Legend buttons
upperIndicatorButtonStyle
The indicator button style. The default is CWKIndicatorButtonStyleColorLeft

@property (nonatomic, assign) CWKIndicatorButtonStyle upperIndicatorButtonStyleDeclared In
CWKConfiguration.h
imageforUpperIndicatorButton
imageforIndicatorButton
@property (nullable, nonatomic, strong) UIImage *imageforUpperIndicatorButtonDeclared In
CWKConfiguration.h
imageforUpperIndicatorButtonHighlighted
imageforIndicatorButtonHighlighted
@property (nullable, nonatomic, strong) UIImage *imageforUpperIndicatorButtonHighlightedDeclared In
CWKConfiguration.h
fontUpperIndicatorButton
fontIndicatorButton
@property (nonatomic, strong) UIFont *fontUpperIndicatorButtonDeclared In
CWKConfiguration.h
sizeForIndicatorButton
sizeForIndicatorButton
@property (nonatomic, assign) CGSize sizeForIndicatorButtonDeclared In
CWKConfiguration.h
marginForIndicatorButton
marginForIndicatorButton
@property (nonatomic, strong) NSNumber *marginForIndicatorButtonDeclared In
CWKConfiguration.h
topMarginUpperIndicatorButtonBar
topMarginUpperIndicatorButtonBar
@property (nonatomic, strong) NSNumber *topMarginUpperIndicatorButtonBarDeclared In
CWKConfiguration.h
bottomMarginUpperIndicatorButtonBar
bottomMarginUpperIndicatorButtonBar
@property (nonatomic, strong) NSNumber *bottomMarginUpperIndicatorButtonBarDeclared In
CWKConfiguration.h
leftMarginUpperIndicatorButtonBar
leftMarginUpperIndicatorButtonBar
@property (nonatomic, strong) NSNumber *leftMarginUpperIndicatorButtonBarDeclared In
CWKConfiguration.h
rightMarginUpperIndicatorButtonBar
rightMarginUpperIndicatorButtonBar
@property (nonatomic, strong) NSNumber *rightMarginUpperIndicatorButtonBarDeclared In
CWKConfiguration.h
leftPaddingUpperIndicatorButton
leftPaddingUpperIndicatorButton – overrides marginForIndicator if set
@property (nonatomic, strong) NSNumber *leftPaddingUpperIndicatorButtonDeclared In
CWKConfiguration.h
rightPaddingUpperIndicatorButton
rightPaddingUpperIndicatorButton – overrides marginForIndicator if set
@property (nonatomic, strong) NSNumber *rightPaddingUpperIndicatorButtonDeclared In
CWKConfiguration.h
topPaddingUpperIndicatorButton
topPaddingUpperIndicatorButton – overrides marginForIndicator if set
@property (nonatomic, strong) NSNumber *topPaddingUpperIndicatorButtonDeclared In
CWKConfiguration.h
bottomPaddingUpperIndicatorButton
bottomPaddingUpperIndicatorButton – overrides marginForIndicator if set
@property (nonatomic, strong) NSNumber *bottomPaddingUpperIndicatorButtonDeclared In
CWKConfiguration.h
topMarginLowerIndicatorButtonBar
topMarginLowerIndicatorButtonBar
@property (nonatomic, strong) NSNumber *topMarginLowerIndicatorButtonBarDeclared In
CWKConfiguration.h
bottomMarginLowerIndicatorButtonBar
bottomMarginLowerIndicatorButtonBar
@property (nonatomic, strong) NSNumber *bottomMarginLowerIndicatorButtonBarDeclared In
CWKConfiguration.h
leftMarginLowerIndicatorButtonBar
leftMarginLowerIndicatorButtonBar
@property (nonatomic, strong) NSNumber *leftMarginLowerIndicatorButtonBarDeclared In
CWKConfiguration.h
rightMarginLowerIndicatorButtonBar
rightMarginLowerIndicatorButtonBar
@property (nonatomic, strong) NSNumber *rightMarginLowerIndicatorButtonBarDeclared In
CWKConfiguration.h
leftPaddingLowerIndicatorButton
leftPaddingLowerIndicatorButton – overrides marginForIndicator if set
@property (nonatomic, strong) NSNumber *leftPaddingLowerIndicatorButtonDeclared In
CWKConfiguration.h
rightPaddingLowerIndicatorButton
rightPaddingLowerIndicatorButton – overrides marginForIndicator if set
@property (nonatomic, strong) NSNumber *rightPaddingLowerIndicatorButtonDeclared In
CWKConfiguration.h
topPaddingLowerIndicatorButton
topPaddingLowerIndicatorButton – overrides marginForIndicator if set
@property (nonatomic, strong) NSNumber *topPaddingLowerIndicatorButtonDeclared In
CWKConfiguration.h
bottomPaddingLowerIndicatorButton
bottomPaddingLowerIndicatorButton – overrides marginForIndicator if set
@property (nonatomic, strong) NSNumber *bottomPaddingLowerIndicatorButtonDeclared In
CWKConfiguration.h
colorUpperIndicatorButtonBackground
colorIndicatorButtonBackground
@property (nonatomic, strong) UIColor *colorUpperIndicatorButtonBackgroundDeclared In
CWKConfiguration.h
colorUpperIndicatorButtonHighlightedBackground
colorIndicatorButtonHighlightedBackground
@property (nonatomic, strong) UIColor *colorUpperIndicatorButtonHighlightedBackgroundDeclared In
CWKConfiguration.h
colorUpperIndicatorAddButtonText
colorIndicatorAddButtonText
@property (nonatomic, strong) UIColor *colorUpperIndicatorAddButtonTextDeclared In
CWKConfiguration.h
colorUpperIndicatorButtonText
colorIndicatorButtonText
@property (nonatomic, strong) UIColor *colorUpperIndicatorButtonTextDeclared In
CWKConfiguration.h
colorUpperIndicatorHighlightedAddButtonText
colorUpperIndicatorHighlightedAddButtonText
@property (nonatomic, strong) UIColor *colorUpperIndicatorHighlightedAddButtonTextDeclared In
CWKConfiguration.h
colorUpperIndicatorHighlightedButtonText
colorUpperIndicatorHighlightedButtonText
@property (nonatomic, strong) UIColor *colorUpperIndicatorHighlightedButtonTextDeclared In
CWKConfiguration.h
lowerIndicatorButtonStyle
The indicator button style. The default is CWKIndicatorButtonStyleColorPlain

@property (nonatomic, assign) CWKIndicatorButtonStyle lowerIndicatorButtonStyleDeclared In
CWKConfiguration.h
imageforLowerIndicatorButton
imageforIndicatorButton
@property (nullable, nonatomic, strong) UIImage *imageforLowerIndicatorButtonDeclared In
CWKConfiguration.h
imageforLowerIndicatorButtonHighlighted
imageforIndicatorButtonHighlighted
@property (nullable, nonatomic, strong) UIImage *imageforLowerIndicatorButtonHighlightedDeclared In
CWKConfiguration.h
fontLowerIndicatorButton
fontIndicatorButton
@property (nonatomic, strong) UIFont *fontLowerIndicatorButtonDeclared In
CWKConfiguration.h
colorLowerIndicatorButtonBackground
colorIndicatorButtonBackground
@property (nonatomic, strong) UIColor *colorLowerIndicatorButtonBackgroundDeclared In
CWKConfiguration.h
colorLowerIndicatorButtonHighlightedBackground
colorIndicatorButtonHighlightedBackground
@property (nonatomic, strong) UIColor *colorLowerIndicatorButtonHighlightedBackgroundDeclared In
CWKConfiguration.h
colorLowerIndicatorAddButtonText
colorIndicatorAddButtonText
@property (nonatomic, strong) UIColor *colorLowerIndicatorAddButtonTextDeclared In
CWKConfiguration.h
colorLowerIndicatorButtonText
colorIndicatorButtonText
@property (nonatomic, strong) UIColor *colorLowerIndicatorButtonTextDeclared In
CWKConfiguration.h
colorLowerIndicatorHighlightedAddButtonText
colorHighlightedIndicatorAddButtonText
@property (nonatomic, strong) UIColor *colorLowerIndicatorHighlightedAddButtonTextDeclared In
CWKConfiguration.h
colorLowerIndicatorHighlightedButtonText
colorHighlightedIndicatorButtonText
@property (nonatomic, strong) UIColor *colorLowerIndicatorHighlightedButtonTextDeclared In
CWKConfiguration.h
showLowerIndicatorParametersOnButton
if YES lower indicators buttons will display indicator parameters. Default is YES.

@property (nonatomic, assign) BOOL showLowerIndicatorParametersOnButtonDeclared In
CWKConfiguration.h
showUpperIndicatorParametersOnButton
if YES upper indicators buttons will display indicator parameters Default is YES.

@property (nonatomic, assign) BOOL showUpperIndicatorParametersOnButtonDeclared 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 *widthOfLineDeclared In
CWKConfiguration.h
bollingerBandsFillEnabled
bollingerBandsFillEnabled
@property (nonatomic, assign) BOOL bollingerBandsFillEnabledDeclared In
CWKConfiguration.h
colorBollingerFill
colorBollingerFill
@property (nonatomic, strong) UIColor *colorBollingerFillDeclared In
CWKConfiguration.h
colorBollingerLines
colorBollingerLines
@property (nonatomic, strong) UIColor *colorBollingerLinesDeclared In
CWKConfiguration.h
widthBollingerLines
widthBollingerLines
@property (nonatomic, strong) NSNumber *widthBollingerLinesDeclared In
CWKConfiguration.h
colorEMAFirst
colorEMAFirst
@property (nonatomic, strong) UIColor *colorEMAFirstDeclared In
CWKConfiguration.h
widthEMAFirst
widthEMAFirst
@property (nonatomic, strong) NSNumber *widthEMAFirstDeclared In
CWKConfiguration.h
colorEMASecond
colorEMASecond
@property (nonatomic, strong) UIColor *colorEMASecondDeclared In
CWKConfiguration.h
widthEMASecond
widthEMASecond
@property (nonatomic, strong) NSNumber *widthEMASecondDeclared In
CWKConfiguration.h
colorEMAThird
colorEMAThird
@property (nonatomic, strong) UIColor *colorEMAThirdDeclared In
CWKConfiguration.h
widthEMAThird
widthEMAThird
@property (nonatomic, strong) NSNumber *widthEMAThirdDeclared In
CWKConfiguration.h
colorSMAFirst
colorSMAFirst
@property (nonatomic, strong) UIColor *colorSMAFirstDeclared In
CWKConfiguration.h
widthSMAFirst
widthSMAFirst
@property (nonatomic, strong) NSNumber *widthSMAFirstDeclared In
CWKConfiguration.h
colorSMASecond
colorSMASecond
@property (nonatomic, strong) UIColor *colorSMASecondDeclared In
CWKConfiguration.h
widthSMASecond
widthSMASecond
@property (nonatomic, strong) NSNumber *widthSMASecondDeclared In
CWKConfiguration.h
colorSMAThird
colorSMAThird
@property (nonatomic, strong) UIColor *colorSMAThirdDeclared In
CWKConfiguration.h
widthSMAThird
widthSMAThird
@property (nonatomic, strong) NSNumber *widthSMAThirdDeclared In
CWKConfiguration.h
colorPriceChannel
colorPriceChannel
@property (nonatomic, strong) UIColor *colorPriceChannelDeclared In
CWKConfiguration.h
widthPriceChannel
widthPriceChannel
@property (nonatomic, strong) NSNumber *widthPriceChannelDeclared In
CWKConfiguration.h
colorWMAFirst
colorWMAFirst
@property (nonatomic, strong) UIColor *colorWMAFirstDeclared In
CWKConfiguration.h
widthWMAFirst
widthWMAFirst
@property (nonatomic, strong) NSNumber *widthWMAFirstDeclared In
CWKConfiguration.h
colorWMASecond
colorWMASecond
@property (nonatomic, strong) UIColor *colorWMASecondDeclared In
CWKConfiguration.h
widthWMASecond
widthWMASecond
@property (nonatomic, strong) NSNumber *widthWMASecondDeclared In
CWKConfiguration.h
colorWMAThird
colorWMAThird
@property (nonatomic, strong) UIColor *colorWMAThirdDeclared In
CWKConfiguration.h
widthWMAThird
widthWMAThird
@property (nonatomic, strong) NSNumber *widthWMAThirdDeclared In
CWKConfiguration.h
radiusPSAROuter
radiusPSAROuter
@property (nonatomic, strong) NSNumber *radiusPSAROuterDeclared In
CWKConfiguration.h
radiusPSARInner
radiusPSARInner
@property (nonatomic, strong) NSNumber *radiusPSARInnerDeclared In
CWKConfiguration.h
colorLinearRegression
colorLinearRegression
@property (nonatomic, strong) UIColor *colorLinearRegressionDeclared In
CWKConfiguration.h
widthLinearRegression
widthLinearRegression
@property (nonatomic, strong) NSNumber *widthLinearRegressionDeclared In
CWKConfiguration.h
disableDynamicLinearRegression
disableDynamicLinearRegression
@property (nonatomic, assign) BOOL disableDynamicLinearRegressionDeclared In
CWKConfiguration.h
colorDividend
colorDividend
@property (nonatomic, strong) UIColor *colorDividendDeclared In
CWKConfiguration.h
colorEarnings
colorEarnings
@property (nonatomic, strong) UIColor *colorEarningsDeclared In
CWKConfiguration.h
colorSplits
colorSplits
@property (nonatomic, strong) UIColor *colorSplitsDeclared In
CWKConfiguration.h
fontDividend
fontDividend
@property (nonatomic, strong) UIFont *fontDividendDeclared In
CWKConfiguration.h
fontEarnings
fontEarnings
@property (nonatomic, strong) UIFont *fontEarningsDeclared In
CWKConfiguration.h
fontSplits
fontSplits
@property (nonatomic, strong) UIFont *fontSplitsDeclared In
CWKConfiguration.h
stringDividendAnnouncement
stringDividendAnnouncement
@property (nonatomic, strong) NSString *stringDividendAnnouncementDeclared In
CWKConfiguration.h
stringEarningsAnnouncement
stringEarningsAnnouncement
@property (nonatomic, strong) NSString *stringEarningsAnnouncementDeclared In
CWKConfiguration.h
stringSplitsAnnouncement
stringSplitsAnnouncement
@property (nonatomic, strong) NSString *stringSplitsAnnouncementDeclared In
CWKConfiguration.h
colorDividendAnnotationBackground
colorDividendAnnotationBackground
@property (nonatomic, strong) UIColor *colorDividendAnnotationBackgroundDeclared In
CWKConfiguration.h
colorEarningsAnnotationBackground
colorEarningsAnnotationBackground
@property (nonatomic, strong) UIColor *colorEarningsAnnotationBackgroundDeclared In
CWKConfiguration.h
colorSplitsAnnotationBackground
colorSplitsAnnotationBackground
@property (nonatomic, strong) UIColor *colorSplitsAnnotationBackgroundDeclared In
CWKConfiguration.h
colorDividendText
colorDividendText
@property (nonatomic, strong) UIColor *colorDividendTextDeclared In
CWKConfiguration.h
colorEarningsText
colorEarningsText
@property (nonatomic, strong) UIColor *colorEarningsTextDeclared In
CWKConfiguration.h
colorSplitsText
colorSplitsText
@property (nonatomic, strong) UIColor *colorSplitsTextDeclared In
CWKConfiguration.h
colorLatestPriceLine
colorLatestPriceLine
@property (nonatomic, strong) UIColor *colorLatestPriceLineDeclared In
CWKConfiguration.h
widthLastestPriceLine
widthLatestPrice
@property (nonatomic, strong) NSNumber *widthLastestPriceLineDeclared In
CWKConfiguration.h
colorLatestPriceArrowBorder
colorLatestPriceArrowBorder
@property (nonatomic, strong) UIColor *colorLatestPriceArrowBorderDeclared In
CWKConfiguration.h
colorLatestPriceArrowText
colorLatestPriceArrowText
@property (nonatomic, strong) UIColor *colorLatestPriceArrowTextDeclared In
CWKConfiguration.h
colorLatestPriceArrowBackground
colorLatestPriceArrowBackground
@property (nonatomic, strong) UIColor *colorLatestPriceArrowBackgroundDeclared 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 latestPriceTrackingEnabledDeclared In
CWKConfiguration.h
latestPriceResizesToText
Defaults to YES. When enabled, the latest price arrow will fill the YAxis it sits in rather than resize to its text
@property (nonatomic, assign) BOOL latestPriceResizesToTextDeclared In
CWKConfiguration.h
colorVolumeByPriceDown
colorVolumeByPriceDown
@property (nonatomic, strong) UIColor *colorVolumeByPriceDownDeclared In
CWKConfiguration.h
colorVolumeByPriceNoChange
colorVolumeByPriceNoChange
@property (nonatomic, strong) UIColor *colorVolumeByPriceNoChangeDeclared In
CWKConfiguration.h
colorVolumeByPriceUp
colorVolumeByPriceUp
@property (nonatomic, strong) UIColor *colorVolumeByPriceUpDeclared In
CWKConfiguration.h
volumeByPriceBucketCount
Default is 12. The number of divisions for the volume by price indicator
@property (nonatomic, strong) NSNumber *volumeByPriceBucketCountDeclared In
CWKConfiguration.h
volumeByPriceVerticalPadding
Default is 2, the space between each bar of the volume by price indicator
@property (nonatomic, strong) NSNumber *volumeByPriceVerticalPaddingDeclared 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 *volumeByPriceWidthPercentDeclared 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 volumeByPriceUsesChartRangeDeclared 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 volumeByPriceShowsUnchangedValuesDeclared In
CWKConfiguration.h
comparisonYValueLabelsEnabled
symbol comparison y-axis labels
@property (nonatomic, assign) BOOL comparisonYValueLabelsEnabledDeclared In
CWKConfiguration.h
comparisonYValueLabelsSolidBackground
symbol comparison y-axis labels background color. If YES, [CWKSecuritySymbol symbolComparisonColor] will be used for the background color
@property (nonatomic, assign) BOOL comparisonYValueLabelsSolidBackgroundDeclared In
CWKConfiguration.h
colorComparisonYValueLabelsText
symbol comparison y-axis labels text color. If not set, colorLatestPriceArrowText will be used
@property (nonatomic, strong, nullable) UIColor *colorComparisonYValueLabelsTextDeclared In
CWKConfiguration.h
disableComparisonVerticalBar
disableComparisonVerticalBar
@property (nonatomic, assign) BOOL disableComparisonVerticalBarDeclared In
CWKConfiguration.h
disableComparisonVerticalBarInteractivity
disableComparisonVerticalBar – disable long press dragging of comparison bar
@property (nonatomic, assign) BOOL disableComparisonVerticalBarInteractivityDeclared In
CWKConfiguration.h
shouldResetNormalizeDateWhenPanning
shouldResetNormalizeDateWhenPanning – Default is NO
@property (nonatomic, assign) BOOL shouldResetNormalizeDateWhenPanningDeclared In
CWKConfiguration.h
widthComparisonVerticalBar
widthComparisonVerticalBar
@property (nonatomic, strong) NSNumber *widthComparisonVerticalBarDeclared In
CWKConfiguration.h
colorComparisonVerticalBar
colorComparisonVerticalBar
@property (nonatomic, strong) UIColor *colorComparisonVerticalBarDeclared In
CWKConfiguration.h
colorSymbolCompareZeroBar
symbol comparison baseline bar color
@property (nonatomic, strong) UIColor *colorSymbolCompareZeroBarDeclared In
CWKConfiguration.h
widthSymbolCompareZeroBar
widthSymbolCompareZeroBar
@property (nonatomic, strong) NSNumber *widthSymbolCompareZeroBarDeclared In
CWKConfiguration.h
colorSymbolCompare1
symbol comparison color 1
@property (nonatomic, strong) UIColor *colorSymbolCompare1Declared In
CWKConfiguration.h
colorSymbolCompare2
symbol comparison color 2
@property (nonatomic, strong) UIColor *colorSymbolCompare2Declared In
CWKConfiguration.h
colorSymbolCompare3
symbol comparison color 3
@property (nonatomic, strong) UIColor *colorSymbolCompare3Declared In
CWKConfiguration.h
colorSymbolCompare4
symbol comparison color 4
@property (nonatomic, strong) UIColor *colorSymbolCompare4Declared In
CWKConfiguration.h
colorSymbolCompare5
symbol comparison color 5
@property (nonatomic, strong) UIColor *colorSymbolCompare5Declared In
CWKConfiguration.h
colorSymbolCompare6
symbol comparison color 6
@property (nonatomic, strong) UIColor *colorSymbolCompare6Declared In
CWKConfiguration.h
colorSymbolCompare7
symbol comparison color 7
@property (nonatomic, strong) UIColor *colorSymbolCompare7Declared In
CWKConfiguration.h
colorSymbolCompare8
symbol comparison color 8
@property (nonatomic, strong) UIColor *colorSymbolCompare8Declared In
CWKConfiguration.h
colorSymbolCompare9
symbol comparison color 9
@property (nonatomic, strong) UIColor *colorSymbolCompare9Declared In
CWKConfiguration.h
colorSymbolCompare10
symbol comparison color 10
@property (nonatomic, strong) UIColor *colorSymbolCompare10Declared In
CWKConfiguration.h
colorSymbolCompare11
symbol comparison color 11
@property (nonatomic, strong) UIColor *colorSymbolCompare11Declared In
CWKConfiguration.h
colorSymbolCompare12
symbol comparison color 12
@property (nonatomic, strong) UIColor *colorSymbolCompare12Declared In
CWKConfiguration.h
widthSymbolCompare
widthSymbolCompare – if set, will be used instead of widthOfLine as default
@property (nonatomic, strong) NSNumber *widthSymbolCompareDeclared In
CWKConfiguration.h
fontHighLowIndicator
high-low indicator font
@property (nonatomic, strong) UIFont *fontHighLowIndicatorDeclared In
CWKConfiguration.h
colorHighIndicator
high-low indicator high color
@property (nonatomic, strong) UIColor *colorHighIndicatorDeclared In
CWKConfiguration.h
colorLowIndicator
high-low indicator low color
@property (nonatomic, strong) UIColor *colorLowIndicatorDeclared In
CWKConfiguration.h
Lower Indicators
colorVolumeNoChange
colorVolumeNoChange
@property (nonatomic, strong) UIColor *colorVolumeNoChangeDeclared In
CWKConfiguration.h
colorVolumeUp
colorVolumeUp
@property (nonatomic, strong) UIColor *colorVolumeUpDeclared In
CWKConfiguration.h
colorVolumeDown
colorVolumeDown
@property (nonatomic, strong) UIColor *colorVolumeDownDeclared In
CWKConfiguration.h
colorUpDownUp
colorUpDownUp
@property (nonatomic, strong) UIColor *colorUpDownUpDeclared In
CWKConfiguration.h
colorUpDownDown
colorUpDownDown
@property (nonatomic, strong) UIColor *colorUpDownDownDeclared In
CWKConfiguration.h
colorMACDEMA
colorMACDEMA
@property (nonatomic, strong) UIColor *colorMACDEMADeclared In
CWKConfiguration.h
colorMACDDivergenceUp
colorMACDDivergenceUp
@property (nonatomic, strong) UIColor *colorMACDDivergenceUpDeclared In
CWKConfiguration.h
colorMACDDivergenceDown
colorMACDDivergenceDown
@property (nonatomic, strong) UIColor *colorMACDDivergenceDownDeclared In
CWKConfiguration.h
widthMACD
widthMACD
@property (nonatomic, strong) NSNumber *widthMACDDeclared In
CWKConfiguration.h
colorRevenues
colorRevenues
@property (nonatomic, strong) UIColor *colorRevenuesDeclared In
CWKConfiguration.h
widthRevenues
widthRevenues
@property (nonatomic, strong) NSNumber *widthRevenuesDeclared In
CWKConfiguration.h
colorDividendYield
colorDividendYield
@property (nonatomic, strong) UIColor *colorDividendYieldDeclared In
CWKConfiguration.h
widthDividendYield
widthDividendYield
@property (nonatomic, strong) NSNumber *widthDividendYieldDeclared In
CWKConfiguration.h
colorRollingDividend
colorRollingDividend
@property (nonatomic, strong) UIColor *colorRollingDividendDeclared In
CWKConfiguration.h
widthRollingDividend
widthRollingDividend
@property (nonatomic, strong) NSNumber *widthRollingDividendDeclared In
CWKConfiguration.h
colorPERangeUpper
colorPERangeUpper
@property (nonatomic, strong) UIColor *colorPERangeUpperDeclared In
CWKConfiguration.h
colorPERangeLower
colorPERangeLower
@property (nonatomic, strong) UIColor *colorPERangeLowerDeclared In
CWKConfiguration.h
widthPERange
widthPERange
@property (nonatomic, strong) NSNumber *widthPERangeDeclared In
CWKConfiguration.h
colorPERatio
colorPERatio
@property (nonatomic, strong) UIColor *colorPERatioDeclared In
CWKConfiguration.h
widthPERatio
widthPERatio
@property (nonatomic, strong) NSNumber *widthPERatioDeclared In
CWKConfiguration.h
colorRollingEPS
colorRollingEPS
@property (nonatomic, strong) UIColor *colorRollingEPSDeclared In
CWKConfiguration.h
widthRollingEPS
widthRollingEPS
@property (nonatomic, strong) NSNumber *widthRollingEPSDeclared In
CWKConfiguration.h
colorMassIndex
colorMassIndex
@property (nonatomic, strong) UIColor *colorMassIndexDeclared In
CWKConfiguration.h
colorMassIndexSetup
colorMassIndexSetup
@property (nonatomic, strong) UIColor *colorMassIndexSetupDeclared In
CWKConfiguration.h
colorMassIndexTrigger
colorMassIndexTrigger
@property (nonatomic, strong) UIColor *colorMassIndexTriggerDeclared In
CWKConfiguration.h
widthMassIndex
widthMassIndex
@property (nonatomic, strong) NSNumber *widthMassIndexDeclared In
CWKConfiguration.h
colorMomentum
colorMomentum
@property (nonatomic, strong) UIColor *colorMomentumDeclared In
CWKConfiguration.h
colorMomentumBelowOneHundred
colorMomentumBelowOneHundred
@property (nonatomic, strong) UIColor *colorMomentumBelowOneHundredDeclared In
CWKConfiguration.h
widthMomentum
widthMomentum
@property (nonatomic, strong) NSNumber *widthMomentumDeclared In
CWKConfiguration.h
colorPriceRateOfChange
colorPriceRateOfChange
@property (nonatomic, strong) UIColor *colorPriceRateOfChangeDeclared In
CWKConfiguration.h
colorPriceRateOfChangeZeroLine
colorPriceRateOfChangeZeroLine
@property (nonatomic, strong) UIColor *colorPriceRateOfChangeZeroLineDeclared In
CWKConfiguration.h
widthPriceRateOfChange
widthPriceRateOfChange
@property (nonatomic, strong) NSNumber *widthPriceRateOfChangeDeclared In
CWKConfiguration.h
colorChaikinsVolatility
colorChaikinsVolatility
@property (nonatomic, strong) UIColor *colorChaikinsVolatilityDeclared In
CWKConfiguration.h
colorChaikinsVolatilityZeroLine
colorChaikinsVolatilityZeroLine
@property (nonatomic, strong) UIColor *colorChaikinsVolatilityZeroLineDeclared In
CWKConfiguration.h
widthChaikinsVolatility
widthChaikinsVolatility
@property (nonatomic, strong) NSNumber *widthChaikinsVolatilityDeclared In
CWKConfiguration.h
colorRelativeStrengthIndex
colorRelativeStrengthIndex
@property (nonatomic, strong) UIColor *colorRelativeStrengthIndexDeclared In
CWKConfiguration.h
colorRelativeStrengthIndexZeroLine
colorRelativeStrengthIndexZeroLine
@property (nonatomic, strong) UIColor *colorRelativeStrengthIndexZeroLineDeclared In
CWKConfiguration.h
colorRelativeStrengthIndexTopBar
colorRelativeStrengthIndexTopBar
@property (nonatomic, strong) UIColor *colorRelativeStrengthIndexTopBarDeclared In
CWKConfiguration.h
colorRelativeStrengthIndexBottomBar
colorRelativeStrengthIndexBottomBar
@property (nonatomic, strong) UIColor *colorRelativeStrengthIndexBottomBarDeclared In
CWKConfiguration.h
widthRelativeStrengthIndex
widthRelativeStrengthIndex
@property (nonatomic, strong) NSNumber *widthRelativeStrengthIndexDeclared In
CWKConfiguration.h
colorWilliamsPercentR
colorWilliamsPercentR
@property (nonatomic, strong) UIColor *colorWilliamsPercentRDeclared In
CWKConfiguration.h
colorWilliamsPercentRZeroLine
colorWilliamsPercentRZeroLine
@property (nonatomic, strong) UIColor *colorWilliamsPercentRZeroLineDeclared In
CWKConfiguration.h
colorWilliamsPercentRTopBar
colorWilliamsPercentRTopBar
@property (nonatomic, strong) UIColor *colorWilliamsPercentRTopBarDeclared In
CWKConfiguration.h
colorWilliamsPercentRBottomBar
colorWilliamsPercentRBottomBar
@property (nonatomic, strong) UIColor *colorWilliamsPercentRBottomBarDeclared In
CWKConfiguration.h
widthWilliamsPercentR
widthWilliamsPercentR
@property (nonatomic, strong) NSNumber *widthWilliamsPercentRDeclared In
CWKConfiguration.h
colorMoneyFlow
colorMoneyFlow
@property (nonatomic, strong) UIColor *colorMoneyFlowDeclared In
CWKConfiguration.h
widthMoneyFlow
widthMoneyFlow
@property (nonatomic, strong) NSNumber *widthMoneyFlowDeclared In
CWKConfiguration.h
colorMoneyFlowIndex
colorMoneyFlowIndex
@property (nonatomic, strong) UIColor *colorMoneyFlowIndexDeclared In
CWKConfiguration.h
colorMoneyFlowIndexZeroLine
colorMoneyFlowIndexZeroLine
@property (nonatomic, strong) UIColor *colorMoneyFlowIndexZeroLineDeclared In
CWKConfiguration.h
colorMoneyFlowIndexTopBar
colorMoneyFlowIndexTopBar
@property (nonatomic, strong) UIColor *colorMoneyFlowIndexTopBarDeclared In
CWKConfiguration.h
colorMoneyFlowIndexBottomBar
colorMoneyFlowIndexBottomBar
@property (nonatomic, strong) UIColor *colorMoneyFlowIndexBottomBarDeclared In
CWKConfiguration.h
widthMoneyFlowIndex
widthMoneyFlowIndex
@property (nonatomic, strong) NSNumber *widthMoneyFlowIndexDeclared In
CWKConfiguration.h
colorOnBalanceVolume
colorOnBalanceVolume
@property (nonatomic, strong) UIColor *colorOnBalanceVolumeDeclared In
CWKConfiguration.h
widthOnBalanceVolume
widthOnBalanceVolume
@property (nonatomic, strong) NSNumber *widthOnBalanceVolumeDeclared In
CWKConfiguration.h
colorVolumeRateOfChange
colorVolumeRateOfChange
@property (nonatomic, strong) UIColor *colorVolumeRateOfChangeDeclared In
CWKConfiguration.h
colorVolumeRateOfChangeZeroLine
colorVolumeRateOfChangeZeroLine
@property (nonatomic, strong) UIColor *colorVolumeRateOfChangeZeroLineDeclared In
CWKConfiguration.h
widthVolumeRateOfChange
widthVolumeRateOfChange
@property (nonatomic, strong) NSNumber *widthVolumeRateOfChangeDeclared In
CWKConfiguration.h
colorStochasticsKFast
colorStochasticsKFast
@property (nonatomic, strong) UIColor *colorStochasticsKFastDeclared In
CWKConfiguration.h
colorStochasticsDFast
colorStochasticsDFast
@property (nonatomic, strong) UIColor *colorStochasticsDFastDeclared In
CWKConfiguration.h
colorStochasticsFastZeroLine
colorStochasticsFastZeroLine
@property (nonatomic, strong) UIColor *colorStochasticsFastZeroLineDeclared In
CWKConfiguration.h
colorStochasticsFastTopBar
colorStochasticsFastTopBar
@property (nonatomic, strong) UIColor *colorStochasticsFastTopBarDeclared In
CWKConfiguration.h
colorStochasticsFastBottomBar
colorStochasticsFastBottomBar
@property (nonatomic, strong) UIColor *colorStochasticsFastBottomBarDeclared In
CWKConfiguration.h
widthStochasticsFast
widthStochasticsFast
@property (nonatomic, strong) NSNumber *widthStochasticsFastDeclared In
CWKConfiguration.h
colorStochasticsKSlow
colorStochasticsKSlow
@property (nonatomic, strong) UIColor *colorStochasticsKSlowDeclared In
CWKConfiguration.h
colorStochasticsDSlow
colorStochasticsDSlow
@property (nonatomic, strong) UIColor *colorStochasticsDSlowDeclared In
CWKConfiguration.h
colorStochasticsSlowZeroLine
colorStochasticsSlowZeroLine
@property (nonatomic, strong) UIColor *colorStochasticsSlowZeroLineDeclared In
CWKConfiguration.h
colorStochasticsSlowTopBar
colorStochasticsSlowTopBar
@property (nonatomic, strong) UIColor *colorStochasticsSlowTopBarDeclared In
CWKConfiguration.h
colorStochasticsSlowBottomBar
colorStochasticsSlowBottomBar
@property (nonatomic, strong) UIColor *colorStochasticsSlowBottomBarDeclared In
CWKConfiguration.h
widthStochasticsSlow
widthStochasticsSlow
@property (nonatomic, strong) NSNumber *widthStochasticsSlowDeclared In
CWKConfiguration.h
colorUltimateOscillator
colorUltimateOscillator
@property (nonatomic, strong) UIColor *colorUltimateOscillatorDeclared In
CWKConfiguration.h
colorUltimateOscillatorZeroLine
colorUltimateOscillatorZeroLine
@property (nonatomic, strong) UIColor *colorUltimateOscillatorZeroLineDeclared In
CWKConfiguration.h
colorUltimateOscillatorTopBar
@property (nonatomic, strong) UIColor *colorUltimateOscillatorTopBarDeclared In
CWKConfiguration.h
colorUltimateOscillatorBottomBar
@property (nonatomic, strong) UIColor *colorUltimateOscillatorBottomBarDeclared In
CWKConfiguration.h
widthUltimateOscillator
widthUltimateOscillator
@property (nonatomic, strong) NSNumber *widthUltimateOscillatorDeclared In
CWKConfiguration.h
colorDirectionalMovementIndex_ADX
colorDirectionalMovementIndex_ADX
@property (nonatomic, strong) UIColor *colorDirectionalMovementIndex_ADXDeclared In
CWKConfiguration.h
colorDirectionalMovementIndex_MinusDI
colorDirectionalMovementIndex_MinusDI
@property (nonatomic, strong) UIColor *colorDirectionalMovementIndex_MinusDIDeclared In
CWKConfiguration.h
colorDirectionalMovementIndex_PlusDI
colorDirectionalMovementIndex_PlusDI
@property (nonatomic, strong) UIColor *colorDirectionalMovementIndex_PlusDIDeclared In
CWKConfiguration.h
colorDirectionalMovementIndexADX
colorDirectionalMovementIndexADX
@property (nonatomic, strong) UIColor *colorDirectionalMovementIndexADXDeclared In
CWKConfiguration.h
colorDirectionalMovementIndexADXR
colorDirectionalMovementIndexADXR
@property (nonatomic, strong) UIColor *colorDirectionalMovementIndexADXRDeclared In
CWKConfiguration.h
colorDirectionalMovementIndexADXR_ADX
colorDirectionalMovementIndexADXR_ADX
@property (nonatomic, strong) UIColor *colorDirectionalMovementIndexADXR_ADXDeclared In
CWKConfiguration.h
widthDirectionalMovementIndex
widthDirectionalMovementIndex
@property (nonatomic, strong) NSNumber *widthDirectionalMovementIndexDeclared In
CWKConfiguration.h
colorAccumulationDistribution
colorAccumulationDistribution
@property (nonatomic, strong) UIColor *colorAccumulationDistributionDeclared In
CWKConfiguration.h
colorAccumulationDistributionZeroLine
colorAccumulationDistributionZeroLine
@property (nonatomic, strong) UIColor *colorAccumulationDistributionZeroLineDeclared In
CWKConfiguration.h
widthAccumulationDistribution
widthAccumulationDistribution
@property (nonatomic, strong) NSNumber *widthAccumulationDistributionDeclared In
CWKConfiguration.h
colorAverageTrueRange
colorAverageTrueRange
@property (nonatomic, strong) UIColor *colorAverageTrueRangeDeclared In
CWKConfiguration.h
widthAverageTrueRange
widthAverageTrueRange
@property (nonatomic, strong) NSNumber *widthAverageTrueRangeDeclared In
CWKConfiguration.h
colorAwesomeOscillatorUp
colorAwesomeOscillatorUp
@property (nonatomic, strong) UIColor *colorAwesomeOscillatorUpDeclared In
CWKConfiguration.h
colorAwesomeOscillatorDown
colorAwesomeOscillatorDown
@property (nonatomic, strong) UIColor *colorAwesomeOscillatorDownDeclared 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 *colorIndicatorPopoverBackgroundTopDeclared In
CWKConfiguration.h
colorIndicatorPopoverBackgroundBottom
The color of the bottom portion of the gradient for the indicator popover view background color.
@property (nonatomic, strong) UIColor *colorIndicatorPopoverBackgroundBottomDeclared In
CWKConfiguration.h
colorIndicatorPopoverName
The color of the name of the indicator popover text.
@property (nonatomic, strong) UIColor *colorIndicatorPopoverNameDeclared In
CWKConfiguration.h
fontIndicatorPopoverName
fontIndicatorPopoverName
@property (nonatomic, strong) UIFont *fontIndicatorPopoverNameDeclared In
CWKConfiguration.h
colorIndicatorPopoverDescription
colorIndicatorPopoverDescription
@property (nonatomic, strong) UIColor *colorIndicatorPopoverDescriptionDeclared In
CWKConfiguration.h
fontIndicatorPopoverDescription
fontIndicatorPopoverDescription
@property (nonatomic, strong) UIFont *fontIndicatorPopoverDescriptionDeclared In
CWKConfiguration.h
colorIndicatorPopoverUnderline
colorIndicatorPopoverUnderline
@property (nonatomic, strong) UIColor *colorIndicatorPopoverUnderlineDeclared In
CWKConfiguration.h
colorIndicatorPopoverUnderlineShadow
colorIndicatorPopoverUnderlineShadow
@property (nonatomic, strong) UIColor *colorIndicatorPopoverUnderlineShadowDeclared In
CWKConfiguration.h
colorIndicatorPopoverBorder
colorIndicatorPopoverBorder
@property (nonatomic, strong) UIColor *colorIndicatorPopoverBorderDeclared In
CWKConfiguration.h
imageIndicatorPopoverRemoveButton
imageIndicatorPopoverRemoveButton
@property (nullable, nonatomic, strong) UIImage *imageIndicatorPopoverRemoveButtonDeclared In
CWKConfiguration.h
colorIndicatorPopoverRemoveButtonText
colorIndicatorPopoverRemoveButtonText
@property (nonatomic, strong) UIColor *colorIndicatorPopoverRemoveButtonTextDeclared In
CWKConfiguration.h
fontIndicatorPopoverRemoveButtonText
fontIndicatorPopoverRemoveButtonText
@property (nonatomic, strong) UIFont *fontIndicatorPopoverRemoveButtonTextDeclared In
CWKConfiguration.h
imageIndicatorPopoverUpdateButton
imageIndicatorPopoverUpdateButton
@property (nullable, nonatomic, strong) UIImage *imageIndicatorPopoverUpdateButtonDeclared In
CWKConfiguration.h
colorIndicatorPopoverUpdateButtonText
colorIndicatorPopoverUpdateButtonText
@property (nonatomic, strong) UIColor *colorIndicatorPopoverUpdateButtonTextDeclared In
CWKConfiguration.h
fontIndicatorPopoverUpdateButtonText
fontIndicatorPopoverUpdateButtonText
@property (nonatomic, strong) UIFont *fontIndicatorPopoverUpdateButtonTextDeclared In
CWKConfiguration.h
colorIndicatorPopoverParameterLabelText
colorIndicatorPopoverParameterLabelText
@property (nonatomic, strong) UIColor *colorIndicatorPopoverParameterLabelTextDeclared In
CWKConfiguration.h
fontIndicatorPopoverParameterLabelText
color of fontIndicatorPopoverParameterLabelText
@property (nonatomic, strong) UIFont *fontIndicatorPopoverParameterLabelTextDeclared In
CWKConfiguration.h
colorIndicatorPopoverParameterTextfieldText
colorIndicatorPopoverParameterTextfieldText
@property (nonatomic, strong) UIColor *colorIndicatorPopoverParameterTextfieldTextDeclared In
CWKConfiguration.h
fontIndicatorPopoverParameterTextfieldText
fontIndicatorPopoverParameterTextfieldText
@property (nonatomic, strong) UIFont *fontIndicatorPopoverParameterTextfieldTextDeclared In
CWKConfiguration.h
colorIndicatorPopoverRemoveButtonColor
colorIndicatorPopoverRemoveButtonColor
@property (nonatomic, strong) UIColor *colorIndicatorPopoverRemoveButtonColorDeclared In
CWKConfiguration.h
colorIndicatorPopoverUpdateButtonColor
colorIndicatorPopoverUpdateButtonColor
@property (nonatomic, strong) UIColor *colorIndicatorPopoverUpdateButtonColorDeclared In
CWKConfiguration.h
colorIndicatorPopoverParameterTextfieldBackground
colorIndicatorPopoverParameterTextfieldBackground
@property (nonatomic, strong) UIColor *colorIndicatorPopoverParameterTextfieldBackgroundDeclared In
CWKConfiguration.h
colorAnnouncementLegend
colorAnnouncementLegend
@property (nonatomic, strong) UIColor *colorAnnouncementLegendDeclared In
CWKConfiguration.h
colorIndicatorPopoverParameterTextfieldBorder
colorIndicatorPopoverParameterTextfieldBorder
@property (nonatomic, strong) UIColor *colorIndicatorPopoverParameterTextfieldBorderDeclared In
CWKConfiguration.h
Event Settings
widthDividendsEventBorder
The border width of the dividends annotations. The default border width is 1.

@property (nonatomic, strong) NSNumber *widthDividendsEventBorderDeclared In
CWKConfiguration.h
widthEarningsEventBorder
The border width of the earnings annotations. The default border width is 1.

@property (nonatomic, strong) NSNumber *widthEarningsEventBorderDeclared In
CWKConfiguration.h
widthSplitsEventBorder
The border width of the splits annotations. The default border width is 1.

@property (nonatomic, strong) NSNumber *widthSplitsEventBorderDeclared In
CWKConfiguration.h
widthAnnouncementEventBorder
The border width of the announcement annotations. The default border width is 1.

@property (nonatomic, strong) NSNumber *widthAnnouncementEventBorderDeclared 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 dividendsEventAboveLineDeclared 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 earningsEventAboveLineDeclared 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 splitsEventAboveLineDeclared 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 announcementEventAboveLineDeclared 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 dividendsEventUseArrowDeclared 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 earningsEventUseArrowDeclared 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 splitsEventUseArrowDeclared 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 announcementEventUseArrowDeclared In
CWKConfiguration.h
widthDividendsEventStick
The width of the stick connecting the dividends annotations to the chart.

@property (nonatomic, strong) NSNumber *widthDividendsEventStickDeclared In
CWKConfiguration.h
widthEarningsEventStick
The width of the stick connecting the earnings annotations to the chart.

@property (nonatomic, strong) NSNumber *widthEarningsEventStickDeclared In
CWKConfiguration.h
widthSplitsEventStick
The width of the stick connecting the splits annotations to the chart.

@property (nonatomic, strong) NSNumber *widthSplitsEventStickDeclared In
CWKConfiguration.h
widthAnnouncementEventStick
The width of the stick connecting the announcement annotations to the chart.

@property (nonatomic, strong) NSNumber *widthAnnouncementEventStickDeclared In
CWKConfiguration.h
heightDividendsEventStick
The height of the stick connecting the dividends annotations to the chart.
@property (nonatomic, strong) NSNumber *heightDividendsEventStickDeclared In
CWKConfiguration.h
heightEarningsEventStick
The height of the stick connecting the earnings annotations to the chart.
@property (nonatomic, strong) NSNumber *heightEarningsEventStickDeclared In
CWKConfiguration.h
heightSplitsEventStick
The height of the stick connecting the splits annotations to the chart.
@property (nonatomic, strong) NSNumber *heightSplitsEventStickDeclared In
CWKConfiguration.h
heightAnnouncementEventStick
The height of the stick connecting the announcement annotations to the chart.
@property (nonatomic, strong) NSNumber *heightAnnouncementEventStickDeclared 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 *fontDividendsEventDeclared 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 *fontEarningsEventDeclared 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 *fontSplitsEventDeclared 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 *fontAnnouncementEventDeclared 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 attachDividendsEventsToEdgeOfChartDeclared 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 attachEarningsEventsToEdgeOfChartDeclared 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 attachSplitsEventsToEdgeOfChartDeclared 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 attachAnnouncementEventsToEdgeOfChartDeclared 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 showDividendsEventsAlongTopDeclared 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 showEarningsEventsAlongTopDeclared 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 showSplitsEventsAlongTopDeclared 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 showAnnouncementEventsAlongTopDeclared In
CWKConfiguration.h
Event Popover Settings
colorEventPopover
The color of the text used in an event popover
@property (nonatomic, strong) UIColor *colorEventPopoverDeclared In
CWKConfiguration.h
fontEventPopover
The font used in an even popover
@property (nonatomic, strong) UIFont *fontEventPopoverDeclared In
CWKConfiguration.h
widthCustomAnnouncementPopover
widthCustomAnnouncementPopover

@property (nonatomic, assign) CGFloat widthCustomAnnouncementPopoverDeclared In
CWKConfiguration.h
textAlignCustomAnnouncementPopover
textAlignCustomAnnouncementPopover

@property (nonatomic, assign) NSTextAlignment textAlignCustomAnnouncementPopoverDeclared 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 highLowIndicatorPlaceOnPriceLineDeclared 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 highLowIndicatorUseCloseValueDeclared In
CWKConfiguration.h
Indicator Description Strings - Upper
nameBollingerBands
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameBollingerBandsDeclared In
CWKConfiguration.h
nameShortBollingerBands
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortBollingerBandsDeclared In
CWKConfiguration.h
descriptionBollingerBands
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionBollingerBandsDeclared In
CWKConfiguration.h
nameEMAfirst
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameEMAfirstDeclared In
CWKConfiguration.h
nameShortEMAfirst
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortEMAfirstDeclared In
CWKConfiguration.h
descriptionEMAfirst
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionEMAfirstDeclared In
CWKConfiguration.h
nameEMAsecond
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameEMAsecondDeclared In
CWKConfiguration.h
nameShortEMAsecond
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortEMAsecondDeclared In
CWKConfiguration.h
descriptionEMAsecond
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionEMAsecondDeclared In
CWKConfiguration.h
nameEMAthird
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameEMAthirdDeclared In
CWKConfiguration.h
nameShortEMAthird
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortEMAthirdDeclared In
CWKConfiguration.h
descriptionEMAthird
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionEMAthirdDeclared In
CWKConfiguration.h
nameSMAfirst
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameSMAfirstDeclared In
CWKConfiguration.h
nameShortSMAfirst
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortSMAfirstDeclared In
CWKConfiguration.h
descriptionSMAfirst
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionSMAfirstDeclared In
CWKConfiguration.h
nameSMAsecond
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameSMAsecondDeclared In
CWKConfiguration.h
nameShortSMAsecond
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortSMAsecondDeclared In
CWKConfiguration.h
descriptionSMAsecond
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionSMAsecondDeclared In
CWKConfiguration.h
nameSMAthird
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameSMAthirdDeclared In
CWKConfiguration.h
nameShortSMAthird
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortSMAthirdDeclared In
CWKConfiguration.h
descriptionSMAthird
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionSMAthirdDeclared In
CWKConfiguration.h
namePrice
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *namePriceDeclared In
CWKConfiguration.h
nameShortPrice
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortPriceDeclared In
CWKConfiguration.h
descriptionPrice
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionPriceDeclared In
CWKConfiguration.h
nameTSF
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameTSFDeclared In
CWKConfiguration.h
nameShortTSF
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortTSFDeclared In
CWKConfiguration.h
descriptionTSF
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionTSFDeclared In
CWKConfiguration.h
namePriceChannel
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *namePriceChannelDeclared In
CWKConfiguration.h
nameShortPriceChannel
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortPriceChannelDeclared In
CWKConfiguration.h
descriptionPriceChannel
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionPriceChannelDeclared In
CWKConfiguration.h
nameMovingAverageEnvelope
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameMovingAverageEnvelopeDeclared In
CWKConfiguration.h
nameShortMovingAverageEnvelope
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortMovingAverageEnvelopeDeclared In
CWKConfiguration.h
descriptionMovingAverageEnvelope
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionMovingAverageEnvelopeDeclared In
CWKConfiguration.h
nameWeightedMovingAverageFirst
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameWeightedMovingAverageFirstDeclared In
CWKConfiguration.h
nameShortWeightedMovingAverageFirst
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortWeightedMovingAverageFirstDeclared In
CWKConfiguration.h
descriptionWeightedMovingAverageFirst
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionWeightedMovingAverageFirstDeclared In
CWKConfiguration.h
nameWeightedMovingAverageSecond
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameWeightedMovingAverageSecondDeclared In
CWKConfiguration.h
nameShortWeightedMovingAverageSecond
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortWeightedMovingAverageSecondDeclared In
CWKConfiguration.h
descriptionWeightedMovingAverageSecond
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionWeightedMovingAverageSecondDeclared In
CWKConfiguration.h
nameWeightedMovingAverageThird
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameWeightedMovingAverageThirdDeclared In
CWKConfiguration.h
nameShortWeightedMovingAverageThird
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortWeightedMovingAverageThirdDeclared In
CWKConfiguration.h
descriptionWeightedMovingAverageThird
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionWeightedMovingAverageThirdDeclared In
CWKConfiguration.h
nameDividends
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameDividendsDeclared In
CWKConfiguration.h
nameShortDividends
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortDividendsDeclared In
CWKConfiguration.h
descriptionDividends
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionDividendsDeclared In
CWKConfiguration.h
nameEarnings
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameEarningsDeclared In
CWKConfiguration.h
nameShortEarnings
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortEarningsDeclared In
CWKConfiguration.h
descriptionEarnings
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionEarningsDeclared In
CWKConfiguration.h
nameSplits
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameSplitsDeclared In
CWKConfiguration.h
nameShortSplits
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortSplitsDeclared In
CWKConfiguration.h
descriptionSplits
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionSplitsDeclared In
CWKConfiguration.h
nameCustomAnnouncements
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameCustomAnnouncementsDeclared In
CWKConfiguration.h
nameShortCustomAnnouncements
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortCustomAnnouncementsDeclared In
CWKConfiguration.h
descriptionCustomAnnouncements
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionCustomAnnouncementsDeclared In
CWKConfiguration.h
nameLatestPrice
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameLatestPriceDeclared In
CWKConfiguration.h
nameShortLatestPrice
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortLatestPriceDeclared In
CWKConfiguration.h
descriptionLatestPrice
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionLatestPriceDeclared In
CWKConfiguration.h
nameHighLowIndicator
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameHighLowIndicatorDeclared In
CWKConfiguration.h
nameShortHighLowIndicator
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortHighLowIndicatorDeclared In
CWKConfiguration.h
descriptionHighLowIndicator
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionHighLowIndicatorDeclared In
CWKConfiguration.h
nameVolumeByPriceIndicator
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameVolumeByPriceIndicatorDeclared In
CWKConfiguration.h
nameShortVolumeByPriceIndicator
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortVolumeByPriceIndicatorDeclared In
CWKConfiguration.h
descriptionVolumeByPriceIndicator
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionVolumeByPriceIndicatorDeclared In
CWKConfiguration.h
Indicator Description Strings - Lower
nameMACD
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameMACDDeclared In
CWKConfiguration.h
nameShortMACD
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortMACDDeclared In
CWKConfiguration.h
descriptionMACD
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionMACDDeclared In
CWKConfiguration.h
nameVolume
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameVolumeDeclared In
CWKConfiguration.h
nameShortVolume
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortVolumeDeclared In
CWKConfiguration.h
descriptionVolume
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionVolumeDeclared In
CWKConfiguration.h
nameUpDown
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameUpDownDeclared In
CWKConfiguration.h
nameShortUpDown
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortUpDownDeclared In
CWKConfiguration.h
descriptionUpDown
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionUpDownDeclared In
CWKConfiguration.h
nameMassIndex
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameMassIndexDeclared In
CWKConfiguration.h
nameShortMassIndex
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortMassIndexDeclared In
CWKConfiguration.h
descriptionMassIndex
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionMassIndexDeclared In
CWKConfiguration.h
nameMomentum
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameMomentumDeclared In
CWKConfiguration.h
nameShortMomentum
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortMomentumDeclared In
CWKConfiguration.h
descriptionMomentum
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionMomentumDeclared In
CWKConfiguration.h
namePriceRateOfChange
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *namePriceRateOfChangeDeclared In
CWKConfiguration.h
nameShortPriceRateOfChange
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortPriceRateOfChangeDeclared In
CWKConfiguration.h
descriptionPriceRateOfChange
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionPriceRateOfChangeDeclared In
CWKConfiguration.h
nameChaikinsVolatility
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameChaikinsVolatilityDeclared In
CWKConfiguration.h
nameShortChaikinsVolatility
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortChaikinsVolatilityDeclared In
CWKConfiguration.h
descriptionChaikinsVolatility
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionChaikinsVolatilityDeclared In
CWKConfiguration.h
nameRevenue
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameRevenueDeclared In
CWKConfiguration.h
nameShortRevenue
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortRevenueDeclared In
CWKConfiguration.h
descriptionRevenue
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionRevenueDeclared In
CWKConfiguration.h
nameDividendYield
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameDividendYieldDeclared In
CWKConfiguration.h
nameShortDividendYield
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortDividendYieldDeclared In
CWKConfiguration.h
descriptionDividendYield
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionDividendYieldDeclared In
CWKConfiguration.h
nameRollingDividend
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameRollingDividendDeclared In
CWKConfiguration.h
nameShortRollingDividend
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortRollingDividendDeclared In
CWKConfiguration.h
descriptionRollingDividend
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionRollingDividendDeclared In
CWKConfiguration.h
namePERange
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *namePERangeDeclared In
CWKConfiguration.h
nameShortPERange
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortPERangeDeclared In
CWKConfiguration.h
descriptionPERange
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionPERangeDeclared In
CWKConfiguration.h
namePERatio
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *namePERatioDeclared In
CWKConfiguration.h
nameShortPERatio
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortPERatioDeclared In
CWKConfiguration.h
descriptionPERatio
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionPERatioDeclared In
CWKConfiguration.h
nameRollingEPS
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameRollingEPSDeclared In
CWKConfiguration.h
nameShortRollingEPS
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortRollingEPSDeclared In
CWKConfiguration.h
descriptionRollingEPS
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionRollingEPSDeclared In
CWKConfiguration.h
nameRelativeStrengthIndex
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameRelativeStrengthIndexDeclared In
CWKConfiguration.h
nameShortRelativeStrengthIndex
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortRelativeStrengthIndexDeclared In
CWKConfiguration.h
descriptionRelativeStrengthIndex
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionRelativeStrengthIndexDeclared In
CWKConfiguration.h
nameWilliamsPercentR
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameWilliamsPercentRDeclared In
CWKConfiguration.h
nameShortWilliamsPercentR
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortWilliamsPercentRDeclared In
CWKConfiguration.h
descriptionWilliamsPercentR
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionWilliamsPercentRDeclared In
CWKConfiguration.h
nameParabolicStopAndReverse
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameParabolicStopAndReverseDeclared In
CWKConfiguration.h
nameShortParabolicStopAndReverse
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortParabolicStopAndReverseDeclared In
CWKConfiguration.h
descriptionParabolicStopAndReverse
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionParabolicStopAndReverseDeclared In
CWKConfiguration.h
nameLinearRegression
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameLinearRegressionDeclared In
CWKConfiguration.h
nameShortLinearRegression
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortLinearRegressionDeclared In
CWKConfiguration.h
descriptionLinearRegression
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionLinearRegressionDeclared In
CWKConfiguration.h
nameMoneyFlow
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameMoneyFlowDeclared In
CWKConfiguration.h
nameShortMoneyFlow
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortMoneyFlowDeclared In
CWKConfiguration.h
descriptionMoneyFlow
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionMoneyFlowDeclared In
CWKConfiguration.h
nameMoneyFlowIndex
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameMoneyFlowIndexDeclared In
CWKConfiguration.h
nameShortMoneyFlowIndex
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortMoneyFlowIndexDeclared In
CWKConfiguration.h
descriptionMoneyFlowIndex
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionMoneyFlowIndexDeclared In
CWKConfiguration.h
nameOnBalanceVolume
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameOnBalanceVolumeDeclared In
CWKConfiguration.h
nameShortOnBalanceVolume
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortOnBalanceVolumeDeclared In
CWKConfiguration.h
descriptionOnBalanceVolume
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionOnBalanceVolumeDeclared In
CWKConfiguration.h
nameVolumeRateOfChange
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameVolumeRateOfChangeDeclared In
CWKConfiguration.h
nameShortVolumeRateOfChange
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortVolumeRateOfChangeDeclared In
CWKConfiguration.h
descriptionVolumeRateOfChange
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionVolumeRateOfChangeDeclared In
CWKConfiguration.h
nameStochasticsFast
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameStochasticsFastDeclared In
CWKConfiguration.h
nameShortStochasticsFast
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortStochasticsFastDeclared In
CWKConfiguration.h
descriptionStochasticsFast
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionStochasticsFastDeclared In
CWKConfiguration.h
nameStochasticsSlow
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameStochasticsSlowDeclared In
CWKConfiguration.h
nameShortStochasticsSlow
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortStochasticsSlowDeclared In
CWKConfiguration.h
descriptionStochasticsSlow
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionStochasticsSlowDeclared In
CWKConfiguration.h
nameUltimateOscillator
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameUltimateOscillatorDeclared In
CWKConfiguration.h
nameShortUltimateOscillator
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortUltimateOscillatorDeclared In
CWKConfiguration.h
descriptionUltimateOscillator
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionUltimateOscillatorDeclared In
CWKConfiguration.h
nameDMI
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameDMIDeclared In
CWKConfiguration.h
nameShortDMI
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortDMIDeclared In
CWKConfiguration.h
descriptionDMI
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionDMIDeclared In
CWKConfiguration.h
nameDMI_ADX
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameDMI_ADXDeclared In
CWKConfiguration.h
nameShortDMI_ADX
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortDMI_ADXDeclared In
CWKConfiguration.h
descriptionDMI_ADX
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionDMI_ADXDeclared In
CWKConfiguration.h
nameDMI_ADXR
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameDMI_ADXRDeclared In
CWKConfiguration.h
nameShortDMI_ADXR
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortDMI_ADXRDeclared In
CWKConfiguration.h
descriptionDMI_ADXR
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionDMI_ADXRDeclared In
CWKConfiguration.h
nameADL
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameADLDeclared In
CWKConfiguration.h
nameShortADL
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortADLDeclared In
CWKConfiguration.h
descriptionADL
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionADLDeclared In
CWKConfiguration.h
nameAverageTrueRange
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameAverageTrueRangeDeclared In
CWKConfiguration.h
nameShortAverageTrueRange
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortAverageTrueRangeDeclared In
CWKConfiguration.h
descriptionAverageTrueRange
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionAverageTrueRangeDeclared In
CWKConfiguration.h
nameAwesomeOscillator
The text used as the title of the indicator popover.
@property (nonatomic, strong) NSString *nameAwesomeOscillatorDeclared In
CWKConfiguration.h
nameShortAwesomeOscillator
The text used as the indicator label name.
@property (nonatomic, strong) NSString *nameShortAwesomeOscillatorDeclared In
CWKConfiguration.h
descriptionAwesomeOscillator
The text used for the indicator description in the indicator popover.
@property (nonatomic, strong) NSString *descriptionAwesomeOscillatorDeclared In
CWKConfiguration.h
crosshairLabelPrice_Open
crosshairLabelPrice_Open – defaults to AccDist
@property (nonatomic, strong) NSString *crosshairLabelPrice_OpenDeclared In
CWKConfiguration.h
crosshairLabelPrice_High
crosshairLabelPrice_High – defaults to High
@property (nonatomic, strong) NSString *crosshairLabelPrice_HighDeclared In
CWKConfiguration.h
crosshairLabelPrice_Low
crosshairLabelPrice_Low – defaults to Low
@property (nonatomic, strong) NSString *crosshairLabelPrice_LowDeclared In
CWKConfiguration.h
crosshairLabelPrice_Close
crosshairLabelPrice_Close – defaults to Close
@property (nonatomic, strong) NSString *crosshairLabelPrice_CloseDeclared In
CWKConfiguration.h
crosshairLabelAverageTrueRange
crosshairLabelAverageTrueRange – defaults to ATR
@property (nonatomic, strong) NSString *crosshairLabelAverageTrueRangeDeclared In
CWKConfiguration.h
crosshairLabelADL
crosshairLabelADL – defaults to AccDist
@property (nonatomic, strong) NSString *crosshairLabelADLDeclared In
CWKConfiguration.h
crosshairLabelAwesomeOscillator
crosshairLabelAwesomeOscillator – defaults to AO
@property (nonatomic, strong) NSString *crosshairLabelAwesomeOscillatorDeclared In
CWKConfiguration.h
crosshairLabelChaikinsVolatility
crosshairLabelChaikinsVolatility – defaults to CV
@property (nonatomic, strong) NSString *crosshairLabelChaikinsVolatilityDeclared In
CWKConfiguration.h
crosshairLabelDMI_DMI
crosshairLabelDMI_DMI – defaults to DMI
@property (nonatomic, strong) NSString *crosshairLabelDMI_DMIDeclared In
CWKConfiguration.h
crosshairLabelDMI_MinusDI
crosshairLabelDMI_MinusDI – defaults to -DI
@property (nonatomic, strong) NSString *crosshairLabelDMI_MinusDIDeclared In
CWKConfiguration.h
crosshairLabelDMI_PlusDI
crosshairLabelDMI_PlusDI – defaults to -DI
@property (nonatomic, strong) NSString *crosshairLabelDMI_PlusDIDeclared In
CWKConfiguration.h
crosshairLabelDMI_ADX
crosshairLabelDMI_ADX – defaults to ADX
@property (nonatomic, strong) NSString *crosshairLabelDMI_ADXDeclared In
CWKConfiguration.h
crosshairLabelDMIADX
crosshairLabelDMIADX – defaults to ADX
@property (nonatomic, strong) NSString *crosshairLabelDMIADXDeclared In
CWKConfiguration.h
crosshairLabelDMIADXR_ADXR
crosshairLabelDMIADXR_ADXR – defaults to ADXR
@property (nonatomic, strong) NSString *crosshairLabelDMIADXR_ADXRDeclared In
CWKConfiguration.h
crosshairLabelDMIADXR_ADX
crosshairLabelDMIADXR_ADX – defaults to ADX
@property (nonatomic, strong) NSString *crosshairLabelDMIADXR_ADXDeclared In
CWKConfiguration.h
crosshairLabelDividendYield
crosshairLabelDividendYield – defaults to Yield
@property (nonatomic, strong) NSString *crosshairLabelDividendYieldDeclared In
CWKConfiguration.h
crosshairLabelMassIndex
crosshairLabelMassIndex – defaults to Mass Index
@property (nonatomic, strong) NSString *crosshairLabelMassIndexDeclared In
CWKConfiguration.h
crosshairLabelMomentum
crosshairLabelMomentum – defaults to Momentum
@property (nonatomic, strong) NSString *crosshairLabelMomentumDeclared In
CWKConfiguration.h
crosshairLabelMoneyFlow
crosshairLabelMoneyFlow – defaults to MF
@property (nonatomic, strong) NSString *crosshairLabelMoneyFlowDeclared In
CWKConfiguration.h
crosshairLabelMoneyFlowIndex
crosshairLabelMoneyFlowIndex – defaults to MFI
@property (nonatomic, strong) NSString *crosshairLabelMoneyFlowIndexDeclared In
CWKConfiguration.h
crosshairLabelMACD_MACD
crosshairLabelMACD_MACD – defaults to MACD
@property (nonatomic, strong) NSString *crosshairLabelMACD_MACDDeclared In
CWKConfiguration.h
crosshairLabelMACD_EMA
crosshairLabelMACD_EMA – defaults to Signal Line
@property (nonatomic, strong) NSString *crosshairLabelMACD_EMADeclared In
CWKConfiguration.h
crosshairLabelMACD_Divergence
crosshairLabelMACD_Divergence – defaults to Divergence
@property (nonatomic, strong) NSString *crosshairLabelMACD_DivergenceDeclared In
CWKConfiguration.h
crosshairLabelOnBalanceVolume
crosshairLabelOnBalanceVolume – defaults to OBV
@property (nonatomic, strong) NSString *crosshairLabelOnBalanceVolumeDeclared In
CWKConfiguration.h
crosshairLabelPERange_Upper
crosshairLabelPERange_Upper – defaults to High
@property (nonatomic, strong) NSString *crosshairLabelPERange_UpperDeclared In
CWKConfiguration.h
crosshairLabelPERange_Lower
crosshairLabelPERange_Lower – defaults to Low
@property (nonatomic, strong) NSString *crosshairLabelPERange_LowerDeclared In
CWKConfiguration.h
crosshairLabelPERatio
crosshairLabelPERatio – defaults to PE Ratio
@property (nonatomic, strong) NSString *crosshairLabelPERatioDeclared In
CWKConfiguration.h
crosshairLabelPROC
crosshairLabelPROC – defaults to PROC
@property (nonatomic, strong) NSString *crosshairLabelPROCDeclared In
CWKConfiguration.h
crosshairLabelRevenue
crosshairLabelRevenue – defaults to Revenue
@property (nonatomic, strong) NSString *crosshairLabelRevenueDeclared In
CWKConfiguration.h
crosshairLabelRollingDividend
crosshairLabelRollingDividend – defaults to Dividend
@property (nonatomic, strong) NSString *crosshairLabelRollingDividendDeclared In
CWKConfiguration.h
crosshairLabelRollingEPS
crosshairLabelRollingEPS – defaults to EPS
@property (nonatomic, strong) NSString *crosshairLabelRollingEPSDeclared In
CWKConfiguration.h
crosshairLabelRSI
crosshairLabelRSI – defaults to RSI
@property (nonatomic, strong) NSString *crosshairLabelRSIDeclared In
CWKConfiguration.h
crosshairLabelStochastics_PercentK
crosshairLabelStochastics_PercentK – defaults to %K
@property (nonatomic, strong) NSString *crosshairLabelStochastics_PercentKDeclared In
CWKConfiguration.h
crosshairLabelStochastics_PercentD
crosshairLabelStochastics_PercentD – defaults to %D
@property (nonatomic, strong) NSString *crosshairLabelStochastics_PercentDDeclared In
CWKConfiguration.h
crosshairLabelUltimateOscillator
crosshairLabelUltimateOscillator – defaults to UO
@property (nonatomic, strong) NSString *crosshairLabelUltimateOscillatorDeclared In
CWKConfiguration.h
crosshairLabelUpDown
crosshairLabelUpDown – defaults to Up Down
@property (nonatomic, strong) NSString *crosshairLabelUpDownDeclared In
CWKConfiguration.h
crosshairLabelVolume
crosshairLabelVolume – defaults to Volume
@property (nonatomic, strong) NSString *crosshairLabelVolumeDeclared In
CWKConfiguration.h
crosshairLabelVolumeRateOfChange
crosshairLabelVolumeRateOfChange – defaults to VROC
@property (nonatomic, strong) NSString *crosshairLabelVolumeRateOfChangeDeclared In
CWKConfiguration.h
crosshairLabelWilliamsPercentR
crosshairLabelWilliamsPercentR – defaults to %R
@property (nonatomic, strong) NSString *crosshairLabelWilliamsPercentRDeclared In
CWKConfiguration.h