Simulating refreshing receiving a 'real-time' (constantly updating) data feed. Adheare's to D3's general update pattern. When the end of the data feed is reached, intra-day data updates will be simulated
Aroon calculation and rendering demo.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Demonstrating configuring a techanjs plot to accept and plot custom data types. | |
*/ | |
// Either, update the default plot accessor | |
// All plots have default accessors. Here we are updating the default and redefining how | |
// to get close from the data | |
candlestick.accessor().close(function(d) { | |
return d.currentBid; // Where d is an item in your supplied array | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head lang="en"> | |
<meta charset="UTF-8"> | |
<title></title> | |
</head> | |
<body> | |
<form action="http://remote.com/index.html" | |
method="post" | |
enctype="multipart/form-data" |
Ichimoku Cloud calculation and rendering demo.
Average True Range (ATR) calculation and rendering demo.
ATR Trailing Stop calculation and rendering demo.
Demonstrating brushing of a plot with a large dataset, testing performance on difference browsers and devices. Y scale will be adjusted as the chart is brushed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
node_modules |
Demonstrates arrow rendering and how to achieve different orientations.