|
eSignal Formula Studies -- MACD Slow Study The JavaScript code for the MACD Slow study is provided as an example of what the code behind a study looks like. Because eSignal stores the formula studies in plain text JavaScript, you can also modify them or create a formula in any text editor. //////////////////////////////////////////// var study = new MACDStudy(12, 26, 9, "Close", false); function preMain() { function main() { //////////////////////////////////////////// |