Files
ai/charting_library/customization.txt
Eugene bb62fbc1d4 Disable study_templates by default #682
click "Symbol Info..." cause exception and can not close #680
Add Momentum to Library #677
onTick doesn't work #670
Overnight daily bars are displayed incorrectly on timescale #661
Bar marks are shifted #654
More data is requested when changing a timezone #652
Bar marks are moved to the last bar when switching time zone #651
Missing data #646
Double click on bar marks shows empty dialog (unstable only) #644
Option to disable savings of drawings created with API #643
Option to disable selection of drawings created with API #642
Add API for text drawings #640
Create a featureset to save favorite chart styles and study templates (+ watch in terminal) to local storage #626
Featureset show_dialog_on_snapshot_ready doesn't work #625
Implement the API call to inject custom CSS #619
Add executeActionById method #618
Two-columned layout is not working #599
Request for study templates persists even of they are switched off #598
Widget Event method callbacks for onIntervalChange, onAutoSaveNeeded, saveChart are not executed sometimes and intermittent in IE. #597
Option to remove market status indicator #589
Chart doesn't load on firefox #587
Cannot Retrieve Current Symbol from widget #585
drowing problem with lines end on mousemove, reproduced on official site #577
HotKeys support and customization of hotkeys #568
Return "Remove All Drawing Tools" #556
Empty bar for drawing instruments #551
Screen shot API function #548
Crosshair remain white points between sections #533
Create a line like (Support and Resistance) and this line wont be included in the Save State Chart #527
Chart doesn't unsubscribe from datafeed on destroy #512
Tickmarks in future are cleared after scrolling for more data #489
Сlick outside the chart widget does not close popups #465
Webkit bug use isFavorite of chart type #460
Auto Focus when mouse cursor is inside the chart. #452
Allow drawing rectangles and other 2 points shapes #448
Create horizontal break line with onContextMenu() #435
Implement an ability to set zOrder for created shapes #413
Resize Chart when its container is resized #372
Support for showing split, dividends, and earnings... #286
Disable tools #151
Significant memory leak on iframe reload #120
2015-09-28 11:18:53 +03:00

116 lines
4.4 KiB
Plaintext

//
// This file contains some chart properties description. These properties are treated
// as customizable ones. Other properties customization is not supported. See the documentation for details.
//
// This file format:
//
// <property_path>: <default Charting Library value>
//
// supported values: large, medium, small, tiny
volumePaneSize: "large"
// fonts available in text editors (i.e., in `Text` drawing tool properties dialog)
editorFontsList: ['Verdana', 'Courier New', 'Times New Roman', 'Arial']
paneProperties.background: "#ffffff"
paneProperties.vertGridProperties.color: "#E6E6E6"
paneProperties.horzGridProperties.color: "#E6E6E6"
// Margins (percent). Used for auto scaling.
paneProperties.topMargin: 5
paneProperties.bottomMargin: 5
scalesProperties.showLeftScale : false
scalesProperties.showRightScale : true
scalesProperties.backgroundColor : "#ffffff"
scalesProperties.lineColor : "#555"
scalesProperties.textColor : "#555"
scalesProperties.scaleSeriesOnly : false
// Series style. See the supported values below
// bars = 0
// candles = 1
// line = 2
// area = 3
// heiken ashi = 8
// candles = 9
mainSeriesProperties.style: 1
mainSeriesProperties.showCountdown: true
mainSeriesProperties.showLastValue:true
mainSeriesProperties.visible:true
mainSeriesProperties.showPriceLine: true
mainSeriesProperties.priceLineWidth: 1
mainSeriesProperties.lockScale: false
mainSeriesProperties.minTick: "default"
mainSeriesProperties.extendedHours: false
mainSeriesProperties.priceAxisProperties.autoScale:true
mainSeriesProperties.priceAxisProperties.autoScaleDisabled:false
mainSeriesProperties.priceAxisProperties.percentage:false
mainSeriesProperties.priceAxisProperties.percentageDisabled:false
mainSeriesProperties.priceAxisProperties.log:false
mainSeriesProperties.priceAxisProperties.logDisabled:false
symbolWatermarkProperties.color : "#555"
// Percent
symbolWatermarkProperties.transparency: 85
// Different chart types defaults
// Candles styles
mainSeriesProperties.candleStyle.upColor: "#6ba583"
mainSeriesProperties.candleStyle.downColor: "#d75442"
mainSeriesProperties.candleStyle.drawWick: true
mainSeriesProperties.candleStyle.drawBorder: true
mainSeriesProperties.candleStyle.borderColor: "#378658"
mainSeriesProperties.candleStyle.borderUpColor: "#225437"
mainSeriesProperties.candleStyle.borderDownColor: "#5b1a13"
mainSeriesProperties.candleStyle.wickColor: "#737375"
mainSeriesProperties.candleStyle.barColorsOnPrevClose: false
// Hollow Candles styles
mainSeriesProperties.hollowCandleStyle.upColor: "#6ba583"
mainSeriesProperties.hollowCandleStyle.downColor: "#d75442"
mainSeriesProperties.hollowCandleStyle.drawWick: true
mainSeriesProperties.hollowCandleStyle.drawBorder: true
mainSeriesProperties.hollowCandleStyle.borderColor: "#378658"
mainSeriesProperties.hollowCandleStyle.borderUpColor: "#225437"
mainSeriesProperties.hollowCandleStyle.borderDownColor: "#5b1a13"
mainSeriesProperties.hollowCandleStyle.wickColor: "#737375"
// Heiken Ashi styles
mainSeriesProperties.haStyle.upColor: "#6ba583"
mainSeriesProperties.haStyle.downColor: "#d75442"
mainSeriesProperties.haStyle.drawWick: true
mainSeriesProperties.haStyle.drawBorder: true
mainSeriesProperties.haStyle.borderColor: "#378658"
mainSeriesProperties.haStyle.borderUpColor: "#225437"
mainSeriesProperties.haStyle.borderDownColor: "#5b1a13"
mainSeriesProperties.haStyle.wickColor: "#737375"
mainSeriesProperties.haStyle.barColorsOnPrevClose: false
// Bars styles
mainSeriesProperties.barStyle.upColor: "#6ba583"
mainSeriesProperties.barStyle.downColor: "#d75442"
mainSeriesProperties.barStyle.barColorsOnPrevClose: false
mainSeriesProperties.barStyle.dontDrawOpen: false
// Line styles
mainSeriesProperties.lineStyle.color: "#0303F7"
mainSeriesProperties.lineStyle.linestyle: CanvasEx.LINESTYLE_SOLID
mainSeriesProperties.lineStyle.linewidth: 1
mainSeriesProperties.lineStyle.priceSource: "close"
// Area styles
mainSeriesProperties.areaStyle.color1: "#606090"
mainSeriesProperties.areaStyle.color2: "#01F6F5"
mainSeriesProperties.areaStyle.linecolor: "#0094FF"
mainSeriesProperties.areaStyle.linestyle: CanvasEx.LINESTYLE_SOLID
mainSeriesProperties.areaStyle.linewidth: 1
mainSeriesProperties.areaStyle.priceSource: "close"
mainSeriesProperties.areaStyle.transparency: 50