
The below image demonstrates using the Financial Overlays with the igFinancialChart. There are two types of overlays the BollingerBands and PriceChannel.
The following demonstrates how to set the OverlayTypes through code:
In JavaScript
$("#financialChart").igFinancialChart({
dataSource: data,
overlayTypes: "BollingerBands",
overlayBrushes: ["Red"],
overlayOutLines: ["Green"],
overlayThickness: 2
});
$("#financialChart").igFinancialChart("option", "overlayTypes", "BollingerBands");
$("#financialChart").igFinancialChart("option", "overlayBrushes", ["Red"]);
$("#financialChart").igFinancialChart("option", "overlayOutLines", ["Green"]);
$("#financialChart").igFinancialChart("option", "overlayThickness", 2);
View on GitHub