The data used to plot the chart bellow shows some simulated trades made by an algorithmic strategy in a brazilian stock asset. The data includes the intraday market price of this asset, the purchases and sales made throughout the day, and if each trade made money or not. All these information is organized by hour.
I decided to plot the market price using a line chart since the dataset is a time series. Following the examples given by this article, I described how each information was encoded in the next session.
I would like to allow the reader explores each trade made by the strategy and, at the same time, get a sense of how well the stategy was that day, even though without plotting a P&L Line Chart.
This chart was made using D3.js library and I included several features to help the user visualize better all the informations. You can check the code source on my GitHub.
I made a natural decision to encode the data about the Price and Time, as far as it is a time-series. The trade was enconded as triangles to show if it was a Buy(up) or a Sell (down). As I would like to highlight the performance that day, I colored when each trade made money (green) or not (red).
Since there are many data encoded at this chart, I included gridlines to help the reader norrowing the focus to some areas, as sugested on this article. I also included a zoom behaviour to allow the reader explore better the data.
Variable | Type | Encoding |
Market Price | Quantitative | Y |
Date / Time | Ordered | X |
About each Trade: Price | Quantitative | Y |
About each Trade: Time | Ordered | X |
About each Trade: Buy or Sell | Categorical | Shape |
About each Trade: Made Money? | Categorical | Color Hue |