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
Copy file name to clipboardExpand all lines: RELEASE_NOTES.md
+1
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,7 @@
8
8
* Chart.SingleStack: Basically Chart.Grid with one Column
9
9
* Add Chart.withColorBar and Chart.withColorBarStyle to change the appearance of colorbars
10
10
*[Add Sunburst Chart]()
11
+
*[Add OHLC Chart]()
11
12
12
13
### 1.2.2 - Apr 9 2020
13
14
*[Opening Charts is now more or less OS agnostic](https://github.com/muehlhaus/FSharp.Plotly/commit/f6e3dceade085e43e7e56b478b9cf7b533a4fe55)
/// 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.
1397
+
///
1398
+
/// ``open`` : Sets the open values.
1399
+
///
1400
+
/// high : Sets the high values.
1401
+
///
1402
+
/// low : Sets the low values.
1403
+
///
1404
+
/// close : Sets the close values.
1405
+
///
1406
+
/// x : Sets the x coordinates. If absent, linear coordinate will be generated.
1407
+
///
1408
+
/// ?Increasing : Sets the Line style of the Increasing part of the chart
1409
+
///
1410
+
/// ?Decreasing : Sets the Line style of the Decreasing part of the chart
1411
+
///
1412
+
/// ?Line : Sets the Line style of both the Decreasing and Increasing part of the chart
1413
+
///
1414
+
/// ?Tickwidth : Sets the width of the open/close tick marks relative to the "x" minimal interval.
1415
+
///
1416
+
/// ?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.
1447
+
///
1448
+
/// stockTimeSeries : tuple list of time * stock (OHLC) data
1449
+
///
1450
+
/// ?Increasing : Sets the Line style of the Increasing part of the chart
1451
+
///
1452
+
/// ?Decreasing : Sets the Line style of the Decreasing part of the chart
1453
+
///
1454
+
/// ?Line : Sets the Line style of both the Decreasing and Increasing part of the chart
1455
+
///
1456
+
/// ?Tickwidth : Sets the width of the open/close tick marks relative to the "x" minimal interval.
1457
+
///
1458
+
/// ?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.
1537
+
///
1538
+
/// stockTimeSeries : tuple list of time * stock (OHLC) data
1539
+
///
1540
+
/// ?Increasing : Sets the Line style of the Increasing part of the chart
1541
+
///
1542
+
/// ?Decreasing : Sets the Line style of the Decreasing part of the chart
1543
+
///
1544
+
/// ?Line : Sets the Line style of both the Decreasing and Increasing part of the chart
1545
+
///
1546
+
/// ?Tickwidth : Sets the width of the open/close tick marks relative to the "x" minimal interval.
1547
+
///
1548
+
/// ?XCalendar : Sets the calendar system to use with `x` date data.
0 commit comments