You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Creates an OHLC (open-high-low-close) chart. OHLC charts are typically used to illustrate movements in the price of a financial instrument over time.
2526
-
///
2527
-
/// ``open`` : Sets the open values.
2528
-
///
2529
-
/// high : Sets the high values.
2530
-
///
2531
-
/// low : Sets the low values.
2532
-
///
2533
-
/// close : Sets the close values.
2534
-
///
2535
-
/// x : Sets the x coordinates. If absent, linear coordinate will be generated.
2536
-
///
2537
-
/// ?Increasing : Sets the Line style of the Increasing part of the chart
2538
-
///
2539
-
/// ?Decreasing : Sets the Line style of the Decreasing part of the chart
2540
-
///
2541
-
/// ?Line : Sets the Line style of both the Decreasing and Increasing part of the chart
2542
-
///
2543
-
/// ?Tickwidth : Sets the width of the open/close tick marks relative to the "x" minimal interval.
2544
-
///
2545
-
/// ?XCalendar : Sets the calendar system to use with `x` date data.
2546
2526
[<Extension>]
2547
2527
static memberOHLC
2548
2528
(
@@ -2590,18 +2570,6 @@ module Chart2D =
2590
2570
|> GenericChart.ofTraceObject useDefaults
2591
2571
2592
2572
/// Creates an OHLC (open-high-low-close) chart. OHLC charts are typically used to illustrate movements in the price of a financial instrument over time.
2593
-
///
2594
-
/// stockTimeSeries : tuple list of time * stock (OHLC) data
2595
-
///
2596
-
/// ?Increasing : Sets the Line style of the Increasing part of the chart
2597
-
///
2598
-
/// ?Decreasing : Sets the Line style of the Decreasing part of the chart
2599
-
///
2600
-
/// ?Line : Sets the Line style of both the Decreasing and Increasing part of the chart
2601
-
///
2602
-
/// ?Tickwidth : Sets the width of the open/close tick marks relative to the "x" minimal interval.
2603
-
///
2604
-
/// ?XCalendar : Sets the calendar system to use with `x` date data.
2605
2573
[<Extension>]
2606
2574
static memberOHLC
2607
2575
(
@@ -2647,102 +2615,91 @@ module Chart2D =
2647
2615
/// Creates a candlestick chart. A candlestick cart is a style of financial chart used to describe price movements of a
2648
2616
/// security, derivative, or currency. Each "candlestick" typically shows one day, thus a one-month chart may show the 20
2649
2617
/// trading days as 20 candlesticks. Candlestick charts can also be built using intervals shorter or longer than one day.
2650
-
///
2651
-
/// ``open`` : Sets the open values.
2652
-
///
2653
-
/// high : Sets the high values.
2654
-
///
2655
-
/// low : Sets the low values.
2656
-
///
2657
-
/// close : Sets the close values.
2658
-
///
2659
-
/// x : Sets the x coordinates. If absent, linear coordinate will be generated.
2660
-
///
2661
-
/// ?Increasing : Sets the Line style of the Increasing part of the chart
2662
-
///
2663
-
/// ?Decreasing : Sets the Line style of the Decreasing part of the chart
2664
-
///
2665
-
/// ?Line : Sets the Line style of both the Decreasing and Increasing part of the chart
2666
-
///
2667
-
/// ?WhiskerWidth : Sets the width of the whiskers relative to the box' width. For example, with 1, the whiskers are as wide as the box(es).
2668
-
///
2669
-
/// ?XCalendar : Sets the calendar system to use with `x` date data.
/// Creates an OHLC (open-high-low-close) chart. OHLC charts are typically used to illustrate movements in the price of a financial instrument over time.
2705
-
///
2706
-
/// stockTimeSeries : tuple list of time * stock (OHLC) data
2707
-
///
2708
-
/// ?Increasing : Sets the Line style of the Increasing part of the chart
2709
-
///
2710
-
/// ?Decreasing : Sets the Line style of the Decreasing part of the chart
2711
-
///
2712
-
/// ?Line : Sets the Line style of both the Decreasing and Increasing part of the chart
2713
-
///
2714
-
/// ?Tickwidth : Sets the width of the open/close tick marks relative to the "x" minimal interval.
2715
-
///
2716
-
/// ?XCalendar : Sets the calendar system to use with `x` date data.
0 commit comments