Demonstrating zooming of a plot and axis. Zoom clamp is off, the chart can be freely moved.
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
// Let's create our own strategy | |
var strat = {}; | |
var parameters = { | |
short: 12, | |
long: 26, | |
signal: 9, | |
down: 0, | |
up: 0, | |
persistence: 1 |
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
// Let's create our own strategy | |
var strat = {}; | |
var parameters = { | |
short: 12, | |
long: 26, | |
signal: 9, | |
down: -0.0001, | |
up: 0.005, | |
persistence: 1 |