import { CIQ } from "https://jsfiddle.chartiq.com/chart/js/advanced.js";
import quoteFeedSimulator from "https://jsfiddle.chartiq.com/chart/examples/feeds/quoteFeedSimulator.js";
import "https://jsfiddle.chartiq.com/chart/js/componentUI.js";
import "https://jsfiddle.chartiq.com/chart/js/addOns.js";
// Activate the License Key
import getLicenseKey from "https://jsfiddle.chartiq.com/chart/key.js";
getLicenseKey(CIQ);
const stxx = new CIQ.ChartEngine({
container: document.querySelector(".chartContainer")
});
//optionally set a language
const language = "fr-FR";
CIQ.I18N.localize(stxx, language);
// required to let the slider know the language
stxx.preferences.language = language;
stxx.attachQuoteFeed(quoteFeedSimulator, {
refreshInterval: 1,
bufferSize: 200
});
new CIQ.RangeSlider({
stx: stxx,
height:'60px'
}); // instantiate the slider addon
stxx.loadChart("SPY", function() {
// for smoother visualization, enable AFTER THE MAIN CHART HAS COMPLETED LOADING ITS DATA.
stxx.layout.rangeSlider = true; // enable the feature
stxx.changeOccurred("layout"); // signal the change to force a redraw.
stxx.changeOccurred("preferences"); // signal the change to force a redraw.
});
Please Whitelist JSFiddle in your content blocker.
Help keep JSFiddle free for always by one of two ways:
Whitelist JSFiddle in your content blocker (two clicks)
Go PRO and get access to additional PRO features →
Join the 4+ million users, and keep the JSFiddle dream alive.
Ad-free
All ads in the editor and listing pages are turned completely off.
Fiddle Pages
Your fiddles accessible under a custom domain and a vanity path.
Use pre-released features
You get to try and use features (like the Palette Color Generator) months before everyone else.
Fiddle collections
Sort and categorize your Fiddles into multiple collections.
Private collections and fiddles
You can make as many Private Fiddles, and Private Collections as you wish!