ChartDisplaySettings¶
Summary¶
Represents the chart display settings.
Signature¶
1 |
|
Namespace¶
cAlgo.API
Properties¶
Name | Description |
---|---|
Positions { get; set; } | Defines if the Positions are displayed on the chart. |
Orders { get; set; } | Defines if the Orders are displayed on the chart. |
BidPriceLine { get; set; } | Defines if the Bid Price Line is displayed on the chart. |
AskPriceLine { get; set; } | Defines if the Ask Price Line is displayed on the chart. |
Grid { get; set; } | Defines if the Grid is displayed on the chart background. |
PeriodSeparators { get; set; } | Defines if the Period Separators are displayed on the chart. |
TickVolume { get; set; } | Defines if the Tick Volume is displayed on the chart. |
DealMap { get; set; } | Defines if the Deal Map is displayed on the chart. |
ChartScale { get; set; } | Defines if the Chart Scale is displayed on the chart. |
PriceAxisOverlayButtons { get; set; } | Defines if the price axis overlays buttons are visible on the chart. |
PriceAlerts { get; set; } | Defines if the Price Alerts are visible on the chart. |
MarketSentiment { get; set; } | Defines if the Market Sentiment is visible on the chart. |
Targets { get; set; } | Defines if the Target is visible on the chart. |
QuickTradeButtons { get; set; } | Defines if the QuickTrade buttons are visible on the chart. |
Examples¶
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
|
Last update: February 3, 2023