Copyright | (c) Tim Docker 2006 2014 |
---|---|
License | BSD-style (see chart/COPYRIGHT) |
Safe Haskell | None |
Language | Haskell98 |
Candlestick charts for financial plotting
- data PlotCandle x y = PlotCandle {}
- data Candle x y = Candle {
- candle_x :: x
- candle_low :: y
- candle_open :: y
- candle_mid :: y
- candle_close :: y
- candle_high :: y
- plot_candle_title :: forall x y. Lens' (PlotCandle x y) String
- plot_candle_line_style :: forall x y. Lens' (PlotCandle x y) LineStyle
- plot_candle_tick_length :: forall x y. Lens' (PlotCandle x y) Double
- plot_candle_width :: forall x y. Lens' (PlotCandle x y) Double
- plot_candle_centre :: forall x y. Lens' (PlotCandle x y) Double
- plot_candle_fill :: forall x y. Lens' (PlotCandle x y) Bool
- plot_candle_rise_fill_style :: forall x y. Lens' (PlotCandle x y) FillStyle
- plot_candle_fall_fill_style :: forall x y. Lens' (PlotCandle x y) FillStyle
- plot_candle_values :: forall x y x y. Lens (PlotCandle x y) (PlotCandle x y) [Candle x y] [Candle x y]
Documentation
data PlotCandle x y Source #
Value defining a financial interval: opening and closing prices, with maxima and minima; and a style in which to render them. By convention, there are different fill styles depending on whether the price rises (open < close) or falls (close < open). (This plot type can also be re-purposed for statistical intervals, e.g. minimum, first quartile, median, third quartile, maximum.)
ToPlot PlotCandle Source # | |
Default (PlotCandle x y) Source # | |
A Value holding price intervals for a given x-coord. An alternative view is that these are statistical intervals: the 0th, 25th, 50th, 75th, and 100th percentiles.
Candle | |
|
plot_candle_title :: forall x y. Lens' (PlotCandle x y) String Source #
plot_candle_line_style :: forall x y. Lens' (PlotCandle x y) LineStyle Source #
plot_candle_tick_length :: forall x y. Lens' (PlotCandle x y) Double Source #
plot_candle_width :: forall x y. Lens' (PlotCandle x y) Double Source #
plot_candle_centre :: forall x y. Lens' (PlotCandle x y) Double Source #
plot_candle_fill :: forall x y. Lens' (PlotCandle x y) Bool Source #
plot_candle_rise_fill_style :: forall x y. Lens' (PlotCandle x y) FillStyle Source #
plot_candle_fall_fill_style :: forall x y. Lens' (PlotCandle x y) FillStyle Source #
plot_candle_values :: forall x y x y. Lens (PlotCandle x y) (PlotCandle x y) [Candle x y] [Candle x y] Source #